altosui: Split flight record out of telemetry class
[fw/altos] / ao-tools / altosui / AltosUI.java
1 /*
2  * Copyright © 2010 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 altosui;
19
20 import java.awt.*;
21 import java.awt.event.*;
22 import javax.swing.*;
23 import javax.swing.filechooser.FileNameExtensionFilter;
24 import javax.swing.table.*;
25 import java.io.*;
26 import java.util.*;
27 import java.text.*;
28 import java.util.prefs.*;
29 import java.util.concurrent.LinkedBlockingQueue;
30
31 import altosui.Altos;
32 import altosui.AltosSerial;
33 import altosui.AltosSerialMonitor;
34 import altosui.AltosRecord;
35 import altosui.AltosTelemetry;
36 import altosui.AltosState;
37 import altosui.AltosDeviceDialog;
38 import altosui.AltosPreferences;
39 import altosui.AltosLog;
40 import altosui.AltosVoice;
41 import altosui.AltosFlightStatusTableModel;
42 import altosui.AltosFlightInfoTableModel;
43
44 import libaltosJNI.*;
45
46 public class AltosUI extends JFrame {
47         private int channel = -1;
48
49         private AltosFlightStatusTableModel flightStatusModel;
50         private JTable flightStatus;
51
52         static final int info_columns = 3;
53
54         private AltosFlightInfoTableModel[] flightInfoModel;
55         private JTable[] flightInfo;
56         private AltosSerial serial_line;
57         private AltosLog altos_log;
58         private Box[] ibox;
59         private Box vbox;
60         private Box hbox;
61
62         private Font statusFont = new Font("SansSerif", Font.BOLD, 24);
63         private Font infoLabelFont = new Font("SansSerif", Font.PLAIN, 14);
64         private Font infoValueFont = new Font("Monospaced", Font.PLAIN, 14);
65
66         public AltosVoice voice = new AltosVoice();
67
68         public AltosUI() {
69
70                 String[] statusNames = { "Height (m)", "State", "RSSI (dBm)", "Speed (m/s)" };
71                 Object[][] statusData = { { "0", "pad", "-50", "0" } };
72
73                 AltosPreferences.init(this);
74
75                 vbox = Box.createVerticalBox();
76                 this.add(vbox);
77
78                 flightStatusModel = new AltosFlightStatusTableModel();
79                 flightStatus = new JTable(flightStatusModel);
80                 flightStatus.setFont(statusFont);
81                 TableColumnModel tcm = flightStatus.getColumnModel();
82                 for (int i = 0; i < flightStatusModel.getColumnCount(); i++) {
83                         DefaultTableCellRenderer       r = new DefaultTableCellRenderer();
84                         r.setFont(statusFont);
85                         r.setHorizontalAlignment(SwingConstants.CENTER);
86                         tcm.getColumn(i).setCellRenderer(r);
87                 }
88
89                 FontMetrics     statusMetrics = flightStatus.getFontMetrics(statusFont);
90                 int statusHeight = (statusMetrics.getHeight() + statusMetrics.getLeading()) * 15 / 10;
91                 flightStatus.setRowHeight(statusHeight);
92                 flightStatus.setShowGrid(false);
93
94                 vbox.add(flightStatus);
95
96                 hbox = Box.createHorizontalBox();
97                 vbox.add(hbox);
98
99                 flightInfo = new JTable[3];
100                 flightInfoModel = new AltosFlightInfoTableModel[3];
101                 ibox = new Box[3];
102                 FontMetrics     infoValueMetrics = flightStatus.getFontMetrics(infoValueFont);
103                 int infoHeight = (infoValueMetrics.getHeight() + infoValueMetrics.getLeading()) * 20 / 10;
104
105                 for (int i = 0; i < info_columns; i++) {
106                         ibox[i] = Box.createVerticalBox();
107                         flightInfoModel[i] = new AltosFlightInfoTableModel();
108                         flightInfo[i] = new JTable(flightInfoModel[i]);
109                         flightInfo[i].setFont(infoValueFont);
110                         flightInfo[i].setRowHeight(infoHeight);
111                         flightInfo[i].setShowGrid(true);
112                         ibox[i].add(flightInfo[i].getTableHeader());
113                         ibox[i].add(flightInfo[i]);
114                         hbox.add(ibox[i]);
115                 }
116
117                 setTitle("AltOS");
118
119                 createMenu();
120
121                 serial_line = new AltosSerial();
122                 altos_log = new AltosLog(serial_line);
123                 int dpi = Toolkit.getDefaultToolkit().getScreenResolution();
124                 this.setSize(new Dimension (infoValueMetrics.charWidth('0') * 6 * 20,
125                                             statusHeight * 4 + infoHeight * 17));
126                 this.validate();
127                 setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
128                 addWindowListener(new WindowAdapter() {
129                         @Override
130                         public void windowClosing(WindowEvent e) {
131                                 System.exit(0);
132                         }
133                 });
134                 voice.speak("Rocket flight monitor ready.");
135         }
136
137         public void info_reset() {
138                 for (int i = 0; i < info_columns; i++)
139                         flightInfoModel[i].resetRow();
140         }
141
142         public void info_add_row(int col, String name, String value) {
143                 flightInfoModel[col].addRow(name, value);
144         }
145
146         public void info_add_row(int col, String name, String format, Object... parameters) {
147                 flightInfoModel[col].addRow(name, String.format(format, parameters));
148         }
149
150         public void info_add_deg(int col, String name, double v, int pos, int neg) {
151                 int     c = pos;
152                 if (v < 0) {
153                         c = neg;
154                         v = -v;
155                 }
156                 double  deg = Math.floor(v);
157                 double  min = (v - deg) * 60;
158
159                 flightInfoModel[col].addRow(name, String.format("%3.0f°%08.5f'", deg, min));
160         }
161
162         public void info_finish() {
163                 for (int i = 0; i < info_columns; i++)
164                         flightInfoModel[i].finish();
165         }
166
167         public void show(AltosState state) {
168                 flightStatusModel.set(state);
169
170                 info_reset();
171                 if (state.gps_ready)
172                         info_add_row(0, "Ground state", "%s", "ready");
173                 else
174                         info_add_row(0, "Ground state", "wait (%d)",
175                                      state.gps_waiting);
176                 info_add_row(0, "Rocket state", "%s", state.data.state);
177                 info_add_row(0, "Callsign", "%s", state.data.callsign);
178                 info_add_row(0, "Rocket serial", "%6d", state.data.serial);
179                 info_add_row(0, "Rocket flight", "%6d", state.data.flight);
180
181                 info_add_row(0, "RSSI", "%6d    dBm", state.data.rssi);
182                 info_add_row(0, "Height", "%6.0f    m", state.height);
183                 info_add_row(0, "Max height", "%6.0f    m", state.max_height);
184                 info_add_row(0, "Acceleration", "%8.1f  m/s²", state.acceleration);
185                 info_add_row(0, "Max acceleration", "%8.1f  m/s²", state.max_acceleration);
186                 info_add_row(0, "Speed", "%8.1f  m/s", state.ascent ? state.speed : state.baro_speed);
187                 info_add_row(0, "Max Speed", "%8.1f  m/s", state.max_speed);
188                 info_add_row(0, "Temperature", "%9.2f °C", state.temperature);
189                 info_add_row(0, "Battery", "%9.2f V", state.battery);
190                 info_add_row(0, "Drogue", "%9.2f V", state.drogue_sense);
191                 info_add_row(0, "Main", "%9.2f V", state.main_sense);
192                 info_add_row(0, "Pad altitude", "%6.0f    m", state.ground_altitude);
193                 if (state.gps == null) {
194                         info_add_row(1, "GPS", "not available");
195                 } else {
196                         if (state.data.gps.gps_locked)
197                                 info_add_row(1, "GPS", "   locked");
198                         else if (state.data.gps.gps_connected)
199                                 info_add_row(1, "GPS", " unlocked");
200                         else
201                                 info_add_row(1, "GPS", "  missing");
202                         info_add_row(1, "Satellites", "%6d", state.data.gps.nsat);
203                         info_add_deg(1, "Latitude", state.gps.lat, 'N', 'S');
204                         info_add_deg(1, "Longitude", state.gps.lon, 'E', 'W');
205                         info_add_row(1, "GPS altitude", "%6d", state.gps.alt);
206                         info_add_row(1, "GPS height", "%6.0f", state.gps_height);
207
208                         /* The SkyTraq GPS doesn't report these values */
209                         if (false) {
210                                 info_add_row(1, "GPS ground speed", "%8.1f m/s %3d°",
211                                              state.gps.ground_speed,
212                                              state.gps.course);
213                                 info_add_row(1, "GPS climb rate", "%8.1f m/s",
214                                              state.gps.climb_rate);
215                                 info_add_row(1, "GPS error", "%6d m(h)%3d m(v)",
216                                              state.gps.h_error, state.gps.v_error);
217                         }
218                         info_add_row(1, "GPS hdop", "%8.1f", state.gps.hdop);
219
220                         if (state.npad > 0) {
221                                 if (state.from_pad != null) {
222                                         info_add_row(1, "Distance from pad", "%6.0f m", state.from_pad.distance);
223                                         info_add_row(1, "Direction from pad", "%6.0f°", state.from_pad.bearing);
224                                 } else {
225                                         info_add_row(1, "Distance from pad", "unknown");
226                                         info_add_row(1, "Direction from pad", "unknown");
227                                 }
228                                 info_add_deg(1, "Pad latitude", state.pad_lat, 'N', 'S');
229                                 info_add_deg(1, "Pad longitude", state.pad_lon, 'E', 'W');
230                                 info_add_row(1, "Pad GPS alt", "%6.0f m", state.pad_alt);
231                         }
232                         info_add_row(1, "GPS date", "%04d-%02d-%02d",
233                                        state.gps.year,
234                                        state.gps.month,
235                                        state.gps.day);
236                         info_add_row(1, "GPS time", "  %02d:%02d:%02d",
237                                        state.gps.hour,
238                                        state.gps.minute,
239                                        state.gps.second);
240                         int     nsat_vis = 0;
241                         int     c;
242
243                         if (state.gps.cc_gps_sat == null)
244                                 info_add_row(2, "Satellites Visible", "%4d", 0);
245                         else {
246                                 info_add_row(2, "Satellites Visible", "%4d", state.gps.cc_gps_sat.length);
247                                 for (c = 0; c < state.gps.cc_gps_sat.length; c++) {
248                                         info_add_row(2, "Satellite id,C/N0",
249                                                      "%4d, %4d",
250                                                      state.gps.cc_gps_sat[c].svid,
251                                                      state.gps.cc_gps_sat[c].c_n0);
252                                 }
253                         }
254                 }
255                 info_finish();
256         }
257
258         class IdleThread extends Thread {
259
260                 private AltosState state;
261                 int     reported_landing;
262
263                 public void report(boolean last) {
264                         if (state == null)
265                                 return;
266
267                         /* reset the landing count once we hear about a new flight */
268                         if (state.state < Altos.ao_flight_drogue)
269                                 reported_landing = 0;
270
271                         /* Shut up once the rocket is on the ground */
272                         if (reported_landing > 2) {
273                                 return;
274                         }
275
276                         /* If the rocket isn't on the pad, then report height */
277                         if (state.state > Altos.ao_flight_pad) {
278                                 voice.speak("%d meters", (int) (state.height + 0.5));
279                         } else {
280                                 reported_landing = 0;
281                         }
282
283                         /* If the rocket is coming down, check to see if it has landed;
284                          * either we've got a landed report or we haven't heard from it in
285                          * a long time
286                          */
287                         if (!state.ascent &&
288                             (last ||
289                              System.currentTimeMillis() - state.report_time >= 15000 ||
290                              state.state == Altos.ao_flight_landed))
291                         {
292                                 if (Math.abs(state.baro_speed) < 20 && state.height < 100)
293                                         voice.speak("rocket landed safely");
294                                 else
295                                         voice.speak("rocket may have crashed");
296                                 if (state.from_pad != null)
297                                         voice.speak("bearing %d degrees, range %d meters",
298                                                     (int) (state.from_pad.bearing + 0.5),
299                                                     (int) (state.from_pad.distance + 0.5));
300                                 ++reported_landing;
301                         }
302                 }
303
304                 public void run () {
305
306                         reported_landing = 0;
307                         state = null;
308                         try {
309                                 for (;;) {
310                                         Thread.sleep(10000);
311                                         report(false);
312                                 }
313                         } catch (InterruptedException ie) {
314                         }
315                 }
316
317                 public void notice(AltosState new_state) {
318                         state = new_state;
319                 }
320         }
321
322         private void tell(AltosState state, AltosState old_state) {
323                 if (old_state == null || old_state.state != state.state) {
324                         voice.speak(state.data.state);
325                         if ((old_state == null || old_state.state <= Altos.ao_flight_boost) &&
326                             state.state > Altos.ao_flight_boost) {
327                                 voice.speak("max speed: %d meters per second.",
328                                             (int) (state.max_speed + 0.5));
329                         } else if ((old_state == null || old_state.state < Altos.ao_flight_drogue) &&
330                                    state.state >= Altos.ao_flight_drogue) {
331                                 voice.speak("max height: %d meters.",
332                                             (int) (state.max_height + 0.5));
333                         }
334                 }
335                 if (old_state == null || old_state.gps_ready != state.gps_ready) {
336                         if (state.gps_ready)
337                                 voice.speak("GPS ready");
338                         else if (old_state != null)
339                                 voice.speak("GPS lost");
340                 }
341                 old_state = state;
342         }
343
344         class DisplayThread extends Thread {
345                 IdleThread      idle_thread;
346
347                 String          name;
348
349                 AltosRecord read() throws InterruptedException, ParseException { return null; }
350
351                 void close() { }
352
353                 void update(AltosState state) throws InterruptedException { }
354
355                 public void run() {
356                         String          line;
357                         AltosState      state = null;
358                         AltosState      old_state = null;
359
360                         idle_thread = new IdleThread();
361
362                         info_reset();
363                         info_finish();
364                         idle_thread.start();
365                         try {
366                                 for (;;) {
367                                         try {
368                                                 AltosRecord record = read();
369                                                 if (record == null)
370                                                         break;
371                                                 old_state = state;
372                                                 state = new AltosState(record, state);
373                                                 update(state);
374                                                 show(state);
375                                                 tell(state, old_state);
376                                                 idle_thread.notice(state);
377                                         } catch (ParseException pp) {
378                                                 System.out.printf("Parse error: %d \"%s\"\n", pp.getErrorOffset(), pp.getMessage());
379                                         }
380                                 }
381                         } catch (InterruptedException ee) {
382                         } finally {
383                                 close();
384                                 idle_thread.interrupt();
385                         }
386                 }
387
388                 public void report() {
389                         if (idle_thread != null)
390                                 idle_thread.report(true);
391                 }
392         }
393
394         class TelemetryThread extends DisplayThread {
395
396                 String readline() throws InterruptedException { return null; }
397
398                 AltosRecord read() throws InterruptedException, ParseException {
399                         return new AltosTelemetry(readline());
400                 }
401         }
402
403         class DeviceThread extends TelemetryThread {
404                 AltosSerial     serial;
405                 LinkedBlockingQueue<String> telem;
406
407                 String readline() throws InterruptedException {
408                         return telem.take();
409                 }
410
411                 void close() {
412                         serial.close();
413                         serial.remove_monitor(telem);
414                 }
415
416                 public DeviceThread(AltosSerial s) {
417                         serial = s;
418                         telem = new LinkedBlockingQueue<String>();
419                         serial.add_monitor(telem);
420                         name = "telemetry";
421                 }
422         }
423
424         private void ConnectToDevice() {
425                 altos_device    device = AltosDeviceDialog.show(AltosUI.this, "TeleDongle");
426
427                 if (device != null) {
428                         try {
429                                 serial_line.open(device);
430                                 DeviceThread thread = new DeviceThread(serial_line);
431                                 serial_line.set_channel(AltosPreferences.channel());
432                                 run_display(thread);
433                         } catch (FileNotFoundException ee) {
434                                 JOptionPane.showMessageDialog(AltosUI.this,
435                                                               String.format("Cannot open device \"%s\"",
436                                                                             device.getPath()),
437                                                               "Cannot open target device",
438                                                               JOptionPane.ERROR_MESSAGE);
439                         } catch (IOException ee) {
440                                 JOptionPane.showMessageDialog(AltosUI.this,
441                                                               device.getPath(),
442                                                               "Unkonwn I/O error",
443                                                               JOptionPane.ERROR_MESSAGE);
444                         }
445                 }
446         }
447
448         void DisconnectFromDevice () {
449                 stop_display();
450         }
451
452         /*
453          * Open an existing telemetry file and replay it in realtime
454          */
455
456         class ReplayTelemetryThread extends TelemetryThread {
457                 FileInputStream replay;
458
459                 ReplayTelemetryThread(FileInputStream in, String in_name) {
460                         replay = in;
461                         name = in_name;
462                 }
463
464                 String readline() {
465                         try {
466                                 String  line = AltosRecord.gets(replay);
467                                 System.out.printf("telemetry line %s\n", line);
468                                 return line;
469                         } catch (IOException ee) {
470                                 JOptionPane.showMessageDialog(AltosUI.this,
471                                                               name,
472                                                               "error reading",
473                                                               JOptionPane.ERROR_MESSAGE);
474                         }
475                         return null;
476                 }
477
478                 void close () {
479                         try {
480                                 replay.close();
481                         } catch (IOException ee) {
482                         }
483                         report();
484                 }
485
486                 void update(AltosState state) throws InterruptedException {
487                         /* Make it run in realtime after the rocket leaves the pad */
488                         if (state.state > Altos.ao_flight_pad)
489                                 Thread.sleep((int) (Math.min(state.time_change,10) * 1000));
490                 }
491         }
492
493         class ReplayEepromThread extends DisplayThread {
494                 FileInputStream replay;
495
496                 AltosRecord read () {
497                         return null;
498                 }
499
500                 void close () {
501                         try {
502                                 replay.close();
503                         } catch (IOException ee) {
504                         }
505                         report();
506                 }
507
508                 ReplayEepromThread(FileInputStream in, String in_name) {
509                         replay = in;
510                         name = in_name;
511                 }
512         }
513
514         Thread          display_thread;
515
516         private void stop_display() {
517                 if (display_thread != null && display_thread.isAlive())
518                         display_thread.interrupt();
519                 display_thread = null;
520         }
521
522         private void run_display(Thread thread) {
523                 stop_display();
524                 display_thread = thread;
525                 display_thread.start();
526         }
527
528         /*
529          * Replay a flight from telemetry data
530          */
531         private void Replay() {
532                 JFileChooser    logfile_chooser = new JFileChooser();
533
534                 logfile_chooser.setDialogTitle("Select Flight Record File");
535                 logfile_chooser.setFileFilter(new FileNameExtensionFilter("Flight data file", "eeprom", "telem"));
536                 logfile_chooser.setCurrentDirectory(AltosPreferences.logdir());
537                 int returnVal = logfile_chooser.showOpenDialog(AltosUI.this);
538
539                 if (returnVal == JFileChooser.APPROVE_OPTION) {
540                         File file = logfile_chooser.getSelectedFile();
541                         if (file == null)
542                                 System.out.println("No file selected?");
543                         String  filename = file.getName();
544                         try {
545                                 FileInputStream replay = new FileInputStream(file);
546                                 DisplayThread   thread;
547                                 if (filename.endsWith("eeprom"))
548                                     thread = new ReplayEepromThread(replay, filename);
549                                 else
550                                     thread = new ReplayTelemetryThread(replay, filename);
551                                 run_display(thread);
552                         } catch (FileNotFoundException ee) {
553                                 JOptionPane.showMessageDialog(AltosUI.this,
554                                                               filename,
555                                                               "Cannot open telemetry file",
556                                                               JOptionPane.ERROR_MESSAGE);
557                         }
558                 }
559         }
560
561         /* Connect to TeleMetrum, either directly or through
562          * a TeleDongle over the packet link
563          */
564         private void SaveFlightData() {
565                 new AltosEepromDownload(AltosUI.this);
566         }
567
568         /* Create the AltosUI menus
569          */
570         private void createMenu() {
571                 JMenuBar menubar = new JMenuBar();
572                 JMenu menu;
573                 JMenuItem item;
574                 JRadioButtonMenuItem radioitem;
575
576                 // File menu
577                 {
578                         menu = new JMenu("File");
579                         menu.setMnemonic(KeyEvent.VK_F);
580                         menubar.add(menu);
581
582                         item = new JMenuItem("Quit",KeyEvent.VK_Q);
583                         item.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_Q,
584                                                                    ActionEvent.CTRL_MASK));
585                         item.addActionListener(new ActionListener() {
586                                         public void actionPerformed(ActionEvent e) {
587                                                 System.exit(0);
588                                         }
589                                 });
590                         menu.add(item);
591                 }
592
593                 // Device menu
594                 {
595                         menu = new JMenu("Device");
596                         menu.setMnemonic(KeyEvent.VK_D);
597                         menubar.add(menu);
598
599                         item = new JMenuItem("Connect to Device",KeyEvent.VK_C);
600                         item.addActionListener(new ActionListener() {
601                                         public void actionPerformed(ActionEvent e) {
602                                                 ConnectToDevice();
603                                         }
604                                 });
605                         menu.add(item);
606
607                         item = new JMenuItem("Disconnect from Device",KeyEvent.VK_D);
608                         item.addActionListener(new ActionListener() {
609                                         public void actionPerformed(ActionEvent e) {
610                                                 DisconnectFromDevice();
611                                         }
612                                 });
613                         menu.add(item);
614
615                         menu.addSeparator();
616
617                         item = new JMenuItem("Save Flight Data",KeyEvent.VK_S);
618                         item.addActionListener(new ActionListener() {
619                                         public void actionPerformed(ActionEvent e) {
620                                                 SaveFlightData();
621                                         }
622                                 });
623                         menu.add(item);
624
625                         item = new JMenuItem("Replay",KeyEvent.VK_R);
626                         item.addActionListener(new ActionListener() {
627                                         public void actionPerformed(ActionEvent e) {
628                                                 Replay();
629                                         }
630                                 });
631                         menu.add(item);
632                 }
633                 // Log menu
634                 {
635                         menu = new JMenu("Log");
636                         menu.setMnemonic(KeyEvent.VK_L);
637                         menubar.add(menu);
638
639                         item = new JMenuItem("New Log",KeyEvent.VK_N);
640                         item.addActionListener(new ActionListener() {
641                                         public void actionPerformed(ActionEvent e) {
642                                         }
643                                 });
644                         menu.add(item);
645
646                         item = new JMenuItem("Configure Log",KeyEvent.VK_C);
647                         item.addActionListener(new ActionListener() {
648                                         public void actionPerformed(ActionEvent e) {
649                                                 AltosPreferences.ConfigureLog();
650                                         }
651                                 });
652                         menu.add(item);
653                 }
654                 // Voice menu
655                 {
656                         menu = new JMenu("Voice", true);
657                         menu.setMnemonic(KeyEvent.VK_V);
658                         menubar.add(menu);
659
660                         radioitem = new JRadioButtonMenuItem("Enable Voice", AltosPreferences.voice());
661                         radioitem.addActionListener(new ActionListener() {
662                                         public void actionPerformed(ActionEvent e) {
663                                                 JRadioButtonMenuItem item = (JRadioButtonMenuItem) e.getSource();
664                                                 boolean enabled = item.isSelected();
665                                                 AltosPreferences.set_voice(enabled);
666                                                 if (enabled)
667                                                         voice.speak_always("Enable voice.");
668                                                 else
669                                                         voice.speak_always("Disable voice.");
670                                         }
671                                 });
672                         menu.add(radioitem);
673                         item = new JMenuItem("Test Voice",KeyEvent.VK_T);
674                         item.addActionListener(new ActionListener() {
675                                         public void actionPerformed(ActionEvent e) {
676                                                 voice.speak("That's one small step for man; one giant leap for mankind.");
677                                         }
678                                 });
679                         menu.add(item);
680                 }
681
682                 // Channel menu
683                 {
684                         menu = new JMenu("Channel", true);
685                         menu.setMnemonic(KeyEvent.VK_C);
686                         menubar.add(menu);
687                         ButtonGroup group = new ButtonGroup();
688
689                         for (int c = 0; c <= 9; c++) {
690                                 radioitem = new JRadioButtonMenuItem(String.format("Channel %1d (%7.3fMHz)", c,
691                                                                                    434.550 + c * 0.1),
692                                                                      c == AltosPreferences.channel());
693                                 radioitem.setActionCommand(String.format("%d", c));
694                                 radioitem.addActionListener(new ActionListener() {
695                                                 public void actionPerformed(ActionEvent e) {
696                                                         int new_channel = Integer.parseInt(e.getActionCommand());
697                                                         AltosPreferences.set_channel(new_channel);
698                                                         serial_line.set_channel(new_channel);
699                                                 }
700                                         });
701                                 menu.add(radioitem);
702                                 group.add(radioitem);
703                         }
704                 }
705
706                 this.setJMenuBar(menubar);
707
708         }
709         public static void main(final String[] args) {
710                 AltosUI altosui = new AltosUI();
711                 altosui.setVisible(true);
712         }
713 }