Bump java library versions
[fw/altos] / altosuilib / AltosUIUnitsIndicator.java
1 /*
2  * Copyright © 2014 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 package org.altusmetrum.altosuilib_6;
19
20 import java.awt.*;
21 import javax.swing.*;
22 import org.altusmetrum.altoslib_6.*;
23
24 public abstract class AltosUIUnitsIndicator extends AltosUIIndicator {
25
26         AltosUnits      units;
27
28         abstract public double value(AltosState state, int i);
29         public double good() { return 0; }
30         public boolean good(double value) { return value != AltosLib.MISSING && value >= good(); }
31         public boolean hide(double value) { return false; }
32
33         public boolean hide(AltosState state, int i) {
34                 if (state == null)
35                         return hide(AltosLib.MISSING);
36                 return hide(value(state, i));
37         }
38
39         public double value (AltosState state, AltosListenerState listener_state, int i) {
40                 return value(state, i);
41         }
42
43         public double[] last_values;
44
45         public void show(double... v) {
46                 show();
47                 for (int i = 0; i < values.length; i++) {
48                         if (v[i] != last_values[i]) {
49                                 String  value_text;
50                                 boolean good = false;
51
52                                 if (v[i] == AltosLib.MISSING) {
53                                         value_text = "Missing";
54                                 } else {
55                                         value_text = units.show(8, v[i]);
56                                         if (i == 0)
57                                                 good = good(v[i]);
58                                 }
59                                 last_values[i] = v[i];
60                                 if (i == 0 && lights != null)
61                                         set_lights(good);
62                                 values[i].setText(value_text);
63                         }
64                 }
65         }
66
67         public void units_changed(boolean imperial_units) {
68                 show(last_values);
69         }
70
71         public void show (AltosState state, AltosListenerState listener_state) {
72                 double[] v = new double[values.length];
73                 boolean hide = false;
74
75                 for (int i = 0; i < values.length; i++) {
76                         if (state != null)
77                                 v[i] = value(state, listener_state, i);
78                         else
79                                 v[i] = AltosLib.MISSING;
80                         if (hide(state, i))
81                                 hide = true;
82                 }
83
84                 if (hide)
85                         hide();
86                 else
87                         show(v);
88         }
89
90         public void reset() {
91                 for (int i = 0; i < last_values.length; i++)
92                         last_values[i] = AltosLib.MISSING - 1;
93         }
94
95         public AltosUIUnitsIndicator (Container container, int x, int y, int label_width, AltosUnits units, String name, int number_values, boolean has_lights, int width) {
96                 super(container, x, y, label_width, name, number_values, has_lights, width);
97                 this.units = units;
98                 last_values = new double[values.length];
99                 for (int i = 0; i < last_values.length; i++)
100                         last_values[i] = AltosLib.MISSING - 1;
101         }
102
103         public AltosUIUnitsIndicator (Container container, int x, int y, AltosUnits units, String name, int number_values, boolean has_lights, int width) {
104                 this(container, x, y, 1, units, name, number_values, has_lights, width);
105         }
106
107         public AltosUIUnitsIndicator (Container container, int y, AltosUnits units, String name, int number_values, boolean has_lights, int width) {
108                 this(container, 0, y, units, name, number_values, has_lights, width);
109         }
110
111         public AltosUIUnitsIndicator (Container container, int y, AltosUnits units, String name, int width) {
112                 this(container, 0, y, units, name, 1, false, width);
113         }
114
115         public AltosUIUnitsIndicator (Container container, int y, AltosUnits units, String name) {
116                 this(container, 0, y, units, name, 1, false, 1); 
117         }
118
119         public AltosUIUnitsIndicator (Container container, int x,int y, AltosUnits units, String name) {
120                 this(container, x, y, units, name, 1, false, 1); 
121         }
122 }