1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
|
/*
* Copyright © 2012 Keith Packard <keithp@keithp.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
package altosui;
import java.text.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import org.altusmetrum.altoslib_14.*;
import org.altusmetrum.altosuilib_14.*;
public class AltosConfigPyroUI
extends AltosUIDialog
implements ItemListener, DocumentListener, AltosUnitsListener, ActionListener
{
AltosConfigFCUI owner;
Container pane;
static Insets il = new Insets(4,4,4,4);
static Insets ir = new Insets(4,4,4,4);
static String[] state_names;
static void make_state_names() {
if (state_names == null) {
state_names = new String[AltosLib.ao_flight_landed - AltosLib.ao_flight_boost + 1];
for (int state = AltosLib.ao_flight_boost; state <= AltosLib.ao_flight_landed; state++)
state_names[state - AltosLib.ao_flight_boost] = AltosLib.state_name_capital(state);
}
}
class PyroItem implements ItemListener, DocumentListener, AltosUnitsListener
{
public int flag;
public JCheckBox enable;
public JTextField value;
public JComboBox<String> combo;
AltosConfigPyroUI ui;
boolean setting;
public void set_enable(boolean enable) {
if (value != null)
value.setEnabled(enable);
if (combo != null)
combo.setEnabled(enable);
}
public void itemStateChanged(ItemEvent e) {
set_enable(enable.isSelected());
if (!setting)
ui.set_dirty();
}
public void changedUpdate(DocumentEvent e) {
if (!setting)
ui.set_dirty();
}
public void insertUpdate(DocumentEvent e) {
if (!setting)
ui.set_dirty();
}
public void removeUpdate(DocumentEvent e) {
if (!setting)
ui.set_dirty();
}
public void units_changed(boolean imperial_units) {
AltosUnits units = AltosPyro.pyro_to_units(flag);
if (units != null) {
try {
double v = units.parse_locale(value.getText(), !imperial_units);
set(enabled(), v);
} catch (ParseException pe) {
set(enabled(), 0.0);
}
}
}
public void set(boolean new_enable, double new_value) {
setting = true;
enable.setSelected(new_enable);
set_enable(new_enable);
if (value != null) {
double scale = AltosPyro.pyro_to_scale(flag);
double unit_value = new_value;
AltosUnits units = AltosPyro.pyro_to_units(flag);
if (units != null)
unit_value = units.parse_value(new_value);
String format;
if (scale >= 100)
format = "%6.2f";
else if (scale >= 10)
format = "%6.1f";
else
format = "%6.0f";
value.setText(String.format(format, unit_value));
}
if (combo != null)
if (new_value >= AltosLib.ao_flight_boost && new_value <= AltosLib.ao_flight_landed)
combo.setSelectedIndex((int) new_value - AltosLib.ao_flight_boost);
setting = false;
}
public boolean enabled() {
return enable.isSelected();
}
public double value() throws AltosConfigDataException {
if (value != null) {
AltosUnits units = AltosPyro.pyro_to_units(flag);
try {
if (units != null)
return units.parse_locale(value.getText());
return AltosParse.parse_double_locale(value.getText());
} catch (ParseException e) {
throw new AltosConfigDataException("\"%s\": %s\n", value.getText(), e.getMessage());
}
}
if (combo != null)
return combo.getSelectedIndex() + AltosLib.ao_flight_boost;
return 0;
}
public PyroItem(AltosConfigPyroUI in_ui, int in_flag, int x, int y) {
ui = in_ui;
flag = in_flag;
GridBagConstraints c;
c = new GridBagConstraints();
c.gridx = x; c.gridy = y;
c.gridwidth = 1;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
enable = new JCheckBox();
enable.addItemListener(this);
pane.add(enable, c);
if ((flag & AltosPyro.pyro_no_value) == 0) {
c = new GridBagConstraints();
c.gridx = x+1; c.gridy = y;
c.gridwidth = 1;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
if ((flag & AltosPyro.pyro_state_value) != 0) {
make_state_names();
combo = new JComboBox<String>(state_names);
combo.addItemListener(this);
pane.add(combo, c);
} else {
value = new JTextField(10);
value.getDocument().addDocumentListener(this);
pane.add(value, c);
}
}
}
}
class PyroColumn implements AltosUnitsListener {
public PyroItem[] items;
public JLabel label;
int channel;
public void set(AltosPyro pyro) {
int row = 0;
if ((pyro.flags & AltosPyro.pyro_deprecate) != 0) {
JOptionPane.showMessageDialog(owner,
String.format("Pyro settings “Ascending” and “Descending” are deprecated.\n" +
"Clearing %s configuration.", AltosLib.igniter_name(pyro.channel)),
"Deprecated Pyro Settings",
JOptionPane.ERROR_MESSAGE);
pyro.flags = 0;
owner.set_dirty();
}
for (int flag = 1; flag < AltosPyro.pyro_all; flag <<= 1) {
if ((AltosPyro.pyro_all_useful & flag) != 0) {
items[row].set((pyro.flags & flag) != 0,
pyro.get_value(flag));
row++;
}
}
}
public AltosPyro get() throws AltosConfigDataException {
AltosPyro p = new AltosPyro(channel);
int row = 0;
for (int flag = 1; flag < AltosPyro.pyro_all; flag <<= 1) {
if ((AltosPyro.pyro_all_useful & flag) != 0) {
if (items[row].enabled()) {
try {
p.flags |= flag;
p.set_value(flag, items[row].value());
} catch (AltosConfigDataException ae) {
throw new AltosConfigDataException("%s, %s",
AltosPyro.pyro_to_name(flag),
ae.getMessage());
}
}
row++;
}
}
return p;
}
public void units_changed(boolean imperial_units) {
int row = 0;
for (int flag = 1; flag < AltosPyro.pyro_all; flag <<= 1) {
if ((AltosPyro.pyro_all_useful & flag) != 0) {
items[row].units_changed(imperial_units);
row++;
}
}
}
public PyroColumn(AltosConfigPyroUI ui, int x, int y, int in_channel) {
channel = in_channel;
int nrow = 0;
for (int flag = 1; flag < AltosPyro.pyro_all; flag <<= 1)
if ((flag & AltosPyro.pyro_all_useful) != 0)
nrow++;
items = new PyroItem[nrow];
int row = 0;
GridBagConstraints c;
c = new GridBagConstraints();
c.gridx = x; c.gridy = y;
c.gridwidth = 2;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.CENTER;
c.insets = il;
label = new JLabel(String.format("Pyro Channel %c", 'A' + channel));
pane.add(label, c);
y++;
for (int flag = 1; flag < AltosPyro.pyro_all; flag <<= 1)
if ((flag & AltosPyro.pyro_all_useful) != 0) {
items[row] = new PyroItem(ui, flag, x, y + row);
row++;
}
}
}
PyroColumn[] columns;
JLabel[] labels;
public void set_pyros(AltosPyro[] pyros) {
for (int i = 0; i < pyros.length; i++) {
if (pyros[i].channel < columns.length)
columns[pyros[i].channel].set(pyros[i]);
}
}
public AltosPyro[] get_pyros() throws AltosConfigDataException {
AltosPyro[] pyros = new AltosPyro[columns.length];
for (int c = 0; c < columns.length; c++) {
try {
pyros[c] = columns[c].get();
} catch (AltosConfigDataException ae) {
throw new AltosConfigDataException ("Channel %c, %s", c + 'A', ae.getMessage());
}
}
return pyros;
}
JLabel pyro_firing_time_label;
JComboBox<String> pyro_firing_time_value;
static String[] pyro_firing_time_values = {
"0.050", "0.100", "0.250", "0.500", "1.0", "2.0"
};
boolean initializing;
public void set_pyro_firing_time(double new_pyro_firing_time) {
initializing = true;
pyro_firing_time_value.setSelectedItem(Double.toString(new_pyro_firing_time));
pyro_firing_time_value.setEnabled(new_pyro_firing_time >= 0);
initializing = false;
}
public double get_pyro_firing_time() throws AltosConfigDataException {
String v = pyro_firing_time_value.getSelectedItem().toString();
try {
return AltosParse.parse_double_locale(v);
} catch (ParseException e) {
throw new AltosConfigDataException("Invalid pyro firing time \"%s\"", v);
}
}
public void set_dirty() {
if (!initializing)
owner.set_dirty();
}
public void itemStateChanged(ItemEvent e) {
if (!initializing)
owner.set_dirty();
}
public void changedUpdate(DocumentEvent e) {
if (!initializing)
owner.set_dirty();
}
public void insertUpdate(DocumentEvent e) {
if (!initializing)
owner.set_dirty();
}
public void removeUpdate(DocumentEvent e) {
if (!initializing)
owner.set_dirty();
}
public void units_changed(boolean imperial_units) {
for (int c = 0; c < columns.length; c++)
columns[c].units_changed(imperial_units);
int r = 0;
for (int flag = 1; flag <= AltosPyro.pyro_all; flag <<= 1) {
if ((flag & AltosPyro.pyro_all_useful) != 0) {
String n = AltosPyro.pyro_to_name(flag);
if (n != null) {
labels[r].setText(n);
r++;
}
}
}
}
/* A window listener to catch closing events and tell the config code */
class ConfigListener extends WindowAdapter {
AltosConfigPyroUI ui;
AltosConfigFCUI owner;
public ConfigListener(AltosConfigPyroUI this_ui, AltosConfigFCUI this_owner) {
ui = this_ui;
owner = this_owner;
}
public void windowClosing(WindowEvent e) {
ui.setVisible(false);
}
}
/* Listen for events from our buttons */
public void actionPerformed(ActionEvent e) {
String cmd = e.getActionCommand();
if (cmd.equals("Close"))
setVisible(false);
}
public AltosConfigPyroUI(AltosConfigFCUI in_owner, AltosPyro[] pyros, double pyro_firing_time) {
super(in_owner, "Configure Pyro Channels", false);
owner = in_owner;
GridBagConstraints c;
pane = getScrollablePane();
pane.setLayout(new GridBagLayout());
int nrow = 0;
for (int flag = 1; flag < AltosPyro.pyro_all; flag <<= 1)
if ((flag & AltosPyro.pyro_all_useful) != 0)
nrow++;
labels = new JLabel[nrow];
int row = 1;
for (int flag = 1; flag <= AltosPyro.pyro_all; flag <<= 1) {
String n;
if ((flag & AltosPyro.pyro_all_useful) != 0) {
n = AltosPyro.pyro_to_name(flag);
if (n != null) {
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 1;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
JLabel label = new JLabel(n);
pane.add(label, c);
labels[row-1] = label;
row++;
}
}
}
columns = new PyroColumn[pyros.length];
for (int i = 0; i < pyros.length; i++) {
columns[i] = new PyroColumn(this, i*2 + 1, 0, i);
columns[i].set(pyros[i]);
}
/* Pyro firing time */
c = new GridBagConstraints();
c.gridx = 0; c.gridy = row;
c.gridwidth = 2;
c.fill = GridBagConstraints.NONE;
c.anchor = GridBagConstraints.LINE_START;
c.insets = il;
c.ipady = 5;
pyro_firing_time_label = new JLabel("Pyro Firing Time(s):");
pane.add(pyro_firing_time_label, c);
c = new GridBagConstraints();
c.gridx = 2; c.gridy = row;
c.gridwidth = 7;
c.fill = GridBagConstraints.HORIZONTAL;
c.weightx = 1;
c.anchor = GridBagConstraints.LINE_START;
c.insets = ir;
c.ipady = 5;
pyro_firing_time_value = new JComboBox<String>(pyro_firing_time_values);
pyro_firing_time_value.setEditable(true);
pyro_firing_time_value.addItemListener(this);
set_pyro_firing_time(pyro_firing_time);
pane.add(pyro_firing_time_value, c);
pyro_firing_time_value.setToolTipText("Length of extra pyro channel firing pulse");
c = new GridBagConstraints();
c.gridx = pyros.length*2-1;
c.fill = GridBagConstraints.HORIZONTAL;
c.gridwidth = 2;
c.gridy = 1000;
JButton close = new JButton("Close");
pane.add(close, c);
close.addActionListener(this);
close.setActionCommand("Close");
addWindowListener(new ConfigListener(this, owner));
AltosPreferences.register_units_listener(this);
}
public void dispose() {
AltosPreferences.unregister_units_listener(this);
super.dispose();
}
public void make_visible() {
pack();
setVisible(true);
}
}
|