altosui: Add progress bar for eeprom downloading status
[fw/altos] / ao-tools / altosui / AltosEepromMonitor.java
1 /*
2  * Copyright © 2010 Keith Packard <keithp@keithp.com>
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; version 2 of the License.
7  *
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.
12  *
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.
16  */
17
18 package altosui;
19
20 import java.awt.*;
21 import java.awt.event.*;
22 import javax.swing.*;
23 import javax.swing.filechooser.FileNameExtensionFilter;
24 import javax.swing.table.*;
25 import java.io.*;
26 import java.util.*;
27 import java.text.*;
28 import java.util.prefs.*;
29 import java.util.concurrent.LinkedBlockingQueue;
30
31 import altosui.AltosSerial;
32 import altosui.AltosSerialMonitor;
33 import altosui.AltosTelemetry;
34 import altosui.AltosState;
35 import altosui.AltosDeviceDialog;
36 import altosui.AltosPreferences;
37 import altosui.AltosLog;
38 import altosui.AltosVoice;
39
40 public class AltosEepromMonitor extends JDialog {
41
42         JPanel          panel;
43         Box             box;
44         JLabel          serial_label;
45         JLabel          flight_label;
46         JLabel          file_label;
47         JProgressBar    pbar;
48         int             min_state, max_state;
49
50         public AltosEepromMonitor(JFrame owner, int in_min_state, int in_max_state) {
51                 super (owner, "Download Flight Data");
52
53                 box = Box.createVerticalBox();
54
55                 serial_label = new JLabel("Serial:");
56                 box.add(serial_label);
57                 flight_label = new JLabel("Flight:");
58                 box.add(flight_label);
59                 file_label = new JLabel("File:");
60                 box.add(file_label);
61
62                 min_state = in_min_state;
63                 max_state = in_max_state;
64                 pbar = new JProgressBar();
65                 pbar.setMinimum(0);
66                 pbar.setMaximum((max_state - min_state) * 100);
67                 pbar.setValue(0);
68                 pbar.setString("startup");
69                 pbar.setStringPainted(true);
70                 box.add(pbar);
71
72                 panel = new JPanel();
73                 panel.add(box);
74
75                 add(panel);
76
77                 setMinimumSize(new Dimension(600, 0));
78                 setContentPane(panel);
79                 pack();
80                 setVisible(true);
81         }
82
83         public void set_value(String state_name, int in_state, int in_block) {
84                 int block = in_block;
85                 int state = in_state;
86
87                 if (block > 100)
88                         block = 100;
89                 if (state < min_state) state = min_state;
90                 if (state >= max_state) state = max_state - 1;
91                 state -= min_state;
92
93                 int pos = state * 100 + block;
94
95                 System.out.printf ("State %s (%d + %d) = %d\n",
96                                    state_name, in_state, in_block, pos);
97
98                 pbar.setString(state_name);
99                 pbar.setValue(pos);
100         }
101
102         public void set_serial(int serial) {
103                 serial_label.setText(String.format("Serial: %d", serial));
104         }
105
106         public void set_flight(int flight) {
107                 flight_label.setText(String.format("Flight: %d", flight));
108         }
109
110         public void set_file(String file) {
111                 file_label.setText(String.format("File: %s", file));
112         }
113
114         public void done() {
115                 setVisible(false);
116                 dispose();
117         }
118 }