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
|
package tim.prune.undo;
import tim.prune.I18nManager;
import tim.prune.UpdateMessageBroker;
import tim.prune.data.Altitude;
import tim.prune.data.DataPoint;
import tim.prune.data.TrackInfo;
/**
* Undo addition/subtraction of an altitude offset
*/
public class UndoAddAltitudeOffset implements UndoOperation
{
/** Start index of section */
private int _startIndex;
/** altitude values before operation */
private Altitude[] _altitudes;
/**
* Constructor
* @param inTrackInfo track info object
*/
public UndoAddAltitudeOffset(TrackInfo inTrackInfo)
{
_startIndex = inTrackInfo.getSelection().getStart();
final int endIndex = inTrackInfo.getSelection().getEnd();
final int numPoints = endIndex - _startIndex + 1;
// Make array of cloned altitude objects
_altitudes = new Altitude[numPoints];
for (int i=0; i<numPoints; i++) {
Altitude a = inTrackInfo.getTrack().getPoint(_startIndex+i).getAltitude();
if (a != null && a.isValid()) {
_altitudes[i] = a.clone();
}
}
}
/**
* @return description of operation including number of points adjusted
*/
public String getDescription()
{
return I18nManager.getText("undo.addaltitudeoffset") + " (" + (_altitudes.length) + ")";
}
/**
* Perform the undo operation on the given Track
* @param inTrackInfo TrackInfo object on which to perform the operation
*/
public void performUndo(TrackInfo inTrackInfo) throws UndoException
{
// Perform the inverse operation
final int numPoints = _altitudes.length;
for (int i=0; i<numPoints; i++)
{
DataPoint point = inTrackInfo.getTrack().getPoint(i+_startIndex);
point.resetAltitude(_altitudes[i]);
}
_altitudes = null;
inTrackInfo.getSelection().markInvalid();
UpdateMessageBroker.informSubscribers();
}
}
|