8c3f821e6c96db559153196a5bcb1e5bcb8bf813
[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.*;
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         AltosFreqList   frequencies;
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                         frequencies = new AltosFreqList(AltosPreferences.frequency(serial));
145                         frequencies.set_product("Monitor");
146                         frequencies.set_serial(serial);
147                         frequencies.addActionListener(new ActionListener() {
148                                         public void actionPerformed(ActionEvent e) {
149                                                 double frequency = frequencies.frequency();
150                                                 reader.save_frequency();
151                                                 try {
152                                                         reader.set_frequency(frequency);
153                                                 } catch (TimeoutException te) {
154                                                 } catch (InterruptedException ie) {
155                                                 }
156                                         }
157                         });
158                         c.gridx = 0;
159                         c.gridy = 0;
160                         c.insets = new Insets(3, 3, 3, 3);
161                         c.anchor = GridBagConstraints.WEST;
162                         bag.add (frequencies, c);
163
164                         // Telemetry format menu
165                         telemetries = new JComboBox();
166                         for (int i = 1; i <= Altos.ao_telemetry_max; i++)
167                                 telemetries.addItem(Altos.telemetry_name(i));
168                         int telemetry = AltosPreferences.telemetry(serial);
169                         if (telemetry <= Altos.ao_telemetry_off ||
170                             telemetry > Altos.ao_telemetry_max)
171                                 telemetry = Altos.ao_telemetry_standard;
172                         telemetries.setSelectedIndex(telemetry - 1);
173                         telemetries.setMaximumRowCount(Altos.ao_telemetry_max);
174                         telemetries.addActionListener(new ActionListener() {
175                                         public void actionPerformed(ActionEvent e) {
176                                                 int telemetry = telemetries.getSelectedIndex() + 1;
177                                                 reader.set_telemetry(telemetry);
178                                                 reader.save_telemetry();
179                                         }
180                                 });
181                         c.gridx = 1;
182                         c.gridy = 0;
183                         c.fill = GridBagConstraints.NONE;
184                         c.anchor = GridBagConstraints.WEST;
185                         bag.add (telemetries, c);
186                         c.insets = new Insets(0, 0, 0, 0);
187                 }
188
189                 /* Flight status is always visible */
190                 flightStatus = new AltosFlightStatus();
191                 c.gridx = 0;
192                 c.gridy = 1;
193                 c.fill = GridBagConstraints.HORIZONTAL;
194                 c.weightx = 1;
195                 c.gridwidth = 2;
196                 bag.add(flightStatus, c);
197                 c.gridwidth = 1;
198
199                 /* The rest of the window uses a tabbed pane to
200                  * show one of the alternate data views
201                  */
202                 pane = new JTabbedPane();
203
204                 pad = new AltosPad();
205                 pane.add("Launch Pad", pad);
206
207                 ascent = new AltosAscent();
208                 pane.add("Ascent", ascent);
209
210                 descent = new AltosDescent();
211                 pane.add("Descent", descent);
212
213                 landed = new AltosLanded();
214                 pane.add("Landed", landed);
215
216                 flightInfo = new AltosInfoTable();
217                 pane.add("Table", new JScrollPane(flightInfo));
218
219                 sitemap = new AltosSiteMap();
220                 has_map = false;
221
222                 /* Make the tabbed pane use the rest of the window space */
223                 c.gridx = 0;
224                 c.gridy = 2;
225                 c.fill = GridBagConstraints.BOTH;
226                 c.weightx = 1;
227                 c.weighty = 1;
228                 c.gridwidth = 2;
229                 bag.add(pane, c);
230
231                 setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
232                 addWindowListener(new WindowAdapter() {
233                                 @Override
234                                 public void windowClosing(WindowEvent e) {
235                                         disconnect();
236                                         setVisible(false);
237                                         dispose();
238                                         if (exit_on_close)
239                                                 System.exit(0);
240                                 }
241                         });
242
243                 pack();
244                 setVisible(true);
245
246                 thread = new AltosDisplayThread(this, voice, this, reader);
247
248                 thread.start();
249         }
250
251         public AltosFlightUI (AltosVoice in_voice, AltosFlightReader in_reader) {
252                 this(in_voice, in_reader, -1);
253         }
254 }