altoslib: Add support for MicroPeak v2 eeprom format
[fw/altos] / altoslib / AltosDataListener.java
1 /*
2  * Copyright © 2017 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, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  */
14
15 package org.altusmetrum.altoslib_13;
16
17 public abstract class AltosDataListener {
18
19         private AltosCalData    cal_data = null;
20
21         public double           time = AltosLib.MISSING;
22         public double           frequency = AltosLib.MISSING;
23
24         public int              raw_tick = AltosLib.MISSING;
25
26         public int tick() {
27                 return raw_tick;
28         }
29
30         public void set_tick(int tick) {
31                 raw_tick = tick;
32                 cal_data.set_tick(tick);
33                 set_time(cal_data.time());
34         }
35
36         public AltosCalData cal_data() {
37                 if (cal_data == null)
38                         cal_data = new AltosCalData();
39                 return cal_data;
40         }
41
42         public void set_time(double time) {
43                 if (time != AltosLib.MISSING)
44                         this.time = time;
45         }
46
47         public void set_serial(int serial) {
48                 cal_data().set_serial(serial);
49         }
50
51         public void set_device_type(int device_type) {
52                 cal_data().set_device_type(device_type);
53                 switch (device_type) {
54                 case AltosLib.product_telegps:
55                         set_state(AltosLib.ao_flight_stateless);
56                         break;
57                 }
58         }
59
60         public void set_log_format(int log_format) {
61                 cal_data().set_log_format(log_format);
62                 switch (log_format) {
63                 case AltosLib.AO_LOG_FORMAT_TELEGPS:
64                         set_state(AltosLib.ao_flight_stateless);
65                         break;
66                 }
67         }
68
69         public double time() {
70                 return time;
71         }
72
73         public void set_state(int state) {
74                 cal_data().set_state(state);
75         }
76
77         public int state() {
78                 return cal_data().state;
79         }
80
81         public void set_flight(int flight) {
82                 cal_data().set_flight(flight);
83         }
84
85         public void set_frequency(double frequency) {
86                 this.frequency = frequency;
87         }
88
89         public void set_avoid_duplicate_files() {
90         }
91
92         /* Called after all records are captured */
93         public void finish() {
94         }
95
96         public void init() {
97                 set_state(AltosLib.ao_flight_invalid);
98                 time = AltosLib.MISSING;
99                 frequency = AltosLib.MISSING;
100         }
101
102         public abstract void set_rssi(int rssi, int status);
103         public abstract void set_received_time(long received_time);
104
105         public abstract void set_acceleration(double accel);
106         public abstract void set_pressure(double pa);
107         public abstract void set_thrust(double N);
108
109         public abstract void set_kalman(double height, double speed, double accel);
110
111         public abstract void set_temperature(double deg_c);
112         public abstract void set_battery_voltage(double volts);
113
114         public abstract void set_apogee_voltage(double volts);
115         public abstract void set_main_voltage(double volts);
116
117         public void set_gps(AltosGPS gps) {
118                 AltosCalData cal_data = cal_data();
119                 cal_data.set_cal_gps(gps);
120         }
121
122         public AltosGPS make_temp_gps(boolean sats) {
123                 return cal_data().make_temp_cal_gps(tick(), sats);
124         }
125
126         public AltosGPS temp_gps() {
127                 return cal_data().temp_cal_gps();
128         }
129
130         public abstract void set_orient(double orient);
131         public abstract void set_gyro(double roll, double pitch, double yaw);
132         public abstract void set_accel_ground(double along, double across, double through);
133         public abstract void set_accel(double along, double across, double through);
134         public abstract void set_mag(double along, double across, double through);
135         public abstract void set_pyro_voltage(double volts);
136         public abstract void set_igniter_voltage(double[] voltage);
137         public abstract void set_pyro_fired(int pyro_mask);
138         public abstract void set_companion(AltosCompanion companion);
139
140         public AltosDataListener() {
141         }
142
143         public AltosDataListener(AltosCalData cal_data) {
144                 this.cal_data = cal_data;
145         }
146 }