altoslib: Make sure AltosFlightSeries is filled in before use
[fw/altos] / altosui / AltosGraphUI.java
1 /*
2  * Copyright © 2010 Anthony Towns
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; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 package altosui;
20
21 import java.io.*;
22 import java.util.ArrayList;
23
24 import java.awt.*;
25 import java.awt.event.*;
26 import javax.swing.*;
27 import org.altusmetrum.altoslib_11.*;
28 import org.altusmetrum.altosuilib_11.*;
29
30 import org.jfree.chart.ChartPanel;
31 import org.jfree.chart.JFreeChart;
32 import org.jfree.ui.RefineryUtilities;
33
34 public class AltosGraphUI extends AltosUIFrame implements AltosFontListener, AltosUnitsListener
35 {
36         JTabbedPane             pane;
37         AltosGraphNew           graph;
38         AltosUIEnable           enable;
39         AltosUIMap              map;
40         AltosFlightStats        stats;
41         AltosFlightStatsTable   statsTable;
42         AltosGPS                gps;
43         boolean                 has_gps;
44
45         void fill_map(AltosFlightSeries flight_series) {
46                 boolean                 any_gps = false;
47                 AltosGPSTimeValue       gtv_last = null;
48
49                 for (AltosGPSTimeValue gtv : flight_series.gps_series) {
50                         gtv_last = gtv;
51                         AltosGPS gps = gtv.gps;
52                         if (gps != null &&
53                             gps.locked &&
54                             gps.nsat >= 4) {
55                                 if (map == null)
56                                         map = new AltosUIMap();
57                                 map.show(gps, (int) flight_series.value_before(AltosFlightSeries.state_name, gtv.time));
58                                 this.gps = gps;
59                                 has_gps = true;
60                         }
61                 }
62                 if (gtv_last != null) {
63                         int state = (int) flight_series.value_after(AltosFlightSeries.state_name, gtv_last.time);
64                         if (state == AltosLib.ao_flight_landed)
65                                 map.show(gtv_last.gps, state);
66                 }
67         }
68
69         public void font_size_changed(int font_size) {
70                 if (map != null)
71                         map.font_size_changed(font_size);
72                 if (statsTable != null)
73                         statsTable.font_size_changed(font_size);
74         }
75
76         public void units_changed(boolean imperial_units) {
77                 if (map != null)
78                         map.units_changed(imperial_units);
79                 if (enable != null)
80                         enable.units_changed(imperial_units);
81         }
82
83         AltosGraphUI(AltosRecordSet set, File file) throws InterruptedException, IOException {
84                 super(file.getName());
85                 AltosCalData    cal_data = set.cal_data();
86
87
88                 pane = new JTabbedPane();
89
90                 enable = new AltosUIEnable();
91
92                 AltosUIFlightSeries flight_series = new AltosUIFlightSeries(cal_data);
93
94                 set.capture_series(flight_series);
95
96                 flight_series.finish();
97
98                 stats = new AltosFlightStats(flight_series);
99
100                 graph = new AltosGraphNew(enable, stats, flight_series, cal_data);
101
102                 statsTable = new AltosFlightStatsTable(stats);
103
104                 pane.add("Flight Graph", graph.panel);
105                 pane.add("Configure Graph", enable);
106                 pane.add("Flight Statistics", statsTable);
107
108                 has_gps = false;
109                 fill_map(flight_series);
110                 if (has_gps)
111                         pane.add("Map", map);
112
113                 setContentPane (pane);
114
115                 AltosUIPreferences.register_font_listener(this);
116                 AltosPreferences.register_units_listener(this);
117
118                 addWindowListener(new WindowAdapter() {
119                                 @Override
120                                 public void windowClosing(WindowEvent e) {
121                                         AltosUIPreferences.unregister_font_listener(AltosGraphUI.this);
122                                         AltosPreferences.unregister_units_listener(AltosGraphUI.this);
123                                 }
124                         });
125                 pack();
126
127                 setVisible(true);
128                 if (gps != null)
129                         map.centre(gps);
130         }
131 }