altoslib: Clean up GPS DOP support in AltosState
[fw/altos] / altoslib / AltosEepromGPS.java
1 /*
2  * Copyright © 2014 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 org.altusmetrum.altoslib_5;
19
20 import java.io.*;
21 import java.util.*;
22 import java.text.*;
23
24 public class AltosEepromGPS extends AltosEeprom {
25         public static final int record_length = 32;
26
27         public static final int max_sat = 12;
28
29         public int record_length() { return record_length; }
30
31         /* AO_LOG_FLIGHT elements */
32         public int flight() { return data16(0); }
33         public int start_altitude() { return data16(2); }
34         public int start_latitude() { return data32(4); }
35         public int start_longitude() { return data32(8); }
36
37         /* AO_LOG_GPS_TIME elements */
38         public int latitude() { return data32(0); }
39         public int longitude() { return data32(4); }
40         public int altitude() { return data16(8); }
41         public int hour() { return data8(10); }
42         public int minute() { return data8(11); }
43         public int second() { return data8(12); }
44         public int flags() { return data8(13); }
45         public int year() { return data8(14); }
46         public int month() { return data8(15); }
47         public int day() { return data8(16); }
48         public int course() { return data8(17); }
49         public int ground_speed() { return data16(18); }
50         public int climb_rate() { return data16(20); }
51         public int pdop() { return data8(22); }
52         public int hdop() { return data8(23); }
53         public int vdop() { return data8(24); }
54         public int mode() { return data8(25); }
55
56         public boolean has_seconds() { return cmd == AltosLib.AO_LOG_GPS_TIME; }
57
58         public int seconds() {
59                 switch (cmd) {
60                 case AltosLib.AO_LOG_GPS_TIME:
61                         return second() + 60 * (minute() + 60 * (hour() + 24 * (day() + 31 * month())));
62                 default:
63                         return 0;
64                 }
65         }
66
67         public AltosEepromGPS (AltosEepromChunk chunk, int start) throws ParseException {
68                 parse_chunk(chunk, start);
69         }
70
71         public void update_state(AltosState state) {
72                 super.update_state(state);
73
74                 AltosGPS        gps;
75
76                 /* Flush any pending GPS changes */
77                 if (state.gps_pending) {
78                         switch (cmd) {
79                         case AltosLib.AO_LOG_GPS_LAT:
80                         case AltosLib.AO_LOG_GPS_LON:
81                         case AltosLib.AO_LOG_GPS_ALT:
82                         case AltosLib.AO_LOG_GPS_SAT:
83                         case AltosLib.AO_LOG_GPS_DATE:
84                                 break;
85                         default:
86                                 state.set_temp_gps();
87                                 break;
88                         }
89                 }
90
91                 switch (cmd) {
92                 case AltosLib.AO_LOG_FLIGHT:
93                         state.set_boost_tick(tick);
94                         state.set_flight(flight());
95                         /* no place to log start lat/lon yet */
96                         break;
97                 case AltosLib.AO_LOG_GPS_TIME:
98                         state.set_tick(tick);
99                         gps = state.make_temp_gps(false);
100                         gps.lat = latitude() / 1e7;
101                         gps.lon = longitude() / 1e7;
102                         gps.alt = altitude();
103
104                         gps.hour = hour();
105                         gps.minute = minute();
106                         gps.second = second();
107
108                         int flags = flags();
109
110                         gps.connected = (flags & AltosLib.AO_GPS_RUNNING) != 0;
111                         gps.locked = (flags & AltosLib.AO_GPS_VALID) != 0;
112                         gps.nsat = (flags & AltosLib.AO_GPS_NUM_SAT_MASK) >>
113                                 AltosLib.AO_GPS_NUM_SAT_SHIFT;
114
115                         gps.year = 2000 + year();
116                         gps.month = month();
117                         gps.day = day();
118                         gps.ground_speed = ground_speed() * 1.0e-2;
119                         gps.course = course() * 2;
120                         gps.climb_rate = climb_rate() * 1.0e-2;
121                         if (state.compare_version("1.4.9") >= 0) {
122                                 gps.pdop = pdop() / 10.0;
123                                 gps.hdop = hdop() / 10.0;
124                                 gps.vdop = vdop() / 10.0;
125                         } else {
126                                 gps.pdop = pdop() / 100.0;
127                                 if (gps.pdop < 0.8)
128                                         gps.pdop += 2.56;
129                                 gps.hdop = hdop() / 100.0;
130                                 if (gps.hdop < 0.8)
131                                         gps.hdop += 2.56;
132                                 gps.vdop = vdop() / 100.0;
133                                 if (gps.vdop < 0.8)
134                                         gps.vdop += 2.56;
135                         }
136                         break;
137                 }
138         }
139
140         public AltosEepromGPS (String line) {
141                 parse_string(line);
142         }
143
144         static public LinkedList<AltosEeprom> read(FileInputStream input) {
145                 LinkedList<AltosEeprom> tgpss = new LinkedList<AltosEeprom>();
146
147                 for (;;) {
148                         try {
149                                 String line = AltosLib.gets(input);
150                                 if (line == null)
151                                         break;
152                                 try {
153                                         AltosEepromGPS tgps = new AltosEepromGPS(line);
154                                         if (tgps.cmd != AltosLib.AO_LOG_INVALID)
155                                                 tgpss.add(tgps);
156                                 } catch (Exception e) {
157                                         System.out.printf ("exception\n");
158                                 }
159                         } catch (IOException ie) {
160                                 break;
161                         }
162                 }
163
164                 return tgpss;
165         }
166 }