use value_font for values
[fw/altos] / ao-tools / altosui / AltosTelemetryIterable.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.io.*;
21 import java.util.*;
22 import java.text.*;
23 import altosui.AltosTelemetry;
24
25 public class AltosTelemetryIterable extends AltosRecordIterable {
26         LinkedList<AltosRecord> records;
27
28         public Iterator<AltosRecord> iterator () {
29                 return records.iterator();
30         }
31
32         public AltosTelemetryIterable (FileInputStream input) {
33                 boolean saw_boost = false;
34                 int     current_tick = 0;
35                 int     boost_tick = 0;
36
37                 records = new LinkedList<AltosRecord> ();
38
39                 try {
40                         for (;;) {
41                                 String line = AltosRecord.gets(input);
42                                 if (line == null) {
43                                         break;
44                                 }
45                                 try {
46                                         AltosTelemetry record = new AltosTelemetry(line);
47                                         if (record == null)
48                                                 break;
49                                         if (records.isEmpty()) {
50                                                 current_tick = record.tick;
51                                         } else {
52                                                 int tick = record.tick | (current_tick & ~ 0xffff);
53                                                 if (tick < current_tick - 0x1000)
54                                                         tick += 0x10000;
55                                                 current_tick = tick;
56                                                 record.tick = current_tick;
57                                         }
58                                         if (!saw_boost && record.state >= Altos.ao_flight_boost)
59                                         {
60                                                 saw_boost = true;
61                                                 boost_tick = record.tick;
62                                         }
63                                         records.add(record);
64                                 } catch (ParseException pe) {
65                                         System.out.printf("parse exception %s\n", pe.getMessage());
66                                 } catch (AltosCRCException ce) {
67                                         System.out.printf("crc error\n");
68                                 }
69                         }
70                 } catch (IOException io) {
71                         System.out.printf("io exception\n");
72                 }
73
74                 /* adjust all tick counts to be relative to boost time */
75                 for (AltosRecord r : this)
76                         r.time = (r.tick - boost_tick) / 100.0;
77
78                 try {
79                         input.close();
80                 } catch (IOException ie) {
81                 }
82         }
83 }