2 * Copyright © 2010 Keith Packard <keithp@keithp.com>
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; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
22 import java.awt.event.*;
25 import java.util.concurrent.*;
26 import org.altusmetrum.altoslib_11.*;
27 import org.altusmetrum.altosuilib_11.*;
29 public class AltosFlightUI extends AltosUIFrame implements AltosFlightDisplay {
31 AltosFlightReader reader;
32 AltosDisplayThread thread;
34 LinkedList<AltosFlightDisplay> displays;
43 AltosCompanionInfo companion;
46 boolean has_companion;
50 private AltosFlightStatus flightStatus;
51 private AltosInfoTable flightInfo;
53 boolean exit_on_close = false;
55 JComponent cur_tab = null;
56 JComponent which_tab(AltosState state) {
57 if (state.state() < Altos.ao_flight_boost)
59 if (state.state() <= Altos.ao_flight_coast)
61 if (state.state() <= Altos.ao_flight_main)
63 if (state.state() == AltosLib.ao_flight_stateless)
69 if (thread != null && thread.isAlive()) {
73 } catch (InterruptedException ie) {}
83 for (AltosFlightDisplay d : displays)
87 public void font_size_changed(int font_size) {
88 for (AltosFlightDisplay d : displays)
89 d.font_size_changed(font_size);
92 public void units_changed(boolean imperial_units) {
93 for (AltosFlightDisplay d : displays)
94 d.units_changed(imperial_units);
97 AltosFlightStatusUpdate status_update;
99 public void show(AltosState state, AltosListenerState listener_state) {
100 status_update.saved_state = state;
101 status_update.saved_listener_state = listener_state;
104 state = new AltosState();
106 if (state.state() != Altos.ao_flight_startup) {
108 pane.setTitleAt(0, "Launch Pad");
110 pane.add(descent, 2);
116 JComponent tab = which_tab(state);
117 if (tab != cur_tab) {
118 if (cur_tab == pane.getSelectedComponent()) {
119 pane.setSelectedComponent(tab);
124 if (ignitor.should_show(state)) {
126 pane.add("Ignitor", ignitor);
131 pane.remove(ignitor);
136 if (state.companion != null) {
137 if (!has_companion) {
138 pane.add("Companion", companion);
143 pane.remove(companion);
144 has_companion = false;
148 if (state.gps != null && state.gps.connected) {
150 pane.add("Site Map", sitemap);
155 pane.remove(sitemap);
160 for (AltosFlightDisplay d : displays) {
162 d.show(state, listener_state);
163 } catch (Exception e) {
164 System.out.printf("Exception showing %s\n", d.getName());
170 public void set_exit_on_close() {
171 exit_on_close = true;
175 AltosUIFreqList frequencies;
176 AltosUIRateList rates;
177 AltosUITelemetryList telemetries;
180 ActionListener show_timer;
182 public AltosFlightUI(AltosVoice in_voice, AltosFlightReader in_reader, final int serial) {
183 AltosUIPreferences.set_component(this);
185 displays = new LinkedList<AltosFlightDisplay>();
190 bag = getContentPane();
191 bag.setLayout(new GridBagLayout());
193 setTitle(String.format("AltOS %s", reader.name));
195 /* Stick channel selector at top of table for telemetry monitoring */
200 frequencies = new AltosUIFreqList(AltosUIPreferences.frequency(serial));
201 frequencies.set_product("Monitor");
202 frequencies.set_serial(serial);
203 frequencies.addActionListener(new ActionListener() {
204 public void actionPerformed(ActionEvent e) {
205 double frequency = frequencies.frequency();
207 reader.set_frequency(frequency);
208 } catch (TimeoutException te) {
209 } catch (InterruptedException ie) {
211 reader.save_frequency();
214 bag.add (frequencies, constraints(0, 1));
216 // Telemetry rate list
217 rates = new AltosUIRateList(AltosUIPreferences.telemetry_rate(serial));
218 rates.addActionListener(new ActionListener() {
219 public void actionPerformed(ActionEvent e) {
220 int rate = rates.rate();
222 reader.set_telemetry_rate(rate);
223 } catch (TimeoutException te) {
224 } catch (InterruptedException ie) {
226 reader.save_telemetry_rate();
229 rates.setEnabled(reader.supports_telemetry_rate(AltosLib.ao_telemetry_rate_2400));
230 bag.add (rates, constraints(1, 1));
232 // Telemetry format list
233 if (reader.supports_telemetry(Altos.ao_telemetry_standard)) {
234 telemetries = new AltosUITelemetryList(serial);
235 telemetries.addActionListener(new ActionListener() {
236 public void actionPerformed(ActionEvent e) {
237 int telemetry = telemetries.get_selected();
238 reader.set_telemetry(telemetry);
239 reader.save_telemetry();
242 bag.add (telemetries, constraints(2, 1));
246 if (reader.supports_telemetry(Altos.ao_telemetry_0_9))
247 version = "Telemetry: 0.9";
248 else if (reader.supports_telemetry(Altos.ao_telemetry_0_8))
249 version = "Telemetry: 0.8";
251 version = "Telemetry: None";
253 telemetry = new JLabel(version);
254 bag.add (telemetry, constraints(2, 1));
260 /* Flight status is always visible */
261 flightStatus = new AltosFlightStatus();
262 displays.add(flightStatus);
263 bag.add(flightStatus, constraints(0, 4, GridBagConstraints.HORIZONTAL));
266 /* The rest of the window uses a tabbed pane to
267 * show one of the alternate data views
269 pane = new JTabbedPane();
271 pad = new AltosPad();
273 pane.add("Status", pad);
275 ignitor = new AltosIgnitor();
276 displays.add(ignitor);
277 ascent = new AltosAscent();
278 displays.add(ascent);
279 descent = new AltosDescent();
280 displays.add(descent);
281 landed = new AltosLanded(reader);
282 displays.add(landed);
284 flightInfo = new AltosInfoTable();
285 displays.add(flightInfo);
286 pane.add("Table", new JScrollPane(flightInfo));
288 companion = new AltosCompanionInfo();
289 displays.add(companion);
290 has_companion = false;
293 sitemap = new AltosUIMap();
294 displays.add(sitemap);
297 /* Make the tabbed pane use the rest of the window space */
298 bag.add(pane, constraints(0, 4, GridBagConstraints.BOTH));
300 setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
302 AltosUIPreferences.register_font_listener(this);
303 AltosPreferences.register_units_listener(this);
305 status_update = new AltosFlightStatusUpdate(flightStatus);
307 flightStatus.start(status_update);
309 addWindowListener(new WindowAdapter() {
311 public void windowClosing(WindowEvent e) {
316 AltosUIPreferences.unregister_font_listener(AltosFlightUI.this);
317 AltosPreferences.unregister_units_listener(AltosFlightUI.this);
326 thread = new AltosDisplayThread(this, voice, this, reader);
331 public AltosFlightUI (AltosVoice in_voice, AltosFlightReader in_reader) {
332 this(in_voice, in_reader, -1);