altoslib: Hide 'state' member and use accessor function
[fw/altos] / altosuilib / AltosDisplayThread.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 org.altusmetrum.altosuilib_8;
19
20 import java.awt.*;
21 import javax.swing.*;
22 import java.io.*;
23 import java.text.*;
24 import org.altusmetrum.altoslib_8.*;
25
26 public class AltosDisplayThread extends Thread {
27
28         Frame                   parent;
29         IdleThread              idle_thread;
30         AltosVoice              voice;
31         AltosFlightReader       reader;
32         AltosState              old_state, state;
33         AltosListenerState      listener_state;
34         AltosFlightDisplay      display;
35
36         synchronized void show_safely() {
37                 final AltosState my_state = state;
38                 final AltosListenerState my_listener_state = listener_state;
39                 Runnable r = new Runnable() {
40                                 public void run() {
41                                         try {
42                                                 display.show(my_state, my_listener_state);
43                                         } catch (Exception ex) {
44                                         }
45                                 }
46                         };
47                 SwingUtilities.invokeLater(r);
48         }
49
50         void reading_error_internal() {
51                 JOptionPane.showMessageDialog(parent,
52                                               String.format("Error reading from \"%s\"", reader.name),
53                                               "Telemetry Read Error",
54                                               JOptionPane.ERROR_MESSAGE);
55         }
56
57         void reading_error_safely() {
58                 Runnable r = new Runnable() {
59                                 public void run() {
60                                         try {
61                                                 reading_error_internal();
62                                         } catch (Exception ex) {
63                                         }
64                                 }
65                         };
66                 SwingUtilities.invokeLater(r);
67         }
68
69         class IdleThread extends Thread {
70
71                 boolean started;
72                 int     reported_landing;
73                 int     report_interval;
74                 long    report_time;
75
76                 public synchronized void report(boolean last) {
77                         if (state == null)
78                                 return;
79
80                         /* reset the landing count once we hear about a new flight */
81                         if (state.state() < AltosLib.ao_flight_drogue)
82                                 reported_landing = 0;
83
84                         /* Shut up once the rocket is on the ground */
85                         if (reported_landing > 2) {
86                                 return;
87                         }
88
89                         /* If the rocket isn't on the pad, then report height */
90                         if (AltosLib.ao_flight_drogue <= state.state() &&
91                             state.state() < AltosLib.ao_flight_landed &&
92                             state.from_pad != null &&
93                             state.range >= 0)
94                         {
95                                 voice.speak("Height %s, bearing %s %d, elevation %d, range %s.\n",
96                                             AltosConvert.height.say(state.height()),
97                                             state.from_pad.bearing_words(
98                                                     AltosGreatCircle.BEARING_VOICE),
99                                             (int) (state.from_pad.bearing + 0.5),
100                                             (int) (state.elevation + 0.5),
101                                             AltosConvert.distance.say(state.range));
102                         } else if (state.state() > AltosLib.ao_flight_pad && state.height() != AltosLib.MISSING) {
103                                 voice.speak(AltosConvert.height.say_units(state.height()));
104                         } else {
105                                 reported_landing = 0;
106                         }
107
108                         /* If the rocket is coming down, check to see if it has landed;
109                          * either we've got a landed report or we haven't heard from it in
110                          * a long time
111                          */
112                         if (state.state() != AltosLib.ao_flight_stateless &&
113                             state.state() >= AltosLib.ao_flight_drogue &&
114                             (last ||
115                              System.currentTimeMillis() - state.received_time >= 15000 ||
116                              state.state() == AltosLib.ao_flight_landed))
117                         {
118                                 if (Math.abs(state.speed()) < 20 && state.height() < 100)
119                                         voice.speak("rocket landed safely");
120                                 else
121                                         voice.speak("rocket may have crashed");
122                                 if (state.from_pad != null)
123                                         voice.speak("Bearing %d degrees, range %s.",
124                                                     (int) (state.from_pad.bearing + 0.5),
125                                                     AltosConvert.distance.say_units(state.from_pad.distance));
126                                 ++reported_landing;
127                         }
128                 }
129
130                 long now () {
131                         return System.currentTimeMillis();
132                 }
133
134                 void set_report_time() {
135                         report_time = now() + report_interval;
136                 }
137
138                 public void run () {
139                         try {
140                                 for (;;) {
141                                         if (reader.has_monitor_battery()) {
142                                                 listener_state.battery = reader.monitor_battery();
143                                                 show_safely();
144                                         }
145                                         set_report_time();
146                                         for (;;) {
147                                                 voice.drain();
148                                                 synchronized (this) {
149                                                         long    sleep_time = report_time - now();
150                                                         if (sleep_time <= 0)
151                                                                 break;
152                                                         wait(sleep_time);
153                                                 }
154                                         }
155
156                                         report(false);
157                                 }
158                         } catch (InterruptedException ie) {
159                                 try {
160                                         voice.drain();
161                                 } catch (InterruptedException iie) { }
162                         }
163                 }
164
165                 public synchronized void notice(boolean spoken) {
166                         if (old_state != null && old_state.state() != state.state()) {
167                                 report_time = now();
168                                 this.notify();
169                         } else if (spoken)
170                                 set_report_time();
171                 }
172
173                 public IdleThread() {
174                         reported_landing = 0;
175                         report_interval = 10000;
176                 }
177         }
178
179         synchronized boolean tell() {
180                 boolean ret = false;
181                 if (old_state == null || old_state.state() != state.state()) {
182                         if (state.state() != AltosLib.ao_flight_stateless)
183                                 voice.speak(state.state_name());
184                         if ((old_state == null || old_state.state() <= AltosLib.ao_flight_boost) &&
185                             state.state() > AltosLib.ao_flight_boost) {
186                                 if (state.max_speed() != AltosLib.MISSING)
187                                         voice.speak("max speed: %s.",
188                                                     AltosConvert.speed.say_units(state.max_speed() + 0.5));
189                                 ret = true;
190                         } else if ((old_state == null || old_state.state() < AltosLib.ao_flight_drogue) &&
191                                    state.state() >= AltosLib.ao_flight_drogue) {
192                                 if (state.max_height() != AltosLib.MISSING)
193                                         voice.speak("max height: %s.",
194                                                     AltosConvert.height.say_units(state.max_height() + 0.5));
195                                 ret = true;
196                         }
197                 }
198                 if (old_state == null || old_state.gps_ready != state.gps_ready) {
199                         if (state.gps_ready) {
200                                 voice.speak("GPS ready");
201                                 ret = true;
202                         }
203                         else if (old_state != null) {
204                                 voice.speak("GPS lost");
205                                 ret = true;
206                         }
207                 }
208                 old_state = state;
209                 return ret;
210         }
211
212         public void run() {
213                 boolean         interrupted = false;
214                 boolean         told;
215
216                 idle_thread = new IdleThread();
217                 idle_thread.start();
218
219                 try {
220                         for (;;) {
221                                 try {
222                                         state = reader.read();
223                                         if (state == null) {
224                                                 listener_state.running = false;
225                                                 break;
226                                         }
227                                         reader.update(state);
228                                         show_safely();
229                                         told = tell();
230                                         idle_thread.notice(told);
231                                 } catch (ParseException pp) {
232                                         System.out.printf("Parse error: %d \"%s\"\n", pp.getErrorOffset(), pp.getMessage());
233                                 } catch (AltosCRCException ce) {
234                                         ++listener_state.crc_errors;
235                                         show_safely();
236                                 }
237                         }
238                 } catch (InterruptedException ee) {
239                         interrupted = true;
240                 } catch (IOException ie) {
241                         reading_error_safely();
242                 } finally {
243                         if (!interrupted)
244                                 idle_thread.report(true);
245                         reader.close(interrupted);
246                         idle_thread.interrupt();
247                         try {
248                                 idle_thread.join();
249                         } catch (InterruptedException ie) {}
250                 }
251         }
252
253         public AltosDisplayThread(Frame in_parent, AltosVoice in_voice, AltosFlightDisplay in_display, AltosFlightReader in_reader) {
254                 listener_state = new AltosListenerState();
255                 parent = in_parent;
256                 voice = in_voice;
257                 display = in_display;
258                 reader = in_reader;
259                 display.reset();
260         }
261 }