2 * Copyright © 2010 Keith Packard <keithp@keithp.com>
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.
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.
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.
24 public class AltosTelemetryIterable extends AltosRecordIterable {
25 LinkedList<AltosRecord> records;
27 public Iterator<AltosRecord> iterator () {
28 return records.iterator();
31 public AltosTelemetryIterable (FileInputStream input) {
32 boolean saw_boost = false;
36 records = new LinkedList<AltosRecord> ();
40 String line = AltosRecord.gets(input);
45 AltosTelemetry record = new AltosTelemetry(line);
48 if (records.isEmpty()) {
49 current_tick = record.tick;
51 int tick = record.tick | (current_tick & ~ 0xffff);
52 if (tick < current_tick - 0x1000)
55 record.tick = current_tick;
57 if (!saw_boost && record.state >= Altos.ao_flight_boost)
60 boost_tick = record.tick;
63 } catch (ParseException pe) {
64 System.out.printf("parse exception %s\n", pe.getMessage());
65 } catch (AltosCRCException ce) {
66 System.out.printf("crc error\n");
69 } catch (IOException io) {
70 System.out.printf("io exception\n");
73 /* adjust all tick counts to be relative to boost time */
74 for (AltosRecord r : this)
75 r.time = (r.tick - boost_tick) / 100.0;
79 } catch (IOException ie) {