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
459
460
461
462
463
464
465
466
|
/*
* 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 java.awt.event.*;
import javax.swing.*;
import javax.swing.filechooser.FileNameExtensionFilter;
import javax.swing.table.*;
import java.io.*;
import java.util.*;
import java.text.*;
import java.util.prefs.*;
import java.util.concurrent.LinkedBlockingQueue;
import org.altusmetrum.AltosLib.*;
public class AltosDescent extends JComponent implements AltosFlightDisplay {
GridBagLayout layout;
public abstract class DescentStatus {
JLabel label;
JTextField value;
AltosLights lights;
abstract void show(AltosState state, int crc_errors);
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 hide() {
label.setVisible(false);
value.setVisible(false);
lights.setVisible(false);
}
void reset() {
value.setText("");
lights.set(false);
}
void set_font() {
label.setFont(Altos.label_font);
value.setFont(Altos.value_font);
}
public DescentStatus (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.gridwidth = 3;
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 = 4; c.gridy = y;
c.gridwidth = 1;
c.anchor = GridBagConstraints.WEST;
c.fill = GridBagConstraints.BOTH;
c.weightx = 1;
layout.setConstraints(value, c);
add(value);
}
}
public abstract class DescentValue {
JLabel label;
JTextField value;
void reset() {
value.setText("");
}
abstract void show(AltosState state, int crc_errors);
void show() {
label.setVisible(true);
value.setVisible(true);
}
void hide() {
label.setVisible(false);
value.setVisible(false);
}
void show(String v) {
show();
value.setText(v);
}
void show(AltosUnits units, double v) {
show(units.show(8, v));
}
void show(String format, double v) {
show(String.format(format, v));
}
void set_font() {
label.setFont(Altos.label_font);
value.setFont(Altos.value_font);
}
public DescentValue (GridBagLayout layout, int x, int y, String text) {
GridBagConstraints c = new GridBagConstraints();
c.weighty = 1;
label = new JLabel(text);
label.setFont(Altos.label_font);
label.setHorizontalAlignment(SwingConstants.LEFT);
c.gridx = x + 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;
add(label, c);
value = new JTextField(Altos.text_width);
value.setFont(Altos.value_font);
value.setHorizontalAlignment(SwingConstants.RIGHT);
c.gridx = x + 2; c.gridy = y;
c.gridwidth = 1;
c.anchor = GridBagConstraints.WEST;
c.fill = GridBagConstraints.BOTH;
c.weightx = 1;
add(value, c);
}
}
public abstract class DescentDualValue {
JLabel label;
JTextField value1;
JTextField value2;
void reset() {
value1.setText("");
value2.setText("");
}
void show() {
label.setVisible(true);
value1.setVisible(true);
value2.setVisible(true);
}
void hide() {
label.setVisible(false);
value1.setVisible(false);
value2.setVisible(false);
}
void set_font() {
label.setFont(Altos.label_font);
value1.setFont(Altos.value_font);
value2.setFont(Altos.value_font);
}
abstract void show(AltosState state, int crc_errors);
void show(String v1, String v2) {
show();
value1.setText(v1);
value2.setText(v2);
}
void show(String f1, double v1, String f2, double v2) {
show();
value1.setText(String.format(f1, v1));
value2.setText(String.format(f2, v2));
}
public DescentDualValue (GridBagLayout layout, int x, int y, String text) {
GridBagConstraints c = new GridBagConstraints();
c.weighty = 1;
label = new JLabel(text);
label.setFont(Altos.label_font);
label.setHorizontalAlignment(SwingConstants.LEFT);
c.gridx = x + 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);
value1 = new JTextField(Altos.text_width);
value1.setFont(Altos.value_font);
value1.setHorizontalAlignment(SwingConstants.RIGHT);
c.gridx = x + 2; c.gridy = y;
c.anchor = GridBagConstraints.WEST;
c.fill = GridBagConstraints.BOTH;
c.weightx = 1;
layout.setConstraints(value1, c);
add(value1);
value2 = new JTextField(Altos.text_width);
value2.setFont(Altos.value_font);
value2.setHorizontalAlignment(SwingConstants.RIGHT);
c.gridx = x + 4; c.gridy = y;
c.anchor = GridBagConstraints.WEST;
c.fill = GridBagConstraints.BOTH;
c.weightx = 1;
c.gridwidth = 1;
layout.setConstraints(value2, c);
add(value2);
}
}
class Height extends DescentValue {
void show (AltosState state, int crc_errors) {
show(AltosConvert.height, state.height);
}
public Height (GridBagLayout layout, int x, int y) {
super (layout, x, y, "Height");
}
}
Height height;
class Speed extends DescentValue {
void show (AltosState state, int crc_errors) {
double speed = state.speed;
if (!state.ascent)
speed = state.baro_speed;
show(AltosConvert.speed, speed);
}
public Speed (GridBagLayout layout, int x, int y) {
super (layout, x, y, "Speed");
}
}
Speed speed;
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 %d° %9.6f", h, deg, min);
}
class Lat extends DescentValue {
void show (AltosState state, int crc_errors) {
if (state.gps != null && state.gps.connected)
show(pos(state.gps.lat,"N", "S"));
else
show("???");
}
public Lat (GridBagLayout layout, int x, int y) {
super (layout, x, y, "Latitude");
}
}
Lat lat;
class Lon extends DescentValue {
void show (AltosState state, int crc_errors) {
if (state.gps != null && state.gps.connected)
show(pos(state.gps.lon,"W", "E"));
else
show("???");
}
public Lon (GridBagLayout layout, int x, int y) {
super (layout, x, y, "Longitude");
}
}
Lon lon;
class Distance extends DescentValue {
void show(AltosState state, int crc_errors) {
show(AltosConvert.distance, state.from_pad.distance);
}
public Distance (GridBagLayout layout, int x, int y) {
super(layout, x, y, "Ground Distance");
}
}
Distance distance;
class Apogee extends DescentStatus {
void show (AltosState state, int crc_errors) {
show("%4.2f V", state.drogue_sense);
lights.set(state.drogue_sense > 3.2);
}
public Apogee (GridBagLayout layout, int y) {
super(layout, y, "Apogee Igniter Voltage");
}
}
Apogee apogee;
class Main extends DescentStatus {
void show (AltosState state, int crc_errors) {
show("%4.2f V", state.main_sense);
lights.set(state.main_sense > 3.2);
}
public Main (GridBagLayout layout, int y) {
super(layout, y, "Main Igniter Voltage");
}
}
Main main;
class Bearing extends DescentDualValue {
void show (AltosState state, int crc_errors) {
if (state.from_pad != null) {
show( String.format("%3.0f°", state.from_pad.bearing),
state.from_pad.bearing_words(
AltosGreatCircle.BEARING_LONG));
} else {
show("???", "???");
}
}
public Bearing (GridBagLayout layout, int x, int y) {
super (layout, x, y, "Bearing");
}
}
Bearing bearing;
class Range extends DescentValue {
void show (AltosState state, int crc_errors) {
show(AltosConvert.distance, state.range);
}
public Range (GridBagLayout layout, int x, int y) {
super (layout, x, y, "Range");
}
}
Range range;
class Elevation extends DescentValue {
void show (AltosState state, int crc_errors) {
show("%3.0f°", state.elevation);
}
public Elevation (GridBagLayout layout, int x, int y) {
super (layout, x, y, "Elevation");
}
}
Elevation elevation;
public void reset() {
lat.reset();
lon.reset();
height.reset();
speed.reset();
bearing.reset();
range.reset();
distance.reset();
elevation.reset();
main.reset();
apogee.reset();
}
public void set_font() {
lat.set_font();
lon.set_font();
height.set_font();
speed.set_font();
bearing.set_font();
range.set_font();
distance.set_font();
elevation.set_font();
main.set_font();
apogee.set_font();
}
public void show(AltosState state, int crc_errors) {
height.show(state, crc_errors);
speed.show(state, crc_errors);
if (state.gps != null && state.gps.connected) {
bearing.show(state, crc_errors);
range.show(state, crc_errors);
distance.show(state, crc_errors);
elevation.show(state, crc_errors);
lat.show(state, crc_errors);
lon.show(state, crc_errors);
} else {
bearing.hide();
range.hide();
distance.hide();
elevation.hide();
lat.hide();
lon.hide();
}
if (state.main_sense != AltosRecord.MISSING)
main.show(state, crc_errors);
else
main.hide();
if (state.drogue_sense != AltosRecord.MISSING)
apogee.show(state, crc_errors);
else
apogee.hide();
}
public AltosDescent() {
layout = new GridBagLayout();
setLayout(layout);
/* Elements in descent display */
speed = new Speed(layout, 0, 0);
height = new Height(layout, 2, 0);
elevation = new Elevation(layout, 0, 1);
range = new Range(layout, 2, 1);
bearing = new Bearing(layout, 0, 2);
distance = new Distance(layout, 0, 3);
lat = new Lat(layout, 0, 4);
lon = new Lon(layout, 2, 4);
apogee = new Apogee(layout, 5);
main = new Main(layout, 6);
}
}
|