9b47211dc10fd3821f167df37ab42bb4a001fe01
[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                 if (flight_series.gps_series != null) {
50                         for (AltosGPSTimeValue gtv : flight_series.gps_series) {
51                                 gtv_last = gtv;
52                                 AltosGPS gps = gtv.gps;
53                                 if (gps != null &&
54                                     gps.locked &&
55                                     gps.nsat >= 4) {
56                                         if (map == null)
57                                                 map = new AltosUIMap();
58                                         map.show(gps, (int) flight_series.value_before(AltosFlightSeries.state_name, gtv.time));
59                                         this.gps = gps;
60                                         has_gps = true;
61                                 }
62                         }
63                 }
64                 if (gtv_last != null) {
65                         int state = (int) flight_series.value_after(AltosFlightSeries.state_name, gtv_last.time);
66                         if (state == AltosLib.ao_flight_landed)
67                                 map.show(gtv_last.gps, state);
68                 }
69         }
70
71         public void font_size_changed(int font_size) {
72                 if (map != null)
73                         map.font_size_changed(font_size);
74                 if (statsTable != null)
75                         statsTable.font_size_changed(font_size);
76         }
77
78         public void units_changed(boolean imperial_units) {
79                 if (map != null)
80                         map.units_changed(imperial_units);
81                 if (enable != null)
82                         enable.units_changed(imperial_units);
83         }
84
85         AltosGraphUI(AltosRecordSet set, File file) throws InterruptedException, IOException {
86                 super(file.getName());
87                 AltosCalData    cal_data = set.cal_data();
88
89
90                 pane = new JTabbedPane();
91
92                 enable = new AltosUIEnable();
93
94                 AltosUIFlightSeries flight_series = new AltosUIFlightSeries(cal_data);
95
96                 set.capture_series(flight_series);
97
98                 flight_series.finish();
99
100                 stats = new AltosFlightStats(flight_series);
101
102                 graph = new AltosGraphNew(enable, stats, flight_series);
103
104                 statsTable = new AltosFlightStatsTable(stats);
105
106                 pane.add("Flight Graph", graph.panel);
107                 pane.add("Configure Graph", enable);
108                 pane.add("Flight Statistics", statsTable);
109
110                 has_gps = false;
111                 fill_map(flight_series);
112                 if (has_gps)
113                         pane.add("Map", map);
114
115                 setContentPane (pane);
116
117                 AltosUIPreferences.register_font_listener(this);
118                 AltosPreferences.register_units_listener(this);
119
120                 addWindowListener(new WindowAdapter() {
121                                 @Override
122                                 public void windowClosing(WindowEvent e) {
123                                         AltosUIPreferences.unregister_font_listener(AltosGraphUI.this);
124                                         AltosPreferences.unregister_units_listener(AltosGraphUI.this);
125                                 }
126                         });
127                 pack();
128
129                 setVisible(true);
130                 if (gps != null)
131                         map.centre(gps);
132         }
133 }