286b2a4eeb3519e19a8fdfecfdb167b8e3cc5b80
[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.init(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("TeleMetrum");
160                         telemetries.addItem("TeleMini/TeleNano");
161                         telemetries.setSelectedIndex(AltosPreferences.telemetry(serial) - 1);
162                         telemetries.setMaximumRowCount(2);
163                         telemetries.addActionListener(new ActionListener() {
164                                         public void actionPerformed(ActionEvent e) {
165                                                 int telemetry = telemetries.getSelectedIndex();
166                                                 reader.set_telemetry(telemetry);
167                                         }
168                                 });
169                         c.gridx = 1;
170                         c.gridy = 0;
171                         c.fill = GridBagConstraints.NONE;
172                         c.anchor = GridBagConstraints.WEST;
173                         bag.add (telemetries, c);
174                         c.insets = new Insets(0, 0, 0, 0);
175                 }
176
177                 /* Flight status is always visible */
178                 flightStatus = new AltosFlightStatus();
179                 c.gridx = 0;
180                 c.gridy = 1;
181                 c.fill = GridBagConstraints.HORIZONTAL;
182                 c.weightx = 1;
183                 c.gridwidth = 2;
184                 bag.add(flightStatus, c);
185                 c.gridwidth = 1;
186
187                 /* The rest of the window uses a tabbed pane to
188                  * show one of the alternate data views
189                  */
190                 pane = new JTabbedPane();
191
192                 pad = new AltosPad();
193                 pane.add("Launch Pad", pad);
194
195                 ascent = new AltosAscent();
196                 pane.add("Ascent", ascent);
197
198                 descent = new AltosDescent();
199                 pane.add("Descent", descent);
200
201                 landed = new AltosLanded();
202                 pane.add("Landed", landed);
203
204                 flightInfo = new AltosInfoTable();
205                 pane.add("Table", new JScrollPane(flightInfo));
206
207                 sitemap = new AltosSiteMap();
208                 has_map = false;
209
210                 /* Make the tabbed pane use the rest of the window space */
211                 c.gridx = 0;
212                 c.gridy = 2;
213                 c.fill = GridBagConstraints.BOTH;
214                 c.weightx = 1;
215                 c.weighty = 1;
216                 c.gridwidth = 2;
217                 bag.add(pane, c);
218
219                 setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
220                 addWindowListener(new WindowAdapter() {
221                                 @Override
222                                 public void windowClosing(WindowEvent e) {
223                                         disconnect();
224                                         setVisible(false);
225                                         dispose();
226                                         if (exit_on_close)
227                                                 System.exit(0);
228                                 }
229                         });
230
231                 pack();
232                 setVisible(true);
233
234                 thread = new AltosDisplayThread(this, voice, this, reader);
235
236                 thread.start();
237         }
238
239         public AltosFlightUI (AltosVoice in_voice, AltosFlightReader in_reader) {
240                 this(in_voice, in_reader, -1);
241         }
242 }