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 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
|
package tim.prune;
import java.io.File;
import java.util.ArrayList;
import java.util.EmptyStackException;
import java.util.Set;
import java.util.Stack;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import tim.prune.config.Config;
import tim.prune.data.Checker;
import tim.prune.data.DataPoint;
import tim.prune.data.Field;
import tim.prune.data.LatLonRectangle;
import tim.prune.data.NumberUtils;
import tim.prune.data.Photo;
import tim.prune.data.PhotoList;
import tim.prune.data.PointCreateOptions;
import tim.prune.data.RecentFile;
import tim.prune.data.SourceInfo;
import tim.prune.data.Track;
import tim.prune.data.TrackInfo;
import tim.prune.data.SourceInfo.FILE_TYPE;
import tim.prune.data.Unit;
import tim.prune.function.AsyncMediaLoader;
import tim.prune.function.SaveConfig;
import tim.prune.function.SelectTracksFunction;
import tim.prune.function.browser.BrowserLauncher;
import tim.prune.function.browser.UrlGenerator;
import tim.prune.function.edit.FieldEditList;
import tim.prune.function.edit.PointEditor;
import tim.prune.gui.MenuManager;
import tim.prune.gui.SidebarController;
import tim.prune.gui.UndoManager;
import tim.prune.gui.Viewport;
import tim.prune.gui.colour.ColourerCaretaker;
import tim.prune.gui.colour.PointColourer;
import tim.prune.load.FileLoader;
import tim.prune.load.JpegLoader;
import tim.prune.load.MediaLinkInfo;
import tim.prune.load.TrackNameList;
import tim.prune.save.ExifSaver;
import tim.prune.save.FileSaver;
import tim.prune.tips.TipManager;
import tim.prune.undo.*;
/**
* Main controller for the application
*/
public class App
{
// Instance variables
private JFrame _frame = null;
private Track _track = null;
private TrackInfo _trackInfo = null;
private int _lastSavePosition = 0;
private MenuManager _menuManager = null;
private SidebarController _sidebarController = null;
private FileLoader _fileLoader = null;
private JpegLoader _jpegLoader = null;
private FileSaver _fileSaver = null;
private UndoStack _undoStack = null;
private ColourerCaretaker _colCaretaker = null;
private boolean _mangleTimestampsConfirmed = false;
private Viewport _viewport = null;
private ArrayList<File> _dataFiles = null;
private boolean _autoAppendNextFile = false;
private boolean _busyLoading = false;
private AppMode _appMode = AppMode.NORMAL;
/** Enum for the app mode - currently only two options but may expand later */
public enum AppMode {NORMAL, DRAWRECT};
/**
* Constructor
* @param inFrame frame object for application
*/
public App(JFrame inFrame)
{
_frame = inFrame;
_undoStack = new UndoStack();
_track = new Track();
_trackInfo = new TrackInfo(_track);
FunctionLibrary.initialise(this);
_colCaretaker = new ColourerCaretaker(this);
UpdateMessageBroker.addSubscriber(_colCaretaker);
_colCaretaker.setColourer(Config.getPointColourer());
}
/**
* @return the current TrackInfo
*/
public TrackInfo getTrackInfo()
{
return _trackInfo;
}
/**
* @return the dialog frame
*/
public JFrame getFrame()
{
return _frame;
}
/**
* Check if the application has unsaved data
* @return true if data is unsaved, false otherwise
*/
public boolean hasDataUnsaved()
{
return (_undoStack.size() > _lastSavePosition
&& (_track.getNumPoints() > 0 || _trackInfo.getPhotoList().hasModifiedMedia()));
}
/**
* @return the undo stack
*/
public Stack<UndoOperation> getUndoStack()
{
return _undoStack;
}
/**
* Update the system's point colourer using the one in the Config
*/
public void updatePointColourer()
{
if (_colCaretaker != null) {
_colCaretaker.setColourer(Config.getPointColourer());
}
}
/**
* @return colourer object, or null
*/
public PointColourer getPointColourer()
{
if (_colCaretaker == null) {return null;}
return _colCaretaker.getColourer();
}
/**
* Show the specified tip if appropriate
* @param inTipNumber tip number from TipManager
*/
public void showTip(int inTipNumber)
{
String key = TipManager.fireTipTrigger(inTipNumber);
if (key != null && !key.equals(""))
{
JOptionPane.showMessageDialog(_frame, I18nManager.getText(key),
I18nManager.getText("tip.title"), JOptionPane.INFORMATION_MESSAGE);
}
}
/**
* Load the specified data files one by one
* @param inDataFiles arraylist containing File objects to load
*/
public void loadDataFiles(ArrayList<File> inDataFiles)
{
if (inDataFiles == null || inDataFiles.size() == 0) {
_dataFiles = null;
}
else
{
_dataFiles = inDataFiles;
File f = _dataFiles.get(0);
_dataFiles.remove(0);
// Start load of specified file
if (_fileLoader == null)
_fileLoader = new FileLoader(this, _frame);
_autoAppendNextFile = false; // prompt for append
_fileLoader.openFile(f);
}
}
/**
* Complete a function execution
* @param inUndo undo object to be added to stack
* @param inConfirmText confirmation text
*/
public void completeFunction(UndoOperation inUndo, String inConfirmText)
{
_undoStack.add(inUndo);
UpdateMessageBroker.informSubscribers(inConfirmText);
setCurrentMode(AppMode.NORMAL);
}
/**
* Set the MenuManager object to be informed about changes
* @param inManager MenuManager object
*/
public void setMenuManager(MenuManager inManager)
{
_menuManager = inManager;
}
/**
* Open a file containing track or waypoint data
*/
public void openFile()
{
if (_fileLoader == null)
_fileLoader = new FileLoader(this, _frame);
_fileLoader.openFile();
}
/**
* Add a photo or a directory of photos
*/
public void addPhotos()
{
if (_jpegLoader == null)
_jpegLoader = new JpegLoader(this, _frame);
_jpegLoader.openDialog(new LatLonRectangle(_track.getLatRange(), _track.getLonRange()));
}
/**
* Save the file in the selected format
*/
public void saveFile()
{
if (_track == null) {
showErrorMessage("error.save.dialogtitle", "error.save.nodata");
}
else
{
if (_fileSaver == null) {
_fileSaver = new FileSaver(this, _frame);
}
char delim = ',';
if (_fileLoader != null) {delim = _fileLoader.getLastUsedDelimiter();}
_fileSaver.showDialog(delim);
}
}
/**
* Exit the application if confirmed
*/
public void exit()
{
// grab focus
_frame.toFront();
_frame.requestFocus();
// check if ok to exit
Object[] buttonTexts = {I18nManager.getText("button.exit"), I18nManager.getText("button.cancel")};
if (!hasDataUnsaved()
|| JOptionPane.showOptionDialog(_frame, I18nManager.getText("dialog.exit.confirm.text"),
I18nManager.getText("dialog.exit.confirm.title"), JOptionPane.YES_NO_OPTION,
JOptionPane.WARNING_MESSAGE, null, buttonTexts, buttonTexts[1])
== JOptionPane.YES_OPTION)
{
// save settings
if (Config.getConfigBoolean(Config.KEY_AUTOSAVE_SETTINGS)) {
new SaveConfig(this).silentSave();
}
System.exit(0);
}
}
/**
* Edit the currently selected point
*/
public void editCurrentPoint()
{
if (_track != null)
{
DataPoint currentPoint = _trackInfo.getCurrentPoint();
if (currentPoint != null)
{
// Open point dialog to display details
PointEditor editor = new PointEditor(this, _frame);
editor.showDialog(_track, currentPoint);
}
}
}
/**
* Complete the point edit
* @param inEditList field values to edit
* @param inUndoList field values before edit
*/
public void completePointEdit(FieldEditList inEditList, FieldEditList inUndoList)
{
DataPoint currentPoint = _trackInfo.getCurrentPoint();
if (inEditList != null && inEditList.getNumEdits() > 0 && currentPoint != null)
{
// add information to undo stack
UndoOperation undo = new UndoEditPoint(currentPoint, inUndoList);
// pass to track for completion
if (_track.editPoint(currentPoint, inEditList, false))
{
_undoStack.push(undo);
// Confirm point edit
UpdateMessageBroker.informSubscribers(I18nManager.getText("confirm.point.edit"));
}
}
}
/**
* Delete the currently selected point
*/
public void deleteCurrentPoint()
{
if (_track == null) {return;}
DataPoint currentPoint = _trackInfo.getCurrentPoint();
if (currentPoint != null)
{
// Check for photo
boolean deletePhoto = false;
Photo currentPhoto = currentPoint.getPhoto();
if (currentPhoto != null)
{
// Confirm deletion of photo or decoupling
int response = JOptionPane.showConfirmDialog(_frame,
I18nManager.getText("dialog.deletepoint.deletephoto") + " " + currentPhoto.getName(),
I18nManager.getText("dialog.deletepoint.title"),
JOptionPane.YES_NO_CANCEL_OPTION);
if (response == JOptionPane.CANCEL_OPTION || response == JOptionPane.CLOSED_OPTION)
{
// cancel pressed- abort delete
return;
}
if (response == JOptionPane.YES_OPTION) {deletePhoto = true;}
}
// store necessary information to undo it later
int pointIndex = _trackInfo.getSelection().getCurrentPointIndex();
int photoIndex = _trackInfo.getPhotoList().getPhotoIndex(currentPhoto);
int audioIndex = _trackInfo.getAudioList().getAudioIndex(currentPoint.getAudio());
DataPoint nextTrackPoint = _trackInfo.getTrack().getNextTrackPoint(pointIndex + 1);
// Construct Undo object
UndoDeletePoint undo = new UndoDeletePoint(pointIndex, currentPoint, photoIndex,
audioIndex, nextTrackPoint != null && nextTrackPoint.getSegmentStart());
undo.setAtBoundaryOfSelectedRange(pointIndex == _trackInfo.getSelection().getStart() ||
pointIndex == _trackInfo.getSelection().getEnd());
// call track to delete point
if (_trackInfo.deletePoint())
{
// Delete was successful so add undo info to stack
_undoStack.push(undo);
if (currentPhoto != null)
{
// delete photo if necessary
if (deletePhoto)
{
_trackInfo.getPhotoList().deletePhoto(photoIndex);
}
else
{
// decouple photo from point
currentPhoto.setDataPoint(null);
}
UpdateMessageBroker.informSubscribers(DataSubscriber.PHOTOS_MODIFIED);
}
// Delete audio object (without bothering to ask)
if (audioIndex > -1) {
_trackInfo.getAudioList().deleteAudio(audioIndex);
}
// Confirm
UpdateMessageBroker.informSubscribers(I18nManager.getText("confirm.deletepoint.single"));
UpdateMessageBroker.informSubscribers(DataSubscriber.DATA_ADDED_OR_REMOVED);
}
}
}
/**
* Finish the compression by deleting the marked points
*/
public void finishCompressTrack()
{
UndoDeleteMarked undo = new UndoDeleteMarked(_track);
// call track to do compress
int numPointsDeleted = _trackInfo.deleteMarkedPoints();
// add to undo stack if successful
if (numPointsDeleted > 0)
{
undo.setNumPointsDeleted(numPointsDeleted);
_undoStack.add(undo);
UpdateMessageBroker.informSubscribers("" + numPointsDeleted + " "
+ (numPointsDeleted==1?I18nManager.getText("confirm.deletepoint.single"):I18nManager.getText("confirm.deletepoint.multi")));
}
else {
showErrorMessage("function.compress", "dialog.deletemarked.nonefound");
}
}
/**
* Reverse the currently selected section of the track
*/
public void reverseRange()
{
// check whether Timestamp field exists, and if so confirm reversal
int selStart = _trackInfo.getSelection().getStart();
int selEnd = _trackInfo.getSelection().getEnd();
if (!_track.hasData(Field.TIMESTAMP, selStart, selEnd)
|| _mangleTimestampsConfirmed
|| (JOptionPane.showConfirmDialog(_frame,
I18nManager.getText("dialog.confirmreversetrack.text"),
I18nManager.getText("dialog.confirmreversetrack.title"),
JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION && (_mangleTimestampsConfirmed = true)))
{
UndoReverseSection undo = new UndoReverseSection(_track, selStart, selEnd);
// call track to reverse range
if (_track.reverseRange(selStart, selEnd))
{
_undoStack.add(undo);
// Confirm
UpdateMessageBroker.informSubscribers(I18nManager.getText("confirm.reverserange"));
}
}
}
/**
* Complete the add time offset function with the specified offset
* @param inTimeOffset time offset to add (+ve for add, -ve for subtract)
*/
public void finishAddTimeOffset(long inTimeOffset)
{
// Construct undo information
int selStart = _trackInfo.getSelection().getStart();
int selEnd = _trackInfo.getSelection().getEnd();
UndoAddTimeOffset undo = new UndoAddTimeOffset(selStart, selEnd, inTimeOffset);
if (_trackInfo.getTrack().addTimeOffset(selStart, selEnd, inTimeOffset, false))
{
_undoStack.add(undo);
UpdateMessageBroker.informSubscribers(DataSubscriber.DATA_EDITED);
UpdateMessageBroker.informSubscribers(I18nManager.getText("confirm.addtimeoffset"));
}
}
/**
* Complete the add altitude offset function with the specified offset
* @param inOffset altitude offset to add as String
* @param inUnit altitude units of offset (eg Feet, Metres)
*/
public void finishAddAltitudeOffset(String inOffset, Unit inUnit)
{
// Sanity check
if (inOffset == null || inOffset.equals("") || inUnit == null) {
return;
}
// Construct undo information
UndoAddAltitudeOffset undo = new UndoAddAltitudeOffset(_trackInfo);
int selStart = _trackInfo.getSelection().getStart();
int selEnd = _trackInfo.getSelection().getEnd();
// How many decimal places are given in the offset?
int numDecimals = NumberUtils.getDecimalPlaces(inOffset);
boolean success = false;
// Decimal offset given
try {
double offsetd = Double.parseDouble(inOffset);
success = _trackInfo.getTrack().addAltitudeOffset(selStart, selEnd, offsetd, inUnit, numDecimals);
}
catch (NumberFormatException nfe) {}
if (success)
{
_undoStack.add(undo);
_trackInfo.getSelection().markInvalid();
UpdateMessageBroker.informSubscribers(DataSubscriber.DATA_EDITED);
UpdateMessageBroker.informSubscribers(I18nManager.getText("confirm.addaltitudeoffset"));
}
}
/**
* Merge the track segments within the current selection
*/
public void mergeTrackSegments()
{
if (_trackInfo.getSelection().hasRangeSelected())
{
// Maybe could check segment start flags to see if it's worth merging
// If first track point is already start and no other seg starts then do nothing
int selStart = _trackInfo.getSelection().getStart();
int selEnd = _trackInfo.getSelection().getEnd();
// Make undo object
UndoMergeTrackSegments undo = new UndoMergeTrackSegments(_track, selStart, selEnd);
// Call track to merge segments
if (_trackInfo.mergeTrackSegments(selStart, selEnd)) {
_undoStack.add(undo);
UpdateMessageBroker.informSubscribers(I18nManager.getText("confirm.mergetracksegments"));
}
}
}
/**
* Average the selected points
*/
public void averageSelection()
{
// Find following track point
DataPoint nextPoint = _track.getNextTrackPoint(_trackInfo.getSelection().getEnd() + 1);
boolean segFlag = false;
if (nextPoint != null) {segFlag = nextPoint.getSegmentStart();}
UndoInsert undo = new UndoInsert(_trackInfo.getSelection().getEnd() + 1, 1, nextPoint != null, segFlag);
// call track info object to do the averaging
if (_trackInfo.average())
{
_undoStack.add(undo);
}
}
/**
* Create a new point at the end of the track
* @param inPoint point to add
*/
public void createPoint(DataPoint inPoint)
{
createPoint(inPoint, true);
}
/**
* Create a new point at the end of the track
* @param inPoint point to add
* @param inNewSegment true for a single point, false for a continuation
*/
public void createPoint(DataPoint inPoint, boolean inNewSegment)
{
// create undo object
UndoCreatePoint undo = new UndoCreatePoint();
_undoStack.add(undo);
// add point to track
inPoint.setSegmentStart(inNewSegment);
_track.appendPoints(new DataPoint[] {inPoint});
// ensure track's field list contains point's fields
_track.extendFieldList(inPoint.getFieldList());
_trackInfo.selectPoint(_trackInfo.getTrack().getNumPoints()-1);
// update listeners
UpdateMessageBroker.informSubscribers(I18nManager.getText("confirm.createpoint"));
}
/**
* Create a new point before the given position
* @param inPoint point to add
* @param inIndex index of following point
*/
public void createPoint(DataPoint inPoint, int inIndex)
{
// create undo object
UndoInsert undo = new UndoInsert(inIndex, 1);
_undoStack.add(undo);
// add point to track
_track.insertPoint(inPoint, inIndex);
// ensure track's field list contains point's fields
_track.extendFieldList(inPoint.getFieldList());
_trackInfo.selectPoint(inIndex);
final int selStart = _trackInfo.getSelection().getStart();
final int selEnd = _trackInfo.getSelection().getEnd();
if (selStart < inIndex && selEnd > inIndex)
{
// Extend end of selection by 1
_trackInfo.getSelection().selectRange(selStart, selEnd+1);
}
// update listeners
UpdateMessageBroker.informSubscribers(I18nManager.getText("confirm.createpoint"));
}
/**
* Cut the current selection and move it to before the currently selected point
*/
public void cutAndMoveSelection()
{
int startIndex = _trackInfo.getSelection().getStart();
int endIndex = _trackInfo.getSelection().getEnd();
int pointIndex = _trackInfo.getSelection().getCurrentPointIndex();
// If timestamps would be mangled by cut/move, confirm
if (!_track.hasData(Field.TIMESTAMP, startIndex, endIndex)
|| _mangleTimestampsConfirmed
|| (JOptionPane.showConfirmDialog(_frame,
I18nManager.getText("dialog.confirmcutandmove.text"),
I18nManager.getText("dialog.confirmcutandmove.title"),
JOptionPane.YES_NO_OPTION) == JOptionPane.YES_OPTION && (_mangleTimestampsConfirmed = true)))
{
// Find points to set segment flags
DataPoint firstTrackPoint = _track.getNextTrackPoint(startIndex, endIndex);
DataPoint nextTrackPoint = _track.getNextTrackPoint(endIndex+1);
DataPoint moveToTrackPoint = _track.getNextTrackPoint(pointIndex);
// Make undo object
UndoCutAndMove undo = new UndoCutAndMove(_track, startIndex, endIndex, pointIndex);
// Call track info to move track section
if (_track.cutAndMoveSection(startIndex, endIndex, pointIndex))
{
// Set segment start flags (first track point, next track point, move to point)
if (firstTrackPoint != null) {firstTrackPoint.setSegmentStart(true);}
if (nextTrackPoint != null) {nextTrackPoint.setSegmentStart(true);}
if (moveToTrackPoint != null) {moveToTrackPoint.setSegmentStart(true);}
// Add undo object to stack, set confirm message
_undoStack.add(undo);
_trackInfo.getSelection().selectRange(-1, -1);
UpdateMessageBroker.informSubscribers();
UpdateMessageBroker.informSubscribers(I18nManager.getText("confirm.cutandmove"));
}
}
}
/**
* Select nothing
*/
public void selectNone()
{
// deselect point, range and photo
_trackInfo.getSelection().clearAll();
_track.clearDeletionMarkers();
}
/**
* Receive loaded data and determine whether to filter on tracks or not
* @param inFieldArray array of fields
* @param inDataArray array of data
* @param inSourceInfo information about the source of the data
* @param inTrackNameList information about the track names
*/
public void informDataLoaded(Field[] inFieldArray, Object[][] inDataArray,
SourceInfo inSourceInfo, TrackNameList inTrackNameList)
{
// no link array given
informDataLoaded(inFieldArray, inDataArray, null, inSourceInfo,
inTrackNameList, null);
}
/**
* Receive loaded data and determine whether to filter on tracks or not
* @param inFieldArray array of fields
* @param inDataArray array of data
* @param inOptions creation options such as units
* @param inSourceInfo information about the source of the data
* @param inTrackNameList information about the track names
*/
public void informDataLoaded(Field[] inFieldArray, Object[][] inDataArray,
PointCreateOptions inOptions, SourceInfo inSourceInfo, TrackNameList inTrackNameList)
{
// no link array given
informDataLoaded(inFieldArray, inDataArray, inOptions, inSourceInfo,
inTrackNameList, null);
}
/**
* Receive loaded data and determine whether to filter on tracks or not
* @param inFieldArray array of fields
* @param inDataArray array of data
* @param inOptions creation options such as units
* @param inSourceInfo information about the source of the data
* @param inTrackNameList information about the track names
* @param inLinkInfo links to photo/audio clips
*/
public void informDataLoaded(Field[] inFieldArray, Object[][] inDataArray, PointCreateOptions inOptions,
SourceInfo inSourceInfo, TrackNameList inTrackNameList, MediaLinkInfo inLinkInfo)
{
// Check whether loaded array can be properly parsed into a Track
Track loadedTrack = new Track();
loadedTrack.load(inFieldArray, inDataArray, inOptions);
if (loadedTrack.getNumPoints() <= 0)
{
showErrorMessage("error.load.dialogtitle", "error.load.nopoints");
// load next file if there's a queue
loadNextFile();
return;
}
// Check for doubled track
if (Checker.isDoubledTrack(loadedTrack)) {
JOptionPane.showMessageDialog(_frame, I18nManager.getText("dialog.open.contentsdoubled"),
I18nManager.getText("function.open"), JOptionPane.WARNING_MESSAGE);
}
_busyLoading = true;
// Attach photos and/or audio clips to points
if (inLinkInfo != null)
{
String[] linkArray = inLinkInfo.getLinkArray();
if (linkArray != null) {
new AsyncMediaLoader(this, inLinkInfo.getZipFile(), linkArray, loadedTrack, inSourceInfo.getFile()).begin();
}
}
// Look at TrackNameList, decide whether to filter or not
if (inTrackNameList != null && inTrackNameList.getNumTracks() > 1)
{
// Launch a dialog to let the user choose which tracks to load, then continue
new SelectTracksFunction(this, loadedTrack, inSourceInfo, inTrackNameList).begin();
}
else {
// go directly to load
informDataLoaded(loadedTrack, inSourceInfo);
}
setCurrentMode(AppMode.NORMAL);
}
/**
* Receive loaded data and optionally merge with current Track
* @param inLoadedTrack loaded track
* @param inSourceInfo information about the source of the data
*/
public void informDataLoaded(Track inLoadedTrack, SourceInfo inSourceInfo)
{
// Decide whether to load or append
if (_track.getNumPoints() > 0)
{
// ask whether to replace or append
int answer = 0;
if (_autoAppendNextFile) {
// Automatically append the next file
answer = JOptionPane.YES_OPTION;
}
else {
// Ask whether to append or not
answer = JOptionPane.showConfirmDialog(_frame,
I18nManager.getText("dialog.openappend.text"),
I18nManager.getText("dialog.openappend.title"),
JOptionPane.YES_NO_CANCEL_OPTION);
}
_autoAppendNextFile = false; // reset flag to cancel autoappend
if (answer == JOptionPane.YES_OPTION)
{
// append data to current Track
UndoLoad undo = new UndoLoad(_track.getNumPoints(), inLoadedTrack.getNumPoints());
undo.setNumPhotosAudios(_trackInfo.getPhotoList().getNumPhotos(), _trackInfo.getAudioList().getNumAudios());
_undoStack.add(undo);
_track.combine(inLoadedTrack);
// set source information
inSourceInfo.populatePointObjects(_track, inLoadedTrack.getNumPoints());
_trackInfo.getFileInfo().addSource(inSourceInfo);
}
else if (answer == JOptionPane.NO_OPTION)
{
// Don't append, replace data
PhotoList photos = null;
if (_trackInfo.getPhotoList().hasCorrelatedPhotos()) {
photos = _trackInfo.getPhotoList().cloneList();
}
UndoLoad undo = new UndoLoad(_trackInfo, inLoadedTrack.getNumPoints(), photos);
undo.setNumPhotosAudios(_trackInfo.getPhotoList().getNumPhotos(), _trackInfo.getAudioList().getNumAudios());
_undoStack.add(undo);
_lastSavePosition = _undoStack.size();
_trackInfo.getSelection().clearAll();
_track.load(inLoadedTrack);
inSourceInfo.populatePointObjects(_track, _track.getNumPoints());
_trackInfo.getFileInfo().replaceSource(inSourceInfo);
_trackInfo.getPhotoList().removeCorrelatedPhotos();
_trackInfo.getAudioList().removeCorrelatedAudios();
}
}
else
{
// Currently no data held, so transfer received data
UndoLoad undo = new UndoLoad(_trackInfo, inLoadedTrack.getNumPoints(), null);
undo.setNumPhotosAudios(_trackInfo.getPhotoList().getNumPhotos(), _trackInfo.getAudioList().getNumAudios());
_undoStack.add(undo);
_lastSavePosition = _undoStack.size();
_trackInfo.getSelection().clearAll();
_track.load(inLoadedTrack);
inSourceInfo.populatePointObjects(_track, _track.getNumPoints());
_trackInfo.getFileInfo().addSource(inSourceInfo);
}
// Update config before subscribers are told
boolean isRegularLoad = (inSourceInfo.getFileType() != FILE_TYPE.GPSBABEL);
Config.getRecentFileList().addFile(new RecentFile(inSourceInfo.getFile(), isRegularLoad));
UpdateMessageBroker.informSubscribers();
// Update status bar
UpdateMessageBroker.informSubscribers(I18nManager.getText("confirm.loadfile")
+ " '" + inSourceInfo.getName() + "'");
// update menu
_menuManager.informFileLoaded();
// Remove busy lock
_busyLoading = false;
// load next file if there's a queue
loadNextFile();
}
/**
* Inform the app that NO data was loaded, eg cancel pressed
* Only needed if there's another file waiting in the queue
*/
public void informNoDataLoaded()
{
// Load next file if there's a queue
loadNextFile();
}
/**
* External trigger to automatically append the next loaded file
* instead of prompting to replace or append
*/
public void autoAppendNextFile()
{
_autoAppendNextFile = true;
}
/**
* Load the next file in the waiting list, if any
*/
private void loadNextFile()
{
if (_dataFiles == null || _dataFiles.size() == 0) {
_dataFiles = null;
}
else {
new Thread(new Runnable() {
public void run() {
File f = _dataFiles.get(0);
_dataFiles.remove(0);
_autoAppendNextFile = true;
_fileLoader.openFile(f);
}
}).start();
}
}
/**
* Accept a list of loaded photos
* @param inPhotoSet Set of Photo objects
*/
public void informPhotosLoaded(Set<Photo> inPhotoSet)
{
if (inPhotoSet != null && !inPhotoSet.isEmpty())
{
int[] numsAdded = _trackInfo.addPhotos(inPhotoSet);
int numPhotosAdded = numsAdded[0];
int numPointsAdded = numsAdded[1];
if (numPhotosAdded > 0)
{
// Save numbers so load can be undone
_undoStack.add(new UndoLoadPhotos(numPhotosAdded, numPointsAdded));
}
if (numPhotosAdded == 1) {
UpdateMessageBroker.informSubscribers("" + numPhotosAdded + " " + I18nManager.getText("confirm.jpegload.single"));
}
else {
UpdateMessageBroker.informSubscribers("" + numPhotosAdded + " " + I18nManager.getText("confirm.jpegload.multi"));
}
// MAYBE: Improve message when photo(s) fail to load (eg already added)
UpdateMessageBroker.informSubscribers();
// update menu
if (numPointsAdded > 0) _menuManager.informFileLoaded();
}
}
/**
* Save the coordinates of photos in their exif data
*/
public void saveExif()
{
ExifSaver saver = new ExifSaver(_frame);
saver.saveExifInformation(_trackInfo.getPhotoList());
}
/**
* Inform the app that the data has been saved
*/
public void informDataSaved()
{
_lastSavePosition = _undoStack.size();
}
/**
* Begin undo process
*/
public void beginUndo()
{
if (_undoStack.isEmpty())
{
// Nothing to undo
JOptionPane.showMessageDialog(_frame, I18nManager.getText("dialog.undo.none.text"),
I18nManager.getText("dialog.undo.none.title"), JOptionPane.INFORMATION_MESSAGE);
}
else
{
new UndoManager(this, _frame);
}
}
/**
* Clear the undo stack (losing all undo information
*/
public void clearUndo()
{
// Exit if nothing to undo
if (_undoStack == null || _undoStack.isEmpty())
return;
// Has track got unsaved data?
boolean unsaved = hasDataUnsaved();
// Confirm operation with dialog
int answer = JOptionPane.showConfirmDialog(_frame,
I18nManager.getText("dialog.clearundo.text"),
I18nManager.getText("dialog.clearundo.title"),
JOptionPane.YES_NO_OPTION);
if (answer == JOptionPane.YES_OPTION)
{
_undoStack.clear();
_lastSavePosition = 0;
if (unsaved) _lastSavePosition = -1;
UpdateMessageBroker.informSubscribers();
}
}
/**
* Undo the specified number of actions
* @param inNumUndos number of actions to undo
*/
public void undoActions(int inNumUndos)
{
try
{
for (int i=0; i<inNumUndos; i++)
{
_undoStack.pop().performUndo(_trackInfo);
}
String message = "" + inNumUndos + " "
+ (inNumUndos==1?I18nManager.getText("confirm.undo.single"):I18nManager.getText("confirm.undo.multi"));
UpdateMessageBroker.informSubscribers(message);
}
catch (UndoException ue)
{
showErrorMessageNoLookup("error.undofailed.title",
I18nManager.getText("error.undofailed.text") + " : " + ue.getMessage());
_undoStack.clear();
}
catch (EmptyStackException empty) {}
UpdateMessageBroker.informSubscribers();
}
/**
* @return the current data status, used for later comparison
*/
public DataStatus getCurrentDataStatus() {
return new DataStatus(_undoStack.size(), _undoStack.getNumTimesDeleted());
}
/**
* Show a map url in an external browser
* @param inSourceIndex index of map source to use
*/
public void showExternalMap(int inSourceIndex)
{
BrowserLauncher.launchBrowser(UrlGenerator.generateUrl(inSourceIndex, _trackInfo));
}
/**
* Display a standard error message
* @param inTitleKey key to lookup for window title
* @param inMessageKey key to lookup for error message
*/
public void showErrorMessage(String inTitleKey, String inMessageKey)
{
JOptionPane.showMessageDialog(_frame, I18nManager.getText(inMessageKey),
I18nManager.getText(inTitleKey), JOptionPane.ERROR_MESSAGE);
}
/**
* Display a standard error message
* @param inTitleKey key to lookup for window title
* @param inMessage error message
*/
public void showErrorMessageNoLookup(String inTitleKey, String inMessage)
{
JOptionPane.showMessageDialog(_frame, inMessage,
I18nManager.getText(inTitleKey), JOptionPane.ERROR_MESSAGE);
}
/**
* @param inViewport viewport object
*/
public void setViewport(Viewport inViewport)
{
_viewport = inViewport;
}
/**
* @return current viewport object
*/
public Viewport getViewport()
{
return _viewport;
}
/**
* Set the controller for the full screen mode
* @param inController controller object
*/
public void setSidebarController(SidebarController inController)
{
_sidebarController = inController;
}
/**
* Toggle sidebars on and off
*/
public void toggleSidebars()
{
_sidebarController.toggle();
}
/** @return true if App is currently busy with loading data */
public boolean isBusyLoading() {
return _busyLoading;
}
/** @return current app mode */
public AppMode getCurrentMode() {
return _appMode;
}
/** @param inMode the current app mode */
public void setCurrentMode(AppMode inMode) {
_appMode = inMode;
}
}
|