update changelogs for Debian build
[fw/altos] / altosui / Altos.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.util.*;
22 import java.text.*;
23
24 public class Altos {
25         /* EEProm command letters */
26         static final int AO_LOG_FLIGHT = 'F';
27         static final int AO_LOG_SENSOR = 'A';
28         static final int AO_LOG_TEMP_VOLT = 'T';
29         static final int AO_LOG_DEPLOY = 'D';
30         static final int AO_LOG_STATE = 'S';
31         static final int AO_LOG_GPS_TIME = 'G';
32         static final int AO_LOG_GPS_LAT = 'N';
33         static final int AO_LOG_GPS_LON = 'W';
34         static final int AO_LOG_GPS_ALT = 'H';
35         static final int AO_LOG_GPS_SAT = 'V';
36         static final int AO_LOG_GPS_DATE = 'Y';
37
38         /* Added for header fields in eeprom files */
39         static final int AO_LOG_CONFIG_VERSION = 1000;
40         static final int AO_LOG_MAIN_DEPLOY = 1001;
41         static final int AO_LOG_APOGEE_DELAY = 1002;
42         static final int AO_LOG_RADIO_CHANNEL = 1003;
43         static final int AO_LOG_CALLSIGN = 1004;
44         static final int AO_LOG_ACCEL_CAL = 1005;
45         static final int AO_LOG_RADIO_CAL = 1006;
46         static final int AO_LOG_MANUFACTURER = 1007;
47         static final int AO_LOG_PRODUCT = 1008;
48         static final int AO_LOG_SERIAL_NUMBER = 1009;
49         static final int AO_LOG_SOFTWARE_VERSION = 1010;
50
51         /* Added to flag invalid records */
52         static final int AO_LOG_INVALID = -1;
53
54         /* Flight state numbers and names */
55         static final int ao_flight_startup = 0;
56         static final int ao_flight_idle = 1;
57         static final int ao_flight_pad = 2;
58         static final int ao_flight_boost = 3;
59         static final int ao_flight_fast = 4;
60         static final int ao_flight_coast = 5;
61         static final int ao_flight_drogue = 6;
62         static final int ao_flight_main = 7;
63         static final int ao_flight_landed = 8;
64         static final int ao_flight_invalid = 9;
65
66         static HashMap<String,Integer>  string_to_state = new HashMap<String,Integer>();
67
68         static boolean map_initialized = false;
69
70         static final int tab_elt_pad = 5;
71
72         static final Font label_font = new Font("Dialog", Font.PLAIN, 22);
73         static final Font value_font = new Font("Monospaced", Font.PLAIN, 22);
74         static final Font status_font = new Font("SansSerif", Font.BOLD, 24);
75
76         static final int text_width = 16;
77
78         static void initialize_map()
79         {
80                 string_to_state.put("startup", ao_flight_startup);
81                 string_to_state.put("idle", ao_flight_idle);
82                 string_to_state.put("pad", ao_flight_pad);
83                 string_to_state.put("boost", ao_flight_boost);
84                 string_to_state.put("fast", ao_flight_fast);
85                 string_to_state.put("coast", ao_flight_coast);
86                 string_to_state.put("drogue", ao_flight_drogue);
87                 string_to_state.put("main", ao_flight_main);
88                 string_to_state.put("landed", ao_flight_landed);
89                 string_to_state.put("invalid", ao_flight_invalid);
90                 map_initialized = true;
91         }
92
93         static String[] state_to_string = {
94                 "startup",
95                 "idle",
96                 "pad",
97                 "boost",
98                 "fast",
99                 "coast",
100                 "drogue",
101                 "main",
102                 "landed",
103                 "invalid",
104         };
105
106         static public int state(String state) {
107                 if (!map_initialized)
108                         initialize_map();
109                 if (string_to_state.containsKey(state))
110                         return string_to_state.get(state);
111                 return ao_flight_invalid;
112         }
113
114         static public String state_name(int state) {
115                 if (state < 0 || state_to_string.length <= state)
116                         return "invalid";
117                 return state_to_string[state];
118         }
119
120         static final int AO_GPS_VALID = (1 << 4);
121         static final int AO_GPS_RUNNING = (1 << 5);
122         static final int AO_GPS_DATE_VALID = (1 << 6);
123         static final int AO_GPS_NUM_SAT_SHIFT = 0;
124         static final int AO_GPS_NUM_SAT_MASK = 0xf;
125
126         static boolean isspace(int c) {
127                 switch (c) {
128                 case ' ':
129                 case '\t':
130                         return true;
131                 }
132                 return false;
133         }
134
135         static boolean ishex(int c) {
136                 if ('0' <= c && c <= '9')
137                         return true;
138                 if ('a' <= c && c <= 'f')
139                         return true;
140                 if ('A' <= c && c <= 'F')
141                         return true;
142                 return false;
143         }
144
145         static boolean ishex(String s) {
146                 for (int i = 0; i < s.length(); i++)
147                         if (!ishex(s.charAt(i)))
148                                 return false;
149                 return true;
150         }
151
152         static int fromhex(int c) {
153                 if ('0' <= c && c <= '9')
154                         return c - '0';
155                 if ('a' <= c && c <= 'f')
156                         return c - 'a' + 10;
157                 if ('A' <= c && c <= 'F')
158                         return c - 'A' + 10;
159                 return -1;
160         }
161
162         static int fromhex(String s) throws NumberFormatException {
163                 int c, v = 0;
164                 for (int i = 0; i < s.length(); i++) {
165                         c = s.charAt(i);
166                         if (!ishex(c)) {
167                                 if (i == 0)
168                                         throw new NumberFormatException(String.format("invalid hex \"%s\"", s));
169                                 return v;
170                         }
171                         v = v * 16 + fromhex(c);
172                 }
173                 return v;
174         }
175
176         static boolean isdec(int c) {
177                 if ('0' <= c && c <= '9')
178                         return true;
179                 return false;
180         }
181
182         static boolean isdec(String s) {
183                 for (int i = 0; i < s.length(); i++)
184                         if (!isdec(s.charAt(i)))
185                                 return false;
186                 return true;
187         }
188
189         static int fromdec(int c) {
190                 if ('0' <= c && c <= '9')
191                         return c - '0';
192                 return -1;
193         }
194
195         static int fromdec(String s) throws NumberFormatException {
196                 int c, v = 0;
197                 int sign = 1;
198                 for (int i = 0; i < s.length(); i++) {
199                         c = s.charAt(i);
200                         if (i == 0 && c == '-') {
201                                 sign = -1;
202                         } else if (!isdec(c)) {
203                                 if (i == 0)
204                                         throw new NumberFormatException(String.format("invalid number \"%s\"", s));
205                                 return v;
206                         } else
207                                 v = v * 10 + fromdec(c);
208                 }
209                 return v * sign;
210         }
211
212         static String replace_extension(String input, String extension) {
213                 int dot = input.lastIndexOf(".");
214                 if (dot > 0)
215                         input = input.substring(0,dot);
216                 return input.concat(extension);
217         }
218 }