altosui: Move AltosGreatCircle.java to altoslib
[fw/altos] / altosui / AltosFlightStats.java
index 2067951e8a844edb42461c1498b4efb018684211..22f3e479d71193d9dd57c4f7b4935ed7e1931679 100644 (file)
@@ -27,6 +27,7 @@ import java.util.*;
 import java.text.*;
 import java.util.prefs.*;
 import java.util.concurrent.*;
+import org.altusmetrum.AltosLib.*;
 
 public class AltosFlightStats {
        double          max_height;
@@ -47,7 +48,7 @@ public class AltosFlightStats {
                AltosState      state = null;
                AltosState      new_state = null;
                double          boost_time = -1;
-               double          start_time;
+               double          end_time = 0;
 
                year = month = day = -1;
                hour = minute = second = -1;
@@ -62,9 +63,7 @@ public class AltosFlightStats {
                                if ((record.seen & AltosRecord.seen_flight) != 0 && flight < 0)
                                        flight = record.flight;
                                new_state = new AltosState(record, state);
-                               if (state == null) {
-                                       start_time = new_state.time;
-                               }
+                               end_time = new_state.time;
                                state = new_state;
                                if (0 <= state.state && state.state < Altos.ao_flight_invalid) {
                                        if (state.state >= Altos.ao_flight_boost) {
@@ -107,6 +106,10 @@ public class AltosFlightStats {
                                state_baro_speed[s] /= state_count[s];
                                state_accel[s] /= state_count[s];
                        }
+                       if (state_start[s] == 0)
+                               state_start[s] = end_time;
+                       if (state_end[s] == 0)
+                               state_end[s] = end_time;
                }
        }