altosuilib: Put units on GPS altitude and height in info table
[fw/altos] / altosuilib / AltosInfoTable.java
index 91cc43bb29541bea306232b90dd10ab409996bb3..6bfe0cf51b20d59c787fab8aebec58c83a7c7742 100644 (file)
@@ -3,7 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  */
 
-package org.altusmetrum.altosuilib_3;
+package org.altusmetrum.altosuilib_13;
 
 import java.awt.*;
 import java.awt.event.*;
 import javax.swing.*;
 import javax.swing.table.*;
-import org.altusmetrum.altoslib_5.*;
+import org.altusmetrum.altoslib_13.*;
 
 public class AltosInfoTable extends JTable implements AltosFlightDisplay, HierarchyListener {
        private AltosFlightInfoTableModel model;
 
-       static final int info_columns = 3;
-       static final int info_rows = 17;
+       static final int info_columns = 4;
+       static final int info_rows = 18;
 
        private AltosState              last_state;
        private AltosListenerState      last_listener_state;
@@ -127,6 +128,8 @@ public class AltosInfoTable extends JTable implements AltosFlightDisplay, Hierar
 
        public void show(AltosState state, AltosListenerState listener_state) {
 
+               AltosCalData    cal_data = state.cal_data();
+
                if (!isShowing()) {
                        last_state = state;
                        last_listener_state = listener_state;
@@ -135,12 +138,16 @@ public class AltosInfoTable extends JTable implements AltosFlightDisplay, Hierar
 
                reset();
                if (state != null) {
-                       if (state.device_type != AltosLib.MISSING)
-                               info_add_row(0, "Device", "%s", AltosLib.product_name(state.device_type));
+                       if (cal_data.device_type != AltosLib.MISSING)
+                               info_add_row(0, "Device", "%s", AltosLib.product_name(cal_data.device_type));
+                       else if (cal_data.product != null)
+                               info_add_row(0, "Device", "%s", cal_data.product);
+                       if (state.tick() != AltosLib.MISSING)
+                               info_add_row(0, "Tick", "%6d", state.tick());
                        if (state.altitude() != AltosLib.MISSING)
                                info_add_row(0, "Altitude", "%6.0f    m", state.altitude());
-                       if (state.ground_altitude() != AltosLib.MISSING)
-                               info_add_row(0, "Pad altitude", "%6.0f    m", state.ground_altitude());
+                       if (cal_data.ground_altitude != AltosLib.MISSING)
+                               info_add_row(0, "Pad altitude", "%6.0f    m", cal_data.ground_altitude);
                        if (state.height() != AltosLib.MISSING)
                                info_add_row(0, "Height", "%6.0f    m", state.height());
                        if (state.max_height() != AltosLib.MISSING)
@@ -194,9 +201,9 @@ public class AltosInfoTable extends JTable implements AltosFlightDisplay, Hierar
                                if (state.gps.lon != AltosLib.MISSING)
                                        info_add_deg(1, "Longitude", state.gps.lon, 'E', 'W');
                                if (state.gps.alt != AltosLib.MISSING)
-                                       info_add_row(1, "GPS altitude", "%8.1f", state.gps.alt);
+                                       info_add_row(1, "GPS altitude", "%8.1f m", state.gps.alt);
                                if (state.gps_height != AltosLib.MISSING)
-                                       info_add_row(1, "GPS height", "%8.1f", state.gps_height);
+                                       info_add_row(1, "GPS height", "%8.1f m", state.gps_height);
 
                                if (state.gps.ground_speed != AltosLib.MISSING && state.gps.course != AltosLib.MISSING)
                                        info_add_row(1, "GPS ground speed", "%6.1f m/s %3d°",
@@ -263,6 +270,27 @@ public class AltosInfoTable extends JTable implements AltosFlightDisplay, Hierar
                                }
                        }
                }
+
+               if (state != null && state.accel_along() != AltosLib.MISSING) {
+                       info_add_row(3, "Accel along", "%8.1f m/s²", state.accel_along());
+                       info_add_row(3, "Accel across", "%8.1f m/s²", state.accel_across());
+                       info_add_row(3, "Accel through", "%8.1f m/s²", state.accel_through());
+                       info_add_row(3, "Gyro roll", "%8.1f °/s", state.gyro_roll());
+                       info_add_row(3, "Gyro pitch", "%8.1f °/s", state.gyro_pitch());
+                       info_add_row(3, "Gyro yaw", "%8.1f °/s", state.gyro_yaw());
+                       if (state.mag_along() != AltosLib.MISSING) {
+                               /* Report mag in nanoteslas (1 G = 100000 nT (or γ)) */
+                               info_add_row(3, "Mag along", "%8.1f γ", state.mag_along() * 100000.0);
+                               info_add_row(3, "Mag across", "%8.1f γ", state.mag_across() * 100000.0);
+                               info_add_row(3, "Mag Through", "%8.1f γ", state.mag_through() * 100000.0);
+                       }
+               }
+
+               if (state != null && state.igniter_voltage != null) {
+                       for (int i = 0; i < state.igniter_voltage.length; i++)
+                               info_add_row(3, AltosLib.igniter_name(i), "%9.2f V", state.igniter_voltage[i]);
+               }
+
                info_finish();
        }
 }