diff options
Diffstat (limited to 'ao-tools/altosui/AltosTelemetryReader.java')
| -rw-r--r-- | ao-tools/altosui/AltosTelemetryReader.java | 25 | 
1 files changed, 15 insertions, 10 deletions
diff --git a/ao-tools/altosui/AltosTelemetryReader.java b/ao-tools/altosui/AltosTelemetryReader.java index f1f6788c..a3402f9c 100644 --- a/ao-tools/altosui/AltosTelemetryReader.java +++ b/ao-tools/altosui/AltosTelemetryReader.java @@ -47,20 +47,25 @@ public class AltosTelemetryReader extends AltosReader {  		try {  			for (;;) {  				String line = AltosRecord.gets(input); -				if (line == null) +				if (line == null) {  					break; -				AltosTelemetry record = new AltosTelemetry(line); -				if (record == null) -					break; -				if (!saw_boost && record.state >= Altos.ao_flight_boost) -				{ -					saw_boost = true; -					boost_tick = record.tick;  				} -				records.add(record); +				try { +					AltosTelemetry record = new AltosTelemetry(line); +					if (record == null) +						break; +					if (!saw_boost && record.state >= Altos.ao_flight_boost) +					{ +						saw_boost = true; +						boost_tick = record.tick; +					} +					records.add(record); +				} catch (ParseException pe) { +					System.out.printf("parse exception %s\n", pe.getMessage()); +				}  			}  		} catch (IOException io) { -		} catch (ParseException pe) { +			System.out.printf("io exception\n");  		}  		record_iterator = records.iterator();  		try {  | 
