2 * Copyright © 2010 Keith Packard <keithp@keithp.com>
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; version 2 of the License.
8 * This program is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
18 package org.altusmetrum.telegps;
22 import org.altusmetrum.altoslib_7.*;
23 import org.altusmetrum.altosuilib_7.*;
25 public class TeleGPSStatus extends JComponent implements AltosFlightDisplay {
32 void show(AltosState state, AltosListenerState listener_state) {}
39 label.setFont(AltosUILib.status_font);
40 value.setFont(AltosUILib.status_font);
43 void setVisible(boolean visible) {
44 label.setVisible(visible);
45 value.setVisible(visible);
48 public Value (GridBagLayout layout, int x, String text) {
49 GridBagConstraints c = new GridBagConstraints();
50 c.insets = new Insets(5, 5, 5, 5);
51 c.anchor = GridBagConstraints.CENTER;
52 c.fill = GridBagConstraints.BOTH;
56 label = new JLabel(text);
57 label.setFont(AltosUILib.status_font);
58 label.setHorizontalAlignment(SwingConstants.CENTER);
59 c.gridx = x; c.gridy = 0;
60 layout.setConstraints(label, c);
63 value = new JTextField("");
64 value.setEditable(false);
65 value.setFont(AltosUILib.status_font);
66 value.setHorizontalAlignment(SwingConstants.CENTER);
67 c.gridx = x; c.gridy = 1;
68 layout.setConstraints(value, c);
73 class Call extends Value {
76 void show(AltosState state, AltosListenerState listener_state) {
77 if (state.callsign != call) {
78 value.setText(state.callsign);
79 call = state.callsign;
81 if (state.callsign == null)
92 public Call (GridBagLayout layout, int x) {
93 super (layout, x, "Callsign");
99 class Serial extends Value {
101 void show(AltosState state, AltosListenerState listener_state) {
102 if (state.serial != serial) {
103 if (state.serial == AltosLib.MISSING)
104 value.setText("none");
106 value.setText(String.format("%d", state.serial));
107 serial = state.serial;
111 public void reset() {
116 public Serial (GridBagLayout layout, int x) {
117 super (layout, x, "Serial");
123 class Flight extends Value {
125 int last_flight = -1;
127 void show(AltosState state, AltosListenerState listener_state) {
128 if (state.flight != last_flight) {
129 if (state.flight == AltosLib.MISSING)
130 value.setText("none");
132 value.setText(String.format("%d", state.flight));
133 last_flight = state.flight;
137 public void reset() {
142 public Flight (GridBagLayout layout, int x) {
143 super (layout, x, "Flight");
149 class RSSI extends Value {
152 void show(AltosState state, AltosListenerState listener_state) {
153 int new_rssi = state.rssi();
155 if (new_rssi != rssi) {
156 value.setText(String.format("%d", new_rssi));
157 if (state.rssi == AltosLib.MISSING)
165 public void reset() {
170 public RSSI (GridBagLayout layout, int x) {
171 super (layout, x, "RSSI");
177 class LastPacket extends Value {
181 void show(AltosState state, AltosListenerState listener_state) {
182 if (listener_state.running) {
183 long secs = (System.currentTimeMillis() - state.received_time + 500) / 1000;
185 if (secs != last_secs) {
186 value.setText(String.format("%d", secs));
190 value.setText("done");
203 public LastPacket(GridBagLayout layout, int x) {
204 super (layout, x, "Age");
208 LastPacket last_packet;
210 public void disable_receive() {
211 last_packet.disable();
214 public void reset () {
222 public void font_size_changed(int font_size) {
227 last_packet.set_font();
230 public void units_changed(boolean imperial_units) {
233 public void show (AltosState state, AltosListenerState listener_state) {
234 call.show(state, listener_state);
235 serial.show(state, listener_state);
236 flight.show(state, listener_state);
237 rssi.show(state, listener_state);
238 last_packet.show(state, listener_state);
239 if (!listener_state.running)
243 public int height() {
244 Dimension d = layout.preferredLayoutSize(this);
248 TeleGPSStatusUpdate status_update;
249 javax.swing.Timer timer;
251 public void start(TeleGPSStatusUpdate status_update) {
252 this.status_update = status_update;
253 timer = new javax.swing.Timer(100, status_update);
264 public TeleGPSStatus() {
265 layout = new GridBagLayout();
269 call = new Call(layout, 0);
270 serial = new Serial(layout, 1);
271 flight = new Flight(layout, 2);
272 rssi = new RSSI(layout, 4);
273 last_packet = new LastPacket(layout, 5);