altos: Add -Wshadow to CFLAGS
[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_13.*;
28 import org.altusmetrum.altosuilib_13.*;
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, AltosFilterListener
35 {
36         JTabbedPane             pane;
37         AltosGraph              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                                 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                                         gtv_last = gtv;
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         AltosUIFlightSeries flight_series;
86
87         public void filter_changed(double speed_filter, double accel_filter) {
88                 flight_series.set_filter(speed_filter, accel_filter);
89                 graph.filter_changed();
90                 stats = new AltosFlightStats(flight_series);
91                 statsTable.filter_changed(stats);
92         }
93
94         public double speed_filter() {
95                 return flight_series.speed_filter_width;
96         }
97
98         public double accel_filter() {
99                 return flight_series.accel_filter_width;
100         }
101
102         AltosGraphUI(AltosRecordSet set, File file) throws InterruptedException, IOException {
103                 super(file.getName());
104                 AltosCalData    cal_data = set.cal_data();
105
106
107                 pane = new JTabbedPane();
108
109                 flight_series = new AltosUIFlightSeries(cal_data);
110
111                 enable = new AltosUIEnable(this);
112
113                 set.capture_series(flight_series);
114
115                 flight_series.finish();
116
117                 stats = new AltosFlightStats(flight_series);
118
119                 graph = new AltosGraph(enable, stats, flight_series);
120
121                 statsTable = new AltosFlightStatsTable(stats);
122
123                 pane.add("Flight Graph", graph.panel);
124                 pane.add("Configure Graph", enable);
125                 pane.add("Flight Statistics", statsTable);
126
127                 has_gps = false;
128                 fill_map(flight_series);
129                 if (has_gps)
130                         pane.add("Map", map);
131
132                 setContentPane (pane);
133
134                 AltosUIPreferences.register_font_listener(this);
135                 AltosPreferences.register_units_listener(this);
136
137                 addWindowListener(new WindowAdapter() {
138                                 @Override
139                                 public void windowClosing(WindowEvent e) {
140                                         AltosUIPreferences.unregister_font_listener(AltosGraphUI.this);
141                                         AltosPreferences.unregister_units_listener(AltosGraphUI.this);
142                                 }
143                         });
144                 pack();
145
146                 setVisible(true);
147                 if (gps != null)
148                         map.centre(gps);
149         }
150 }