altosui: Support raw telemetry from TeleDongle
[fw/altos] / altosui / AltosFlightUI.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 public class AltosFlightUI extends JFrame implements AltosFlightDisplay {
32         AltosVoice              voice;
33         AltosFlightReader       reader;
34         AltosDisplayThread      thread;
35
36         JTabbedPane     pane;
37
38         AltosPad        pad;
39         AltosAscent     ascent;
40         AltosDescent    descent;
41         AltosLanded     landed;
42         AltosSiteMap    sitemap;
43         boolean         has_map;
44
45         private AltosFlightStatus flightStatus;
46         private AltosInfoTable flightInfo;
47
48         boolean exit_on_close = false;
49
50         JComponent cur_tab = null;
51         JComponent which_tab(AltosState state) {
52                 if (state.state < Altos.ao_flight_boost)
53                         return pad;
54                 if (state.state <= Altos.ao_flight_coast)
55                         return ascent;
56                 if (state.state <= Altos.ao_flight_main)
57                         return descent;
58                 return landed;
59         }
60
61         void stop_display() {
62                 if (thread != null && thread.isAlive()) {
63                         thread.interrupt();
64                         try {
65                                 thread.join();
66                         } catch (InterruptedException ie) {}
67                 }
68                 thread = null;
69         }
70
71         void disconnect() {
72                 stop_display();
73         }
74
75         public void reset() {
76                 pad.reset();
77                 ascent.reset();
78                 descent.reset();
79                 landed.reset();
80                 flightInfo.clear();
81                 sitemap.reset();
82         }
83
84         public void show(AltosState state, int crc_errors) {
85                 JComponent tab = which_tab(state);
86                 try {
87                 pad.show(state, crc_errors);
88                 ascent.show(state, crc_errors);
89                 descent.show(state, crc_errors);
90                 landed.show(state, crc_errors);
91                 if (tab != cur_tab) {
92                         if (cur_tab == pane.getSelectedComponent()) {
93                                 pane.setSelectedComponent(tab);
94                         }
95                         cur_tab = tab;
96                 }
97                 flightStatus.show(state, crc_errors);
98                 flightInfo.show(state, crc_errors);
99                 if (state.gps != null) {
100                         if (!has_map) {
101                                 pane.add("Site Map", sitemap);
102                                 has_map = true;
103                         }
104                         sitemap.show(state, crc_errors);
105                 } else {
106                         if (has_map) {
107                                 pane.remove(sitemap);
108                                 has_map = false;
109                         }
110                 }
111                 } catch (Exception e) {
112                         System.out.print("Show exception" + e);
113                 }
114         }
115
116         public void set_exit_on_close() {
117                 exit_on_close = true;
118         }
119
120         Container       bag;
121         JComboBox       channels;
122         JComboBox       telemetries;
123
124         public AltosFlightUI(AltosVoice in_voice, AltosFlightReader in_reader, final int serial) {
125                 AltosPreferences.set_component(this);
126
127                 voice = in_voice;
128                 reader = in_reader;
129
130                 bag = getContentPane();
131                 bag.setLayout(new GridBagLayout());
132
133                 GridBagConstraints c = new GridBagConstraints();
134
135                 java.net.URL imgURL = AltosUI.class.getResource("/altus-metrum-16x16.jpg");
136                 if (imgURL != null)
137                         setIconImage(new ImageIcon(imgURL).getImage());
138
139                 setTitle(String.format("AltOS %s", reader.name));
140
141                 /* Stick channel selector at top of table for telemetry monitoring */
142                 if (serial >= 0) {
143                         // Channel menu
144                         channels = new AltosChannelMenu(AltosPreferences.channel(serial));
145                         channels.addActionListener(new ActionListener() {
146                                 public void actionPerformed(ActionEvent e) {
147                                         int channel = channels.getSelectedIndex();
148                                         reader.set_channel(channel);
149                                 }
150                         });
151                         c.gridx = 0;
152                         c.gridy = 0;
153                         c.insets = new Insets(3, 3, 3, 3);
154                         c.anchor = GridBagConstraints.WEST;
155                         bag.add (channels, c);
156
157                         // Telemetry format menu
158                         telemetries = new JComboBox();
159                         telemetries.addItem("Legacy TeleMetrum");
160                         telemetries.addItem("Split Telemetry");
161                         int telemetry = 1;
162                         telemetry = AltosPreferences.telemetry(serial);
163                         if (telemetry > Altos.ao_telemetry_split)
164                                 telemetry = Altos.ao_telemetry_split;
165                         telemetries.setSelectedIndex(telemetry - 1);
166                         telemetries.setMaximumRowCount(2);
167                         telemetries.addActionListener(new ActionListener() {
168                                         public void actionPerformed(ActionEvent e) {
169                                                 int telemetry = telemetries.getSelectedIndex() + 1;
170                                                 reader.set_telemetry(telemetry);
171                                         }
172                                 });
173                         c.gridx = 1;
174                         c.gridy = 0;
175                         c.fill = GridBagConstraints.NONE;
176                         c.anchor = GridBagConstraints.WEST;
177                         bag.add (telemetries, c);
178                         c.insets = new Insets(0, 0, 0, 0);
179                 }
180
181                 /* Flight status is always visible */
182                 flightStatus = new AltosFlightStatus();
183                 c.gridx = 0;
184                 c.gridy = 1;
185                 c.fill = GridBagConstraints.HORIZONTAL;
186                 c.weightx = 1;
187                 c.gridwidth = 2;
188                 bag.add(flightStatus, c);
189                 c.gridwidth = 1;
190
191                 /* The rest of the window uses a tabbed pane to
192                  * show one of the alternate data views
193                  */
194                 pane = new JTabbedPane();
195
196                 pad = new AltosPad();
197                 pane.add("Launch Pad", pad);
198
199                 ascent = new AltosAscent();
200                 pane.add("Ascent", ascent);
201
202                 descent = new AltosDescent();
203                 pane.add("Descent", descent);
204
205                 landed = new AltosLanded();
206                 pane.add("Landed", landed);
207
208                 flightInfo = new AltosInfoTable();
209                 pane.add("Table", new JScrollPane(flightInfo));
210
211                 sitemap = new AltosSiteMap();
212                 has_map = false;
213
214                 /* Make the tabbed pane use the rest of the window space */
215                 c.gridx = 0;
216                 c.gridy = 2;
217                 c.fill = GridBagConstraints.BOTH;
218                 c.weightx = 1;
219                 c.weighty = 1;
220                 c.gridwidth = 2;
221                 bag.add(pane, c);
222
223                 setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
224                 addWindowListener(new WindowAdapter() {
225                                 @Override
226                                 public void windowClosing(WindowEvent e) {
227                                         disconnect();
228                                         setVisible(false);
229                                         dispose();
230                                         if (exit_on_close)
231                                                 System.exit(0);
232                                 }
233                         });
234
235                 pack();
236                 setVisible(true);
237
238                 thread = new AltosDisplayThread(this, voice, this, reader);
239
240                 thread.start();
241         }
242
243         public AltosFlightUI (AltosVoice in_voice, AltosFlightReader in_reader) {
244                 this(in_voice, in_reader, -1);
245         }
246 }