docs: Document altosui "Graph Data" button
[fw/altos] / ao-tools / altosui / AltosFlightUI.java
index a7caf7e9620d9f504f5d673a0e3a5b1779734993..7fcfb8be6da68d5f356dd723ea146cf195089127 100644 (file)
@@ -36,21 +36,28 @@ public class AltosFlightUI extends JFrame implements AltosFlightDisplay {
        AltosFlightReader       reader;
        AltosDisplayThread      thread;
 
-       private Box vbox;
-
        JTabbedPane     pane;
 
        AltosPad        pad;
+       AltosAscent     ascent;
+       AltosDescent    descent;
+       AltosLanded     landed;
+       AltosSiteMap    sitemap;
 
-       private AltosStatusTable flightStatus;
+       private AltosFlightStatus flightStatus;
        private AltosInfoTable flightInfo;
 
-       public int width() {
-               return flightInfo.width();
-       }
-
-       public int height() {
-               return flightStatus.height() + flightInfo.height();
+       boolean exit_on_close = false;
+
+       JComponent cur_tab = null;
+       JComponent which_tab(AltosState state) {
+               if (state.state < Altos.ao_flight_boost)
+                       return pad;
+               if (state.state <= Altos.ao_flight_coast)
+                       return ascent;
+               if (state.state <= Altos.ao_flight_main)
+                       return descent;
+               return landed;
        }
 
        void stop_display() {
@@ -69,76 +76,123 @@ public class AltosFlightUI extends JFrame implements AltosFlightDisplay {
 
        public void reset() {
                pad.reset();
+               ascent.reset();
+               descent.reset();
+               landed.reset();
                flightInfo.clear();
+               sitemap.reset();
        }
 
        public void show(AltosState state, int crc_errors) {
+               JComponent tab = which_tab(state);
                pad.show(state, crc_errors);
-               flightStatus.set(state);
+               ascent.show(state, crc_errors);
+               descent.show(state, crc_errors);
+               landed.show(state, crc_errors);
+               if (tab != cur_tab) {
+                       if (cur_tab == pane.getSelectedComponent()) {
+                               pane.setSelectedComponent(tab);
+                       }
+                       cur_tab = tab;
+               }
+               flightStatus.show(state, crc_errors);
                flightInfo.show(state, crc_errors);
+               sitemap.show(state, crc_errors);
+       }
+
+       public void set_exit_on_close() {
+               exit_on_close = true;
        }
 
+       Container       bag;
+       JComboBox       channels;
+
        public AltosFlightUI(AltosVoice in_voice, AltosFlightReader in_reader, final int serial) {
+               AltosPreferences.init(this);
+
                voice = in_voice;
                reader = in_reader;
 
+               bag = getContentPane();
+               bag.setLayout(new GridBagLayout());
+
+               GridBagConstraints c = new GridBagConstraints();
+
                java.net.URL imgURL = AltosUI.class.getResource("/altus-metrum-16x16.jpg");
                if (imgURL != null)
                        setIconImage(new ImageIcon(imgURL).getImage());
 
                setTitle(String.format("AltOS %s", reader.name));
 
-               flightStatus = new AltosStatusTable();
-
-               vbox = new Box (BoxLayout.Y_AXIS);
-               vbox.add(flightStatus);
+               /* Stick channel selector at top of table for telemetry monitoring */
+               if (serial >= 0) {
+                       // Channel menu
+                       channels = new AltosChannelMenu(AltosPreferences.channel(serial));
+                       channels.addActionListener(new ActionListener() {
+                               public void actionPerformed(ActionEvent e) {
+                                       int channel = channels.getSelectedIndex();
+                                       reader.set_channel(channel);
+                               }
+                       });
+                       c.gridx = 0;
+                       c.gridy = 0;
+                       c.anchor = GridBagConstraints.WEST;
+                       bag.add (channels, c);
+               }
 
+               /* Flight status is always visible */
+               flightStatus = new AltosFlightStatus();
+               c.gridx = 0;
+               c.gridy = 1;
+               c.fill = GridBagConstraints.HORIZONTAL;
+               c.weightx = 1;
+               bag.add(flightStatus, c);
+
+               /* The rest of the window uses a tabbed pane to
+                * show one of the alternate data views
+                */
                pane = new JTabbedPane();
 
                pad = new AltosPad();
                pane.add("Launch Pad", pad);
 
-               flightInfo = new AltosInfoTable();
-               pane.add("Table", flightInfo.box());
-
-               vbox.add(pane);
+               ascent = new AltosAscent();
+               pane.add("Ascent", ascent);
 
-               this.add(vbox);
+               descent = new AltosDescent();
+               pane.add("Descent", descent);
 
-               if (serial >= 0) {
-                       JMenuBar menubar = new JMenuBar();
+               landed = new AltosLanded();
+               pane.add("Landed", landed);
 
-                       // Channel menu
-                       {
-                               JMenu menu = new AltosChannelMenu(AltosPreferences.channel(serial));
-                               menu.addActionListener(new ActionListener() {
-                                               public void actionPerformed(ActionEvent e) {
-                                                       int channel = Integer.parseInt(e.getActionCommand());
-                                                       reader.set_channel(channel);
-                                                       AltosPreferences.set_channel(serial, channel);
-                                               }
-                                       });
-                               menu.setMnemonic(KeyEvent.VK_C);
-                               menubar.add(menu);
-                       }
+               flightInfo = new AltosInfoTable();
+               pane.add("Table", new JScrollPane(flightInfo));
 
-                       this.setJMenuBar(menubar);
-               }
+               sitemap = new AltosSiteMap();
+               pane.add("Site Map", sitemap);
 
-               this.setSize(new Dimension (width(), height()));
-               this.validate();
+               /* Make the tabbed pane use the rest of the window space */
+               c.gridx = 0;
+               c.gridy = 2;
+               c.fill = GridBagConstraints.BOTH;
+               c.weightx = 1;
+               c.weighty = 1;
+               bag.add(pane, c);
 
                setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
                addWindowListener(new WindowAdapter() {
-                       @Override
-                       public void windowClosing(WindowEvent e) {
-                               disconnect();
-                               setVisible(false);
-                               dispose();
-                       }
-               });
-
-               this.setVisible(true);
+                               @Override
+                               public void windowClosing(WindowEvent e) {
+                                       disconnect();
+                                       setVisible(false);
+                                       dispose();
+                                       if (exit_on_close)
+                                               System.exit(0);
+                               }
+                       });
+
+               pack();
+               setVisible(true);
 
                thread = new AltosDisplayThread(this, voice, this, reader);