altoslib: Hook up idle monitoring data again
[fw/altos] / altoslib / AltosPyro.java
index 0554ff114af3cd22971ece618b24fae12eb7ec39..80884b9f01888005b67ce87be48c5b63ac6d3483 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
@@ -15,7 +16,7 @@
  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  */
 
-package org.altusmetrum.altoslib;
+package org.altusmetrum.altoslib_11;
 
 import java.util.*;
 import java.text.*;
@@ -28,24 +29,24 @@ public class AltosPyro {
        public static final int pyro_accel_greater              = 0x00000002;
        public static final String pyro_accel_less_string       = "a<";
        public static final String pyro_accel_greater_string    = "a>";
-       public static final String pyro_accel_less_name         = "Acceleration less than (m/s²)";
-       public static final String pyro_accel_greater_name      = "Acceleration greater than (m/s²)";
+       public static final String pyro_accel_less_name         = "Acceleration less than";
+       public static final String pyro_accel_greater_name      = "Acceleration greater than";
        public static final double pyro_accel_scale             = 16.0;
 
        public static final int pyro_speed_less                 = 0x00000004;
        public static final int pyro_speed_greater              = 0x00000008;
        public static final String pyro_speed_less_string       = "s<";
        public static final String pyro_speed_greater_string    = "s>";
-       public static final String pyro_speed_less_name         = "Speed less than (m/s)";
-       public static final String pyro_speed_greater_name      = "Speed greater than (m/s)";
+       public static final String pyro_speed_less_name         = "Speed less than";
+       public static final String pyro_speed_greater_name      = "Speed greater than";
        public static final double pyro_speed_scale             = 16.0;
 
        public static final int pyro_height_less                = 0x00000010;
        public static final int pyro_height_greater             = 0x00000020;
        public static final String pyro_height_less_string      = "h<";
        public static final String pyro_height_greater_string   = "h>";
-       public static final String pyro_height_less_name        = "Height less than (m)";
-       public static final String pyro_height_greater_name     = "Height greater than (m)";
+       public static final String pyro_height_less_name        = "Height less than";
+       public static final String pyro_height_greater_name     = "Height greater than";
        public static final double pyro_height_scale            = 1.0;
 
        public static final int pyro_orient_less                = 0x00000040;
@@ -102,15 +103,19 @@ public class AltosPyro {
 
        private static HashMap<Integer,String> pyro_to_name = new HashMap<Integer,String>();
 
+       private static HashMap<Integer,AltosUnits> pyro_to_units = new HashMap<Integer,AltosUnits>();
+
        private static HashMap<Integer,Double> pyro_to_scale = new HashMap<Integer,Double>();
-       
-       private static void insert_map(int flag, String string, String name, double scale) {
+
+       private static void insert_map(int flag, String string, String name, AltosUnits units, double scale) {
                string_to_pyro.put(string, flag);
                pyro_to_string.put(flag, string);
                pyro_to_name.put(flag, name);
+               if (units != null)
+                       pyro_to_units.put(flag, units);
                pyro_to_scale.put(flag, scale);
        }
-       
+
        public static int string_to_pyro(String name) {
                if (string_to_pyro.containsKey(name))
                        return string_to_pyro.get(name);
@@ -124,8 +129,22 @@ public class AltosPyro {
        }
 
        public static String pyro_to_name(int flag) {
-               if (pyro_to_name.containsKey(flag))
-                       return pyro_to_name.get(flag);
+               String          name;
+               AltosUnits      units = null;
+               if (!pyro_to_name.containsKey(flag))
+                       return null;
+
+               name = pyro_to_name.get(flag);
+               if (pyro_to_units.containsKey(flag))
+                       units = pyro_to_units.get(flag);
+               if (units == null)
+                       return name;
+               return String.format ("%s (%s)", name, units.parse_units());
+       }
+
+       public static AltosUnits pyro_to_units(int flag) {
+               if (pyro_to_units.containsKey(flag))
+                       return pyro_to_units.get(flag);
                return null;
        }
 
@@ -136,29 +155,29 @@ public class AltosPyro {
        }
 
        private static void initialize_maps() {
-               insert_map(pyro_accel_less, pyro_accel_less_string, pyro_accel_less_name, pyro_accel_scale);
-               insert_map(pyro_accel_greater, pyro_accel_greater_string, pyro_accel_greater_name, pyro_accel_scale);
+               insert_map(pyro_accel_less, pyro_accel_less_string, pyro_accel_less_name, AltosConvert.accel, pyro_accel_scale);
+               insert_map(pyro_accel_greater, pyro_accel_greater_string, pyro_accel_greater_name, AltosConvert.accel, pyro_accel_scale);
+
+               insert_map(pyro_speed_less, pyro_speed_less_string, pyro_speed_less_name, AltosConvert.speed, pyro_speed_scale);
+               insert_map(pyro_speed_greater, pyro_speed_greater_string, pyro_speed_greater_name, AltosConvert.speed, pyro_speed_scale);
 
-               insert_map(pyro_speed_less, pyro_speed_less_string, pyro_speed_less_name, pyro_speed_scale);
-               insert_map(pyro_speed_greater, pyro_speed_greater_string, pyro_speed_greater_name, pyro_speed_scale);
+               insert_map(pyro_height_less, pyro_height_less_string, pyro_height_less_name, AltosConvert.height, pyro_height_scale);
+               insert_map(pyro_height_greater, pyro_height_greater_string, pyro_height_greater_name, AltosConvert.height, pyro_height_scale);
 
-               insert_map(pyro_height_less, pyro_height_less_string, pyro_height_less_name, pyro_height_scale);
-               insert_map(pyro_height_greater, pyro_height_greater_string, pyro_height_greater_name, pyro_height_scale);
+               insert_map(pyro_orient_less, pyro_orient_less_string, pyro_orient_less_name, null, pyro_orient_scale);
+               insert_map(pyro_orient_greater, pyro_orient_greater_string, pyro_orient_greater_name, null, pyro_orient_scale);
 
-               insert_map(pyro_orient_less, pyro_orient_less_string, pyro_orient_less_name, pyro_orient_scale);
-               insert_map(pyro_orient_greater, pyro_orient_greater_string, pyro_orient_greater_name, pyro_orient_scale);
+               insert_map(pyro_time_less, pyro_time_less_string, pyro_time_less_name, null, pyro_time_scale);
+               insert_map(pyro_time_greater, pyro_time_greater_string, pyro_time_greater_name, null, pyro_time_scale);
 
-               insert_map(pyro_time_less, pyro_time_less_string, pyro_time_less_name, pyro_time_scale);
-               insert_map(pyro_time_greater, pyro_time_greater_string, pyro_time_greater_name, pyro_time_scale);
+               insert_map(pyro_ascending, pyro_ascending_string, pyro_ascending_name, null, 1.0);
+               insert_map(pyro_descending, pyro_descending_string, pyro_descending_name, null, 1.0);
 
-               insert_map(pyro_ascending, pyro_ascending_string, pyro_ascending_name, 1.0);
-               insert_map(pyro_descending, pyro_descending_string, pyro_descending_name, 1.0);
+               insert_map(pyro_after_motor, pyro_after_motor_string, pyro_after_motor_name, null, 1.0);
+               insert_map(pyro_delay, pyro_delay_string, pyro_delay_name, null, pyro_delay_scale);
 
-               insert_map(pyro_after_motor, pyro_after_motor_string, pyro_after_motor_name, 1.0);
-               insert_map(pyro_delay, pyro_delay_string, pyro_delay_name, pyro_delay_scale);
-               
-               insert_map(pyro_state_less, pyro_state_less_string, pyro_state_less_name, 1.0);
-               insert_map(pyro_state_greater_or_equal, pyro_state_greater_or_equal_string, pyro_state_greater_or_equal_name, 1.0);
+               insert_map(pyro_state_less, pyro_state_less_string, pyro_state_less_name, null, 1.0);
+               insert_map(pyro_state_greater_or_equal, pyro_state_greater_or_equal_string, pyro_state_greater_or_equal_name, null, 1.0);
        }
 
        {
@@ -259,7 +278,7 @@ public class AltosPyro {
                                int     value = 0;
                                ++i;
                                try {
-                                       value = AltosLib.fromdec(tokens[i]);
+                                       value = (int) AltosLib.fromdec(tokens[i]);
                                } catch (NumberFormatException n) {
                                        throw new ParseException(String.format("Invalid pyro value \"%s\"",
                                                                               tokens[i]), i);
@@ -271,6 +290,10 @@ public class AltosPyro {
                }
        }
 
+       public AltosPyro() {
+               this(0);
+       }
+
        public String toString() {
                String  ret = String.format("%d", channel);