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 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
|
package tim.prune.save;
import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.io.File;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JProgressBar;
import tim.prune.I18nManager;
import tim.prune.config.Config;
import tim.prune.data.Track;
import tim.prune.fileutils.FileList;
import tim.prune.gui.map.MapSource;
import tim.prune.gui.map.MapSourceLibrary;
import tim.prune.threedee.ImageDefinition;
/**
* Dialog to let you choose the parameters for a base image
* (source and zoom) including preview
*/
public class BaseImageConfigDialog implements Runnable
{
/** Parent to notify */
private final BaseImageConsumer _parent;
/** Parent dialog for position */
private final JDialog _parentDialog;
/** Track to use for preview image */
private final Track _track;
/** Config object */
private final Config _config;
/** Dialog to show */
private final JDialog _dialog;
/** Checkbox for using an image or not */
private JCheckBox _useImageCheckbox = null;
/** Panel to hold the other controls */
private JPanel _mainPanel = null;
/** Dropdown for map source */
private JComboBox<String> _mapSourceDropdown = null;
/** Dropdown for zoom levels */
private JComboBox<String> _zoomDropdown = null;
/** Button to trigger a download of the missing map tiles */
private JButton _downloadTilesButton = null;
/** Progress bar for downloading additional tiles */
private JProgressBar _progressBar = null;
/** Label for number of tiles found */
private JLabel _tilesFoundLabel = null;
/** Label for image size in pixels */
private JLabel _imageSizeLabel = null;
/** Image preview panel */
private ImagePreviewPanel _previewPanel = null;
/** Grouter, used to avoid regenerating images */
private final MapGrouter _grouter = new MapGrouter();
/** OK button, needs to be enabled/disabled */
private JButton _okButton = null;
/** Flag for rebuilding dialog, don't bother refreshing and recalculating */
private boolean _rebuilding = false;
/** Cached values to allow cancellation of dialog */
private ImageDefinition _imageDef = new ImageDefinition();
/**
* Constructor
* @param inParent parent object to notify on completion of dialog
* @param inParentDialog parent dialog
* @param inTrack track object
* @param inConfig config object
*/
public BaseImageConfigDialog(BaseImageConsumer inParent, JDialog inParentDialog,
Track inTrack, Config inConfig)
{
_parent = inParent;
_parentDialog = inParentDialog;
_dialog = new JDialog(inParentDialog, I18nManager.getText("dialog.baseimage.title"), true);
_dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
_dialog.getContentPane().add(makeDialogComponents());
_dialog.pack();
_track = inTrack;
_config = inConfig;
}
/**
* @param inDefinition image definition object from previous dialog
*/
public void setImageDefinition(ImageDefinition inDefinition)
{
_imageDef = inDefinition;
if (_imageDef == null) {
_imageDef = new ImageDefinition();
}
}
/**
* Begin the function
*/
public void begin() {
begin(false);
}
/**
* Begin the function specifying a default image yes/no value
*/
public void begin(boolean inImageYes)
{
initDialog();
_dialog.setLocationRelativeTo(_parentDialog);
if (inImageYes)
{
_useImageCheckbox.setSelected(true);
refreshDialog();
}
_dialog.setVisible(true);
}
/**
* Initialise the dialog from the cached values
*/
private void initDialog()
{
_rebuilding = true;
_useImageCheckbox.setSelected(_imageDef.getUseImage());
// Populate the dropdown of map sources from the library in case it has changed
_mapSourceDropdown.removeAllItems();
for (int i=0; i<MapSourceLibrary.getNumSources(); i++)
{
_mapSourceDropdown.addItem(MapSourceLibrary.getSource(i).getName());
}
int sourceIndex = _imageDef.getSourceIndex();
if (sourceIndex < 0 || sourceIndex >= _mapSourceDropdown.getItemCount()) {
sourceIndex = 0;
}
_mapSourceDropdown.setSelectedIndex(sourceIndex);
// Zoom level
int zoomLevel = _imageDef.getZoom();
if (_imageDef.getUseImage())
{
for (int i=0; i<_zoomDropdown.getItemCount(); i++)
{
String item = _zoomDropdown.getItemAt(i);
try {
if (Integer.parseInt(item) == zoomLevel)
{
_zoomDropdown.setSelectedIndex(i);
break;
}
}
catch (NumberFormatException ignored) {}
}
}
_rebuilding = false;
refreshDialog();
}
/**
* Update the visibility of the controls, and update the zoom dropdown based on the selected map source
*/
private void refreshDialog()
{
_mainPanel.setVisible(_useImageCheckbox.isSelected());
// Exit if we're in the middle of something
if (_rebuilding) {return;}
int currentZoom = 0;
try {
currentZoom = Integer.parseInt(_zoomDropdown.getSelectedItem().toString());
}
catch (Exception nfe) {}
// First time in, the dropdown might be empty but we still might have a zoom in the definition
if (_zoomDropdown.getItemCount() == 0) {
currentZoom = _imageDef.getZoom();
}
int zoomToSelect = -1;
_rebuilding = true;
_zoomDropdown.removeAllItems();
if (_useImageCheckbox.isSelected() && _mapSourceDropdown.getItemCount() > 0)
{
int currentSource = _mapSourceDropdown.getSelectedIndex();
for (int i=5; i<19; i++)
{
// How many pixels does this give?
if (ImageSizeLimits.isZoomLevelOk(_track, i)
&& isZoomAvailable(i, MapSourceLibrary.getSource(currentSource)))
{
_zoomDropdown.addItem("" + i);
if (i == currentZoom) {
zoomToSelect = _zoomDropdown.getItemCount() - 1;
}
}
}
}
_zoomDropdown.setSelectedIndex(zoomToSelect);
_rebuilding = false;
_okButton.setEnabled(!_useImageCheckbox.isSelected() ||
(_zoomDropdown.getItemCount() > 0 && _zoomDropdown.getSelectedIndex() >= 0));
updateImagePreview();
}
/**
* @return true if it should be possible to use an image, false if no disk cache or cache empty
*/
public boolean isImagePossible()
{
String path = _config.getConfigString(Config.KEY_DISK_CACHE);
if (path != null && !path.equals(""))
{
File cacheDir = new File(path);
if (cacheDir.exists() && cacheDir.isDirectory())
{
// Check if there are any directories in the cache
for (File subdir : FileList.filesIn(cacheDir))
{
if (subdir.exists() && subdir.isDirectory()) {
return true;
}
}
}
}
return false;
}
/**
* See if the requested zoom level is available
* @param inZoom zoom level
* @param inSource selected map source
* @return true if there is a zoom directory for each of the source's layers
*/
private boolean isZoomAvailable(int inZoom, MapSource inSource)
{
if (inSource == null) {
return false;
}
String path = _config.getConfigString(Config.KEY_DISK_CACHE);
if (path == null || path.equals("")) {
return false;
}
File cacheDir = new File(path);
if (!cacheDir.exists() || !cacheDir.isDirectory()) {
return false;
}
// First layer
File layer0 = new File(cacheDir, inSource.getSiteName(0) + inZoom);
if (!layer0.exists() || !layer0.isDirectory() || !layer0.canRead()) {
return false;
}
// Second layer, if any
if (inSource.getNumLayers() > 1)
{
File layer1 = new File(cacheDir, inSource.getSiteName(1) + inZoom);
return layer1.exists() && layer1.isDirectory() && layer1.canRead();
}
// must be ok
return true;
}
/**
* @return image definition object
*/
public ImageDefinition getImageDefinition() {
return _imageDef;
}
/**
* Make the dialog components to select the options
* @return Component holding gui elements
*/
private Component makeDialogComponents()
{
JPanel panel = new JPanel();
panel.setLayout(new BorderLayout());
_useImageCheckbox = new JCheckBox(I18nManager.getText("dialog.baseimage.useimage"));
_useImageCheckbox.setBorder(BorderFactory.createEmptyBorder(4, 4, 6, 4));
_useImageCheckbox.setHorizontalAlignment(JLabel.CENTER);
_useImageCheckbox.addActionListener(e -> refreshDialog());
panel.add(_useImageCheckbox, BorderLayout.NORTH);
// Outer panel with the grid and the map preview
_mainPanel = new JPanel();
_mainPanel.setLayout(new BorderLayout(1, 10));
// Central stuff with labels and dropdowns
JPanel controlsPanel = new JPanel();
controlsPanel.setLayout(new GridLayout(0, 2, 10, 4));
// map source
JLabel sourceLabel = new JLabel(I18nManager.getText("dialog.baseimage.mapsource") + ": ");
sourceLabel.setHorizontalAlignment(JLabel.RIGHT);
controlsPanel.add(sourceLabel);
_mapSourceDropdown = new JComboBox<>();
_mapSourceDropdown.addItem("name of map source");
// Add listener to dropdown to change zoom levels
_mapSourceDropdown.addActionListener(e -> refreshDialog());
controlsPanel.add(_mapSourceDropdown);
// zoom level
JLabel zoomLabel = new JLabel(I18nManager.getText("dialog.baseimage.zoom") + ": ");
zoomLabel.setHorizontalAlignment(JLabel.RIGHT);
controlsPanel.add(zoomLabel);
_zoomDropdown = new JComboBox<>();
// Add action listener to enable ok button when zoom changed
_zoomDropdown.addActionListener(e -> {
if (_zoomDropdown.getSelectedIndex() >= 0) {
_okButton.setEnabled(true);
updateImagePreview();
}
});
controlsPanel.add(_zoomDropdown);
_mainPanel.add(controlsPanel, BorderLayout.NORTH);
JPanel imagePanel = new JPanel();
imagePanel.setLayout(new BorderLayout(10, 1));
// image preview
_previewPanel = new ImagePreviewPanel();
imagePanel.add(_previewPanel, BorderLayout.CENTER);
// Label panel on right
JPanel labelPanel = new JPanel();
labelPanel.setLayout(new BorderLayout());
JPanel downloadPanel = new JPanel();
downloadPanel.setLayout(new BorderLayout(4, 4));
_downloadTilesButton = new JButton(I18nManager.getText("button.load"));
_downloadTilesButton.addActionListener(e -> downloadRemainingTiles());
_downloadTilesButton.setVisible(false);
downloadPanel.add(_downloadTilesButton, BorderLayout.NORTH);
_progressBar = new JProgressBar();
_progressBar.setIndeterminate(true);
_progressBar.setVisible(false);
downloadPanel.add(_progressBar, BorderLayout.SOUTH);
labelPanel.add(downloadPanel, BorderLayout.NORTH);
JPanel labelGridPanel = new JPanel();
labelGridPanel.setLayout(new GridLayout(0, 2, 10, 4));
labelGridPanel.add(new JLabel(I18nManager.getText("dialog.baseimage.tiles") + ": "));
_tilesFoundLabel = new JLabel("11 / 11");
labelGridPanel.add(_tilesFoundLabel);
labelGridPanel.add(new JLabel(I18nManager.getText("dialog.baseimage.size") + ": "));
_imageSizeLabel = new JLabel("1430");
labelGridPanel.add(_imageSizeLabel);
labelGridPanel.add(new JLabel(" ")); // just for spacing
labelPanel.add(labelGridPanel, BorderLayout.SOUTH);
imagePanel.add(labelPanel, BorderLayout.EAST);
_mainPanel.add(imagePanel, BorderLayout.CENTER);
panel.add(_mainPanel, BorderLayout.CENTER);
// OK, Cancel buttons
JPanel buttonPanel = new JPanel();
buttonPanel.setLayout(new FlowLayout(FlowLayout.RIGHT));
_okButton = new JButton(I18nManager.getText("button.ok"));
_okButton.addActionListener(e -> okPressed());
buttonPanel.add(_okButton);
JButton cancelButton = new JButton(I18nManager.getText("button.cancel"));
cancelButton.addActionListener(e -> _dialog.dispose());
buttonPanel.add(cancelButton);
panel.add(buttonPanel, BorderLayout.SOUTH);
// Listener to close dialog if escape pressed
KeyAdapter closer = new KeyAdapter() {
public void keyReleased(KeyEvent e)
{
if (e.getKeyCode() == KeyEvent.VK_ESCAPE) {
_dialog.dispose();
}
}
};
_useImageCheckbox.addKeyListener(closer);
_mapSourceDropdown.addKeyListener(closer);
_zoomDropdown.addKeyListener(closer);
_okButton.addKeyListener(closer);
cancelButton.addKeyListener(closer);
return panel;
}
/**
* React to OK button being pressed
*/
private void okPressed()
{
// Check values, maybe don't want to exit
if (!_useImageCheckbox.isSelected()
|| (_mapSourceDropdown.getSelectedIndex() >= 0 && _zoomDropdown.getSelectedIndex() >= 0))
{
storeValues();
_dialog.dispose();
}
}
/**
* Use the selected settings to make a preview image and (asynchronously) update the preview panel
*/
private void updateImagePreview()
{
// Clear labels
_downloadTilesButton.setVisible(false);
_tilesFoundLabel.setText("");
_imageSizeLabel.setText("");
if (_useImageCheckbox.isSelected() && _mapSourceDropdown.getSelectedIndex() >= 0
&& _zoomDropdown.getItemCount() > 0 && _zoomDropdown.getSelectedIndex() >= 0)
{
_previewPanel.startLoading();
// Launch a separate thread to create an image and pass it to the preview panel
new Thread(this).start();
}
else {
// clear preview
_previewPanel.setImage(null);
}
}
/**
* Store the selected details in the variables
*/
private void storeValues()
{
// Store values of controls in variables
_imageDef.setUseImage(_useImageCheckbox.isSelected(),
_mapSourceDropdown.getSelectedIndex(),
getSelectedZoomLevel());
// Inform parent that details have changed
_parent.baseImageChanged();
}
/**
* Run method for separate thread. Uses the current dialog parameters
* to trigger a call to the Grouter, and pass the image to the preview panel
*/
public void run()
{
// Remember the current dropdown indices, so we know whether they've changed or not
final int mapIndex = _mapSourceDropdown.getSelectedIndex();
final int zoomIndex = _zoomDropdown.getSelectedIndex();
if (!_useImageCheckbox.isSelected() || mapIndex < 0 || zoomIndex < 0) {
return;
}
// Get the map source from the index
MapSource mapSource = MapSourceLibrary.getSource(mapIndex);
// Use the Grouter to create an image (slow, blocks thread)
GroutedImage groutedImage = _grouter.createMapImage(_track, mapSource, getSelectedZoomLevel(), _config);
// If the dialog hasn't changed, pass the generated image to the preview panel
if (_useImageCheckbox.isSelected()
&& _mapSourceDropdown.getSelectedIndex() == mapIndex
&& _zoomDropdown.getSelectedIndex() == zoomIndex
&& groutedImage != null)
{
_previewPanel.setImage(groutedImage);
final int numTilesRemaining = groutedImage.getNumTilesTotal() - groutedImage.getNumTilesUsed();
final boolean offerDownload = numTilesRemaining > 0 && numTilesRemaining < 100
&& _config.getConfigBoolean(Config.KEY_ONLINE_MODE);
// Set values of labels
_downloadTilesButton.setVisible(offerDownload);
_downloadTilesButton.setEnabled(offerDownload);
_tilesFoundLabel.setText(groutedImage.getNumTilesUsed() + " / " + groutedImage.getNumTilesTotal());
if (groutedImage.getImageSize() > 0) {
_imageSizeLabel.setText("" + groutedImage.getImageSize());
}
else {
_imageSizeLabel.setText("");
}
}
else
{
_previewPanel.setImage(null);
// Clear labels
_downloadTilesButton.setVisible(false);
_tilesFoundLabel.setText("");
_imageSizeLabel.setText("");
}
}
/**
* @return zoom level selected in the dropdown
*/
private int getSelectedZoomLevel()
{
int zoomLevel = 0;
try {
zoomLevel = Integer.parseInt(_zoomDropdown.getSelectedItem().toString());
}
catch (NullPointerException ignored) {}
catch (Exception e) {
System.err.println("Exception: " + e.getClass().getName() + " : " + e.getMessage());
}
return zoomLevel;
}
/**
* @return true if any map data has been found for the image
*/
public boolean getFoundData()
{
return _imageDef.getUseImage() && _imageDef.getZoom() > 0
&& _previewPanel != null && _previewPanel.getTilesFound();
}
/**
* @return true if selected zoom is valid for the current track (based only on pixel size)
*/
public boolean isSelectedZoomValid() {
return ImageSizeLimits.isZoomLevelOk(_track, _imageDef.getZoom());
}
/**
* @return the map grouter for retrieval of generated image
*/
public MapGrouter getGrouter() {
return _grouter;
}
/**
* method triggered by "download" button, to asynchronously download the missing tiles
*/
private void downloadRemainingTiles()
{
_downloadTilesButton.setEnabled(false);
new Thread(() -> {
_progressBar.setVisible(true);
// Use a grouter to get all tiles from the TileManager, including downloading
MapGrouter grouter = new MapGrouter();
final int mapIndex = _mapSourceDropdown.getSelectedIndex();
if (!_useImageCheckbox.isSelected() || mapIndex < 0) {
return;
}
MapSource mapSource = MapSourceLibrary.getSource(mapIndex);
grouter.createMapImage(_track, mapSource, getSelectedZoomLevel(), true, _config);
_progressBar.setVisible(false);
// And then refresh the dialog
_grouter.clearMapImage();
updateImagePreview();
}).start();
}
}
|