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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
|
/*
* 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.event.*;
import org.altusmetrum.altoslib_4.*;
import org.altusmetrum.altosuilib_2.*;
public class AltosConfigUI
extends AltosUIDialog
implements ActionListener, ItemListener, DocumentListener, AltosConfigValues, AltosUnitsListener
{
Container pane;
JLabel product_label;
JLabel version_label;
JLabel serial_label;
JLabel main_deploy_label;
JLabel apogee_delay_label;
JLabel apogee_lockout_label;
JLabel frequency_label;
JLabel radio_calibration_label;
JLabel radio_frequency_label;
JLabel radio_enable_label;
JLabel aprs_interval_label;
JLabel flight_log_max_label;
JLabel ignite_mode_label;
JLabel pad_orientation_label;
JLabel callsign_label;
JLabel beep_label;
JLabel tracker_horiz_label;
JLabel tracker_vert_label;
public boolean dirty;
JFrame owner;
JLabel product_value;
JLabel version_value;
JLabel serial_value;
JComboBox<String> main_deploy_value;
JComboBox<String> apogee_delay_value;
JComboBox<String> apogee_lockout_value;
AltosFreqList radio_frequency_value;
JTextField radio_calibration_value;
JRadioButton radio_enable_value;
JComboBox<String> aprs_interval_value;
JComboBox<String> flight_log_max_value;
JComboBox<String> ignite_mode_value;
JComboBox<String> pad_orientation_value;
JTextField callsign_value;
JComboBox<String> beep_value;
JComboBox<String> tracker_horiz_value;
JComboBox<String> tracker_vert_value;
JButton pyro;
JButton save;
JButton reset;
JButton reboot;
JButton close;
AltosPyro[] pyros;
ActionListener listener;
static String[] main_deploy_values_m = {
"100", "150", "200", "250", "300", "350",
"400", "450", "500"
};
static String[] main_deploy_values_ft = {
"250", "500", "750", "1000", "1250", "1500",
"1750", "2000"
};
static String[] apogee_delay_values = {
"0", "1", "2", "3", "4", "5"
};
static String[] apogee_lockout_values = {
"0", "5", "10", "15", "20"
};
static String[] flight_log_max_values = {
"64", "128", "192", "256", "320",
"384", "448", "512", "576", "640",
"704", "768", "832", "896", "960",
};
static String[] ignite_mode_values = {
"Dual Deploy",
"Redundant Apogee",
"Redundant Main",
};
static String[] aprs_interval_values = {
"Disabled",
"2",
"5",
"10"
};
static String[] beep_values = {
"3750",
"4000",
"4250",
};
static String[] pad_orientation_values = {
"Antenna Up",
"Antenna Down",
};
static String[] tracker_horiz_values_m = {
"250",
"500",
"1000",
"2000"
};
static String[] tracker_horiz_values_ft = {
"500",
"1000",
"2500",
"5000"
};
static String[] tracker_vert_values_m = {
"25",
"50",
"100",
"200"
};
static String[] tracker_vert_values_ft = {
"50",
"100",
"250",
"500"
};
/* A window listener to catch closing events and tell the config code */
class ConfigListener extends WindowAdapter {
AltosConfigUI ui;
public ConfigListener(AltosConfigUI this_ui) {
ui = this_ui;
}
public void windowClosing(WindowEvent e) {
ui.actionPerformed(new ActionEvent(e.getSource(),
ActionEvent.ACTION_PERFORMED,
"Close"));
}
}
boolean is_telemini_v1() {
String product = product_value.getText();
return product != null && product.startsWith("TeleMini-v1");
}
boolean is_telemini() {
String product = product_value.getText();
return product != null && product.startsWith("TeleMini");
}
boolean is_easymini() {
String product = product_value.getText();
return product != null && product.startsWith("EasyMini");
}
boolean is_telemetrum() {
String product = product_value.getText();
return product != null && product.startsWith("TeleMetrum");
}
void set_radio_calibration_tool_tip() {
if (radio_calibration_value.isEnabled())
radio_calibration_value.setToolTipText("Tune radio output to match desired frequency");
else
radio_calibration_value.setToolTipText("Cannot tune radio while connected over packet mode");
}
void set_radio_enable_tool_tip() {
if (radio_enable_value.isEnabled())
radio_enable_value.setToolTipText("Enable/Disable telemetry and RDF transmissions");
else
radio_enable_value.setToolTipText("Firmware version does not support disabling radio");
}
void set_aprs_interval_tool_tip() {
if (aprs_interval_value.isEnabled())
aprs_interval_value.setToolTipText("Enable APRS and set the interval between APRS reports");
else
aprs_interval_value.setToolTipText("Hardware doesn't support APRS");
}
void set_flight_log_max_tool_tip() {
if (flight_log_max_value.isEnabled())
flight_log_max_value.setToolTipText("Size reserved for each flight log (in kB)");
else {
if (is_telemini_v1())
flight_log_max_value.setToolTipText("TeleMini-v1 stores only one flight");
else
flight_log_max_value.setToolTipText("Cannot set max value with flight logs in memory");
}
}
void set_ignite_mode_tool_tip() {
if (ignite_mode_value.isEnabled())
ignite_mode_value.setToolTipText("Select when igniters will be fired");
else
ignite_mode_value.setToolTipText("Older firmware could not select ignite mode");
}
void set_pad_orientation_tool_tip() {
if (pad_orientation_value.isEnabled())
pad_orientation_value.setToolTipText("How will the computer be mounted in the airframe");
else {
if (is_telemetrum())
pad_orientation_value.setToolTipText("Older TeleMetrum firmware must fly antenna forward");
else if (is_telemini() || is_easymini())
pad_orientation_value.setToolTipText("TeleMini and EasyMini don't care how they are mounted");
else
pad_orientation_value.setToolTipText("Can't select orientation");
}
}
void set_beep_tool_tip() {
if (beep_value.isEnabled())
beep_value.setToolTipText("What frequency the beeper will sound at");
else
beep_value.setToolTipText("Older firmware could not select beeper frequency");
}
/* Build the UI using a grid bag */
public AltosConfigUI(JFrame in_owner, boolean remote) {
super (in_owner, "Configure Flight Computer", false);
owner = in_owner;
GridBagConstraints c;
int row = 0;
Insets il = new Insets(4,4,4,4);
Insets ir = new Insets(4,4,4,4);
pane = getContentPane();
pane.setLayout(new GridBagLayout());
/* Product */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
product_label = new JLabel("Product:");
pane.add(product_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
product_value = new JLabel("");
pane.add(product_value, c);
row++;
/* Version */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
version_label = new JLabel("Software version:");
pane.add(version_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
version_value = new JLabel("");
pane.add(version_value, c);
row++;
/* Serial */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
serial_label = new JLabel("Serial:");
pane.add(serial_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
serial_value = new JLabel("");
pane.add(serial_value, c);
row++;
/* Main deploy */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
main_deploy_label = new JLabel(get_main_deploy_label());
pane.add(main_deploy_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
main_deploy_value = new JComboBox<String>(main_deploy_values());
main_deploy_value.setEditable(true);
main_deploy_value.addItemListener(this);
pane.add(main_deploy_value, c);
main_deploy_value.setToolTipText("Height above pad altitude to fire main charge");
row++;
/* Apogee delay */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
apogee_delay_label = new JLabel("Apogee Delay(s):");
pane.add(apogee_delay_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
apogee_delay_value = new JComboBox<String>(apogee_delay_values);
apogee_delay_value.setEditable(true);
apogee_delay_value.addItemListener(this);
pane.add(apogee_delay_value, c);
apogee_delay_value.setToolTipText("Delay after apogee before charge fires");
row++;
/* Apogee lockout */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
apogee_lockout_label = new JLabel("Apogee Lockout(s):");
pane.add(apogee_lockout_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
apogee_lockout_value = new JComboBox<String>(apogee_lockout_values);
apogee_lockout_value.setEditable(true);
apogee_lockout_value.addItemListener(this);
pane.add(apogee_lockout_value, c);
apogee_lockout_value.setToolTipText("Time after boost while apogee detection is locked out");
row++;
/* Frequency */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
radio_frequency_label = new JLabel("Frequency:");
pane.add(radio_frequency_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
radio_frequency_value = new AltosFreqList();
radio_frequency_value.addItemListener(this);
pane.add(radio_frequency_value, c);
radio_frequency_value.setToolTipText("Telemetry, RDF and packet frequency");
row++;
/* Radio Calibration */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
radio_calibration_label = new JLabel("RF Calibration:");
pane.add(radio_calibration_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
radio_calibration_value = new JTextField(String.format("%d", 1186611));
radio_calibration_value.getDocument().addDocumentListener(this);
if (remote)
radio_calibration_value.setEnabled(false);
pane.add(radio_calibration_value, c);
set_radio_calibration_tool_tip();
row++;
/* Radio Enable */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
radio_enable_label = new JLabel("Telemetry/RDF/APRS Enable:");
pane.add(radio_enable_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
radio_enable_value = new JRadioButton("Enabled");
radio_enable_value.addItemListener(this);
pane.add(radio_enable_value, c);
set_radio_enable_tool_tip();
row++;
/* APRS interval */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
aprs_interval_label = new JLabel("APRS Interval(s):");
pane.add(aprs_interval_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
aprs_interval_value = new JComboBox<String>(aprs_interval_values);
aprs_interval_value.setEditable(true);
aprs_interval_value.addItemListener(this);
pane.add(aprs_interval_value, c);
set_aprs_interval_tool_tip();
row++;
/* Callsign */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
callsign_label = new JLabel("Callsign:");
pane.add(callsign_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
callsign_value = new JTextField(AltosUIPreferences.callsign());
callsign_value.getDocument().addDocumentListener(this);
pane.add(callsign_value, c);
callsign_value.setToolTipText("Callsign reported in telemetry data");
row++;
/* Flight log max */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
flight_log_max_label = new JLabel("Maximum Flight Log Size:");
pane.add(flight_log_max_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
flight_log_max_value = new JComboBox<String>(flight_log_max_values);
flight_log_max_value.setEditable(true);
flight_log_max_value.addItemListener(this);
pane.add(flight_log_max_value, c);
set_flight_log_max_tool_tip();
row++;
/* Ignite mode */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
ignite_mode_label = new JLabel("Igniter Firing Mode:");
pane.add(ignite_mode_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
ignite_mode_value = new JComboBox<String>(ignite_mode_values);
ignite_mode_value.setEditable(false);
ignite_mode_value.addItemListener(this);
pane.add(ignite_mode_value, c);
set_ignite_mode_tool_tip();
row++;
/* Pad orientation */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
pad_orientation_label = new JLabel("Pad Orientation:");
pane.add(pad_orientation_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
pad_orientation_value = new JComboBox<String>(pad_orientation_values);
pad_orientation_value.setEditable(false);
pad_orientation_value.addItemListener(this);
pane.add(pad_orientation_value, c);
set_pad_orientation_tool_tip();
row++;
/* Beeper */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
beep_label = new JLabel("Beeper Frequency:");
pane.add(beep_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
beep_value = new JComboBox<String>(beep_values);
beep_value.setEditable(true);
beep_value.addItemListener(this);
pane.add(beep_value, c);
set_beep_tool_tip();
row++;
/* Tracker triger horiz distances */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
tracker_horiz_label = new JLabel(get_tracker_horiz_label());
pane.add(tracker_horiz_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
tracker_horiz_value = new JComboBox<String>(tracker_horiz_values());
tracker_horiz_value.setEditable(true);
tracker_horiz_value.addItemListener(this);
pane.add(tracker_horiz_value, c);
row++;
/* Tracker triger vert distances */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
tracker_vert_label = new JLabel(get_tracker_vert_label());
pane.add(tracker_vert_label, c);
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
tracker_vert_value = new JComboBox<String>(tracker_vert_values());
tracker_vert_value.setEditable(true);
tracker_vert_value.addItemListener(this);
pane.add(tracker_vert_value, c);
set_tracker_tool_tip();
row++;
/* Pyro channels */
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 4;
c.fill = GridBagConstraints.HORIZONTAL;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
pyro = new JButton("Configure Pyro Channels");
pane.add(pyro, c);
pyro.addActionListener(this);
pyro.setActionCommand("Pyro");
row++;
/* Buttons */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 2;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
save = new JButton("Save");
pane.add(save, c);
save.addActionListener(this);
save.setActionCommand("Save");
c = new GridBagConstraints();
c.gridx = 2; c.gridy = row;
c.gridwidth = 2;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.CENTER;
c.insets = il;
reset = new JButton("Reset");
pane.add(reset, c);
reset.addActionListener(this);
reset.setActionCommand("Reset");
c = new GridBagConstraints();
c.gridx = 4; c.gridy = row;
c.gridwidth = 2;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.CENTER;
c.insets = il;
reboot = new JButton("Reboot");
pane.add(reboot, c);
reboot.addActionListener(this);
reboot.setActionCommand("Reboot");
c = new GridBagConstraints();
c.gridx = 6; c.gridy = row;
c.gridwidth = 2;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_END;
c.insets = il;
close = new JButton("Close");
pane.add(close, c);
close.addActionListener(this);
close.setActionCommand("Close");
addWindowListener(new ConfigListener(this));
AltosPreferences.register_units_listener(this);
}
/* Once the initial values are set, the config code will show the dialog */
public void make_visible() {
pack();
setLocationRelativeTo(owner);
setVisible(true);
}
/* If any values have been changed, confirm before closing */
public boolean check_dirty(String operation) {
if (dirty) {
Object[] options = { String.format("%s anyway", operation), "Keep editing" };
int i;
i = JOptionPane.showOptionDialog(this,
String.format("Configuration modified. %s anyway?", operation),
"Configuration Modified",
JOptionPane.DEFAULT_OPTION,
JOptionPane.WARNING_MESSAGE,
null, options, options[1]);
if (i != 0)
return false;
}
return true;
}
void set_dirty() {
dirty = true;
save.setEnabled(true);
}
public void set_clean() {
dirty = false;
save.setEnabled(false);
}
AltosConfigPyroUI pyro_ui;
public void dispose() {
if (pyro_ui != null)
pyro_ui.dispose();
AltosPreferences.unregister_units_listener(this);
super.dispose();
}
/* Listen for events from our buttons */
public void actionPerformed(ActionEvent e) {
String cmd = e.getActionCommand();
if (cmd.equals("Pyro")) {
if (pyro_ui == null && pyros != null)
pyro_ui = new AltosConfigPyroUI(this, pyros);
if (pyro_ui != null)
pyro_ui.make_visible();
return;
}
if (cmd.equals("Close") || cmd.equals("Reboot"))
if (!check_dirty(cmd))
return;
listener.actionPerformed(e);
if (cmd.equals("Close") || cmd.equals("Reboot")) {
setVisible(false);
dispose();
}
set_clean();
}
/* ItemListener interface method */
public void itemStateChanged(ItemEvent e) {
set_dirty();
}
/* DocumentListener interface methods */
public void changedUpdate(DocumentEvent e) {
set_dirty();
}
public void insertUpdate(DocumentEvent e) {
set_dirty();
}
public void removeUpdate(DocumentEvent e) {
set_dirty();
}
/* Let the config code hook on a listener */
public void addActionListener(ActionListener l) {
listener = l;
}
/* set and get all of the dialog values */
public void set_product(String product) {
radio_frequency_value.set_product(product);
product_value.setText(product);
set_pad_orientation_tool_tip();
set_flight_log_max_tool_tip();
}
public void set_version(String version) {
version_value.setText(version);
}
public void set_serial(int serial) {
radio_frequency_value.set_serial(serial);
serial_value.setText(String.format("%d", serial));
}
public void set_main_deploy(int new_main_deploy) {
main_deploy_value.setSelectedItem(AltosConvert.height.say(new_main_deploy));
main_deploy_value.setEnabled(new_main_deploy >= 0);
}
public int main_deploy() {
return (int) (AltosConvert.height.parse(main_deploy_value.getSelectedItem().toString()) + 0.5);
}
String get_main_deploy_label() {
return String.format("Main Deploy Altitude(%s):", AltosConvert.height.show_units());
}
String[] main_deploy_values() {
if (AltosConvert.imperial_units)
return main_deploy_values_ft;
else
return main_deploy_values_m;
}
void set_main_deploy_values() {
String[] v = main_deploy_values();
while (main_deploy_value.getItemCount() > 0)
main_deploy_value.removeItemAt(0);
for (int i = 0; i < v.length; i++)
main_deploy_value.addItem(v[i]);
main_deploy_value.setMaximumRowCount(v.length);
}
public void units_changed(boolean imperial_units) {
String v = main_deploy_value.getSelectedItem().toString();
main_deploy_label.setText(get_main_deploy_label());
set_main_deploy_values();
int m = (int) (AltosConvert.height.parse(v, !imperial_units) + 0.5);
set_main_deploy(m);
if (tracker_horiz_value.isEnabled() && tracker_vert_value.isEnabled()) {
String th = tracker_horiz_value.getSelectedItem().toString();
String tv = tracker_vert_value.getSelectedItem().toString();
tracker_horiz_label.setText(get_tracker_horiz_label());
tracker_vert_label.setText(get_tracker_vert_label());
set_tracker_horiz_values();
set_tracker_vert_values();
int[] t = {
(int) (AltosConvert.height.parse(th, !imperial_units) + 0.5),
(int) (AltosConvert.height.parse(tv, !imperial_units) + 0.5)
};
set_tracker_distances(t);
}
}
public void set_apogee_delay(int new_apogee_delay) {
apogee_delay_value.setSelectedItem(Integer.toString(new_apogee_delay));
apogee_delay_value.setEnabled(new_apogee_delay >= 0);
}
public int apogee_delay() {
return Integer.parseInt(apogee_delay_value.getSelectedItem().toString());
}
public void set_apogee_lockout(int new_apogee_lockout) {
apogee_lockout_value.setSelectedItem(Integer.toString(new_apogee_lockout));
apogee_lockout_value.setEnabled(new_apogee_lockout >= 0);
}
public int apogee_lockout() {
return Integer.parseInt(apogee_lockout_value.getSelectedItem().toString());
}
public void set_radio_frequency(double new_radio_frequency) {
radio_frequency_value.set_frequency(new_radio_frequency);
}
public double radio_frequency() {
return radio_frequency_value.frequency();
}
public void set_radio_calibration(int new_radio_calibration) {
radio_calibration_value.setVisible(new_radio_calibration >= 0);
if (new_radio_calibration < 0)
radio_calibration_value.setText("Disabled");
else
radio_calibration_value.setText(String.format("%d", new_radio_calibration));
}
public int radio_calibration() {
return Integer.parseInt(radio_calibration_value.getText());
}
public void set_radio_enable(int new_radio_enable) {
if (new_radio_enable >= 0) {
radio_enable_value.setSelected(new_radio_enable > 0);
radio_enable_value.setEnabled(true);
} else {
radio_enable_value.setSelected(true);
radio_enable_value.setVisible(radio_frequency() > 0);
radio_enable_value.setEnabled(false);
}
set_radio_enable_tool_tip();
}
public int radio_enable() {
if (radio_enable_value.isEnabled())
return radio_enable_value.isSelected() ? 1 : 0;
else
return -1;
}
public void set_callsign(String new_callsign) {
callsign_value.setVisible(new_callsign != null);
callsign_value.setText(new_callsign);
}
public String callsign() {
return callsign_value.getText();
}
public void set_flight_log_max(int new_flight_log_max) {
flight_log_max_value.setSelectedItem(Integer.toString(new_flight_log_max));
set_flight_log_max_tool_tip();
}
public void set_flight_log_max_enabled(boolean enable) {
flight_log_max_value.setEnabled(enable);
set_flight_log_max_tool_tip();
}
public int flight_log_max() {
return Integer.parseInt(flight_log_max_value.getSelectedItem().toString());
}
public void set_flight_log_max_limit(int flight_log_max_limit) {
//boolean any_added = false;
flight_log_max_value.removeAllItems();
for (int i = 0; i < flight_log_max_values.length; i++) {
if (Integer.parseInt(flight_log_max_values[i]) < flight_log_max_limit){
flight_log_max_value.addItem(flight_log_max_values[i]);
//any_added = true;
}
}
flight_log_max_value.addItem(String.format("%d", flight_log_max_limit));
}
public void set_ignite_mode(int new_ignite_mode) {
if (new_ignite_mode >= ignite_mode_values.length)
new_ignite_mode = 0;
if (new_ignite_mode < 0) {
ignite_mode_value.setEnabled(false);
new_ignite_mode = 0;
} else {
ignite_mode_value.setEnabled(true);
}
ignite_mode_value.setSelectedIndex(new_ignite_mode);
set_ignite_mode_tool_tip();
}
public int ignite_mode() {
if (ignite_mode_value.isEnabled())
return ignite_mode_value.getSelectedIndex();
else
return -1;
}
public void set_pad_orientation(int new_pad_orientation) {
if (new_pad_orientation >= pad_orientation_values.length)
new_pad_orientation = 0;
if (new_pad_orientation < 0) {
pad_orientation_value.setVisible(false);
new_pad_orientation = 0;
} else {
pad_orientation_value.setVisible(true);
}
pad_orientation_value.setSelectedIndex(new_pad_orientation);
set_pad_orientation_tool_tip();
}
public int pad_orientation() {
if (pad_orientation_value.isEnabled())
return pad_orientation_value.getSelectedIndex();
else
return -1;
}
public void set_beep(int new_beep) {
int new_freq = (int) Math.floor (AltosConvert.beep_value_to_freq(new_beep) + 0.5);
for (int i = 0; i < beep_values.length; i++)
if (new_beep == AltosConvert.beep_freq_to_value(Integer.parseInt(beep_values[i]))) {
beep_value.setSelectedIndex(i);
set_beep_tool_tip();
return;
}
beep_value.setSelectedItem(String.format("%d", new_freq));
beep_value.setEnabled(new_beep >= 0);
set_beep_tool_tip();
}
public int beep() {
if (beep_value.isEnabled())
return AltosConvert.beep_freq_to_value(Integer.parseInt(beep_value.getSelectedItem().toString()));
else
return -1;
}
String[] tracker_horiz_values() {
if (AltosConvert.imperial_units)
return tracker_horiz_values_ft;
else
return tracker_horiz_values_m;
}
void set_tracker_horiz_values() {
String[] v = tracker_horiz_values();
while (tracker_horiz_value.getItemCount() > 0)
tracker_horiz_value.removeItemAt(0);
for (int i = 0; i < v.length; i++)
tracker_horiz_value.addItem(v[i]);
tracker_horiz_value.setMaximumRowCount(v.length);
}
String get_tracker_horiz_label() {
return String.format("Logging Trigger Horizontal (%s):", AltosConvert.height.show_units());
}
String[] tracker_vert_values() {
if (AltosConvert.imperial_units)
return tracker_vert_values_ft;
else
return tracker_vert_values_m;
}
void set_tracker_vert_values() {
String[] v = tracker_vert_values();
while (tracker_vert_value.getItemCount() > 0)
tracker_vert_value.removeItemAt(0);
for (int i = 0; i < v.length; i++)
tracker_vert_value.addItem(v[i]);
tracker_vert_value.setMaximumRowCount(v.length);
}
void set_tracker_tool_tip() {
if (tracker_horiz_value.isEnabled())
tracker_horiz_value.setToolTipText("How far the device must move before logging is enabled");
else
tracker_horiz_value.setToolTipText("This device doesn't disable logging before motion");
if (tracker_vert_value.isEnabled())
tracker_vert_value.setToolTipText("How far the device must move before logging is enabled");
else
tracker_vert_value.setToolTipText("This device doesn't disable logging before motion");
}
String get_tracker_vert_label() {
return String.format("Logging Trigger Vertical (%s):", AltosConvert.height.show_units());
}
public void set_tracker_distances(int[] tracker_distances) {
if (tracker_distances != null) {
tracker_horiz_value.setSelectedItem(AltosConvert.height.say(tracker_distances[0]));
tracker_vert_value.setSelectedItem(AltosConvert.height.say(tracker_distances[1]));
tracker_horiz_value.setEnabled(true);
tracker_vert_value.setEnabled(true);
} else {
tracker_horiz_value.setEnabled(false);
tracker_vert_value.setEnabled(false);
}
}
public int[] tracker_distances() {
if (tracker_horiz_value.isEnabled() && tracker_vert_value.isEnabled()) {
int[] t = {
(int) (AltosConvert.height.parse(tracker_horiz_value.getSelectedItem().toString()) + 0.5),
(int) (AltosConvert.height.parse(tracker_vert_value.getSelectedItem().toString()) + 0.5),
};
return t;
}
return null;
}
public void set_pyros(AltosPyro[] new_pyros) {
pyros = new_pyros;
pyro.setVisible(pyros != null);
if (pyros != null && pyro_ui != null)
pyro_ui.set_pyros(pyros);
}
public AltosPyro[] pyros() throws AltosConfigDataException {
if (pyro_ui != null)
pyros = pyro_ui.get_pyros();
return pyros;
}
public void set_aprs_interval(int new_aprs_interval) {
String s;
if (new_aprs_interval <= 0)
s = "Disabled";
else
s = Integer.toString(new_aprs_interval);
aprs_interval_value.setSelectedItem(s);
aprs_interval_value.setVisible(new_aprs_interval >= 0);
set_aprs_interval_tool_tip();
}
public int aprs_interval() {
String s = aprs_interval_value.getSelectedItem().toString();
if (s.equals("Disabled"))
return 0;
return Integer.parseInt(s);
}
}
|