1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
|
/*
* Copyright © 2010 Keith Packard <keithp@keithp.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
package altosui;
import java.awt.*;
import javax.swing.*;
import org.altusmetrum.altoslib_3.*;
public class AltosPad extends JComponent implements AltosFlightDisplay {
GridBagLayout layout;
public class LaunchStatus {
JLabel label;
JTextField value;
AltosLights lights;
void show(AltosState state, AltosListenerState listener_state) {}
void reset() {
value.setText("");
lights.set(false);
}
public void show() {
label.setVisible(true);
value.setVisible(true);
lights.setVisible(true);
}
void show(String s) {
show();
value.setText(s);
}
void show(String format, double value) {
show(String.format(format, value));
}
void show(String format, int value) {
show(String.format(format, value));
}
public void hide() {
label.setVisible(false);
value.setVisible(false);
lights.setVisible(false);
}
public void set_font() {
label.setFont(Altos.label_font);
value.setFont(Altos.value_font);
}
public void set_label(String text) {
label.setText(text);
}
public LaunchStatus (GridBagLayout layout, int y, String text) {
GridBagConstraints c = new GridBagConstraints();
c.weighty = 1;
lights = new AltosLights();
c.gridx = 0; c.gridy = y;
c.anchor = GridBagConstraints.CENTER;
c.fill = GridBagConstraints.VERTICAL;
c.weightx = 0;
layout.setConstraints(lights, c);
add(lights);
label = new JLabel(text);
label.setFont(Altos.label_font);
label.setHorizontalAlignment(SwingConstants.LEFT);
c.gridx = 1; c.gridy = y;
c.insets = new Insets(Altos.tab_elt_pad, Altos.tab_elt_pad, Altos.tab_elt_pad, Altos.tab_elt_pad);
c.anchor = GridBagConstraints.WEST;
c.fill = GridBagConstraints.VERTICAL;
c.weightx = 0;
layout.setConstraints(label, c);
add(label);
value = new JTextField(Altos.text_width);
value.setFont(Altos.value_font);
value.setHorizontalAlignment(SwingConstants.RIGHT);
c.gridx = 2; c.gridy = y;
c.anchor = GridBagConstraints.WEST;
c.fill = GridBagConstraints.BOTH;
c.weightx = 1;
layout.setConstraints(value, c);
add(value);
}
}
public class LaunchValue {
JLabel label;
JTextField value;
void show(AltosState state, AltosListenerState listener_state) {}
void show() {
label.setVisible(true);
value.setVisible(true);
}
void hide() {
label.setVisible(false);
value.setVisible(false);
}
public void set_font() {
label.setFont(Altos.label_font);
value.setFont(Altos.value_font);
}
void show(String s) {
show();
value.setText(s);
}
void show(AltosUnits units, double v) {
show(units.show(8, v));
}
void show(String format, double v) {
show(String.format(format, v));
}
public void set_label(String text) {
label.setText(text);
}
void reset() {
value.setText("");
}
public LaunchValue (GridBagLayout layout, int y, String text) {
GridBagConstraints c = new GridBagConstraints();
c.insets = new Insets(Altos.tab_elt_pad, Altos.tab_elt_pad, Altos.tab_elt_pad, Altos.tab_elt_pad);
c.weighty = 1;
label = new JLabel(text);
label.setFont(Altos.label_font);
label.setHorizontalAlignment(SwingConstants.LEFT);
c.gridx = 1; c.gridy = y;
c.anchor = GridBagConstraints.WEST;
c.fill = GridBagConstraints.VERTICAL;
c.weightx = 0;
layout.setConstraints(label, c);
add(label);
value = new JTextField(Altos.text_width);
value.setFont(Altos.value_font);
value.setHorizontalAlignment(SwingConstants.RIGHT);
c.gridx = 2; c.gridy = y;
c.anchor = GridBagConstraints.EAST;
c.fill = GridBagConstraints.BOTH;
c.weightx = 1;
layout.setConstraints(value, c);
add(value);
}
}
class Battery extends LaunchStatus {
void show (AltosState state, AltosListenerState listener_state) {
if (state == null || state.battery_voltage == AltosLib.MISSING)
hide();
else {
show("%4.2f V", state.battery_voltage);
lights.set(state.battery_voltage >= AltosLib.ao_battery_good);
}
}
public Battery (GridBagLayout layout, int y) {
super(layout, y, "Battery Voltage");
}
}
Battery battery;
class Apogee extends LaunchStatus {
void show (AltosState state, AltosListenerState listener_state) {
if (state == null || state.apogee_voltage == AltosLib.MISSING)
hide();
else {
show("%4.2f V", state.apogee_voltage);
lights.set(state.apogee_voltage >= AltosLib.ao_igniter_good);
}
}
public Apogee (GridBagLayout layout, int y) {
super(layout, y, "Apogee Igniter Voltage");
}
}
Apogee apogee;
class Main extends LaunchStatus {
void show (AltosState state, AltosListenerState listener_state) {
if (state == null || state.main_voltage == AltosLib.MISSING)
hide();
else {
show("%4.2f V", state.main_voltage);
lights.set(state.main_voltage >= AltosLib.ao_igniter_good);
}
}
public Main (GridBagLayout layout, int y) {
super(layout, y, "Main Igniter Voltage");
}
}
Main main;
class LoggingReady extends LaunchStatus {
void show (AltosState state, AltosListenerState listener_state) {
if (state == null || state.flight == AltosLib.MISSING) {
hide();
} else {
if (state.flight != 0) {
if (state.state <= Altos.ao_flight_pad)
show("Ready to record");
else if (state.state < Altos.ao_flight_landed)
show("Recording data");
else
show("Recorded data");
} else
show("Storage full");
lights.set(state.flight != 0);
}
}
public LoggingReady (GridBagLayout layout, int y) {
super(layout, y, "On-board Data Logging");
}
}
LoggingReady logging_ready;
class GPSLocked extends LaunchStatus {
void show (AltosState state, AltosListenerState listener_state) {
if (state == null || state.gps == null)
hide();
else {
show("%4d sats", state.gps.nsat);
lights.set(state.gps.locked && state.gps.nsat >= 4);
}
}
public GPSLocked (GridBagLayout layout, int y) {
super (layout, y, "GPS Locked");
}
}
GPSLocked gps_locked;
class GPSReady extends LaunchStatus {
void show (AltosState state, AltosListenerState listener_state) {
if (state == null || state.gps == null)
hide();
else {
if (state.gps_ready)
show("Ready");
else
show("Waiting %d", state.gps_waiting);
lights.set(state.gps_ready);
}
}
public GPSReady (GridBagLayout layout, int y) {
super (layout, y, "GPS Ready");
}
}
GPSReady gps_ready;
class ReceiverBattery extends LaunchStatus {
void show (AltosState state, AltosListenerState listener_state) {
if (listener_state == null || listener_state.battery == AltosLib.MISSING)
hide();
else {
show("%4.2f V", listener_state.battery);
lights.set(listener_state.battery > AltosLib.ao_battery_good);
}
}
public ReceiverBattery (GridBagLayout layout, int y) {
super(layout, y, "Receiver Battery");
}
}
ReceiverBattery receiver_battery;
String pos(double p, String pos, String neg) {
String h = pos;
if (p < 0) {
h = neg;
p = -p;
}
int deg = (int) Math.floor(p);
double min = (p - Math.floor(p)) * 60.0;
return String.format("%s %4d° %9.6f", h, deg, min);
}
class PadLat extends LaunchValue {
void show (AltosState state, AltosListenerState listener_state) {
double lat = AltosLib.MISSING;
String label = null;
if (state != null) {
if (state.state < AltosLib.ao_flight_pad && state.gps != null && state.gps.lat != AltosLib.MISSING) {
lat = state.gps.lat;
label = "Latitude";
} else {
lat = state.pad_lat;
label = "Pad Latitude";
}
}
if (lat != AltosLib.MISSING) {
show(pos(lat,"N", "S"));
set_label(label);
} else
hide();
}
public PadLat (GridBagLayout layout, int y) {
super (layout, y, "Pad Latitude");
}
}
PadLat pad_lat;
class PadLon extends LaunchValue {
void show (AltosState state, AltosListenerState listener_state) {
double lon = AltosLib.MISSING;
String label = null;
if (state != null) {
if (state.state < AltosLib.ao_flight_pad && state.gps != null && state.gps.lon != AltosLib.MISSING) {
lon = state.gps.lon;
label = "Longitude";
} else {
lon = state.pad_lon;
label = "Pad Longitude";
}
}
if (lon != AltosLib.MISSING) {
show(pos(lon,"E", "W"));
set_label(label);
} else
hide();
}
public PadLon (GridBagLayout layout, int y) {
super (layout, y, "Pad Longitude");
}
}
PadLon pad_lon;
class PadAlt extends LaunchValue {
void show (AltosState state, AltosListenerState listener_state) {
double alt = AltosLib.MISSING;
String label = null;
if (state != null) {
if (state.state < AltosLib.ao_flight_pad && state.gps != null && state.gps.alt != AltosLib.MISSING) {
alt = state.gps.alt;
label = "Altitude";
} else {
alt = state.pad_alt;
label = "Pad Altitude";
}
}
if (alt != AltosLib.MISSING) {
show("%4.0f m", state.gps.alt);
set_label(label);
} else
hide();
}
public PadAlt (GridBagLayout layout, int y) {
super (layout, y, "Pad Altitude");
}
}
PadAlt pad_alt;
public void reset() {
battery.reset();
apogee.reset();
main.reset();
logging_ready.reset();
gps_locked.reset();
gps_ready.reset();
receiver_battery.reset();
pad_lat.reset();
pad_lon.reset();
pad_alt.reset();
}
public void set_font() {
battery.set_font();
apogee.set_font();
main.set_font();
logging_ready.set_font();
gps_locked.set_font();
gps_ready.set_font();
receiver_battery.set_font();
pad_lat.set_font();
pad_lon.set_font();
pad_alt.set_font();
}
public void show(AltosState state, AltosListenerState listener_state) {
battery.show(state, listener_state);
apogee.show(state, listener_state);
main.show(state, listener_state);
logging_ready.show(state, listener_state);
pad_alt.show(state, listener_state);
receiver_battery.show(state, listener_state);
gps_locked.show(state, listener_state);
gps_ready.show(state, listener_state);
pad_lat.show(state, listener_state);
pad_lon.show(state, listener_state);
}
public AltosPad() {
layout = new GridBagLayout();
setLayout(layout);
/* Elements in pad display:
*
* Battery voltage
* Igniter continuity
* GPS lock status
* GPS ready status
* GPS location
* Pad altitude
* RSSI
*/
battery = new Battery(layout, 0);
apogee = new Apogee(layout, 1);
main = new Main(layout, 2);
logging_ready = new LoggingReady(layout, 3);
gps_locked = new GPSLocked(layout, 4);
gps_ready = new GPSReady(layout, 5);
receiver_battery = new ReceiverBattery(layout, 6);
pad_lat = new PadLat(layout, 7);
pad_lon = new PadLon(layout, 8);
pad_alt = new PadAlt(layout, 9);
show(null, null);
}
}
|