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
|
package tim.prune.data;
import tim.prune.DataSubscriber;
import tim.prune.UpdateMessageBroker;
import tim.prune.config.Config;
/**
* Class to represent a selected portion of a Track and its properties
*/
public class Selection
{
private final Track _track;
private int _currentPoint = -1;
private int _prevNumPoints = 0;
private int _startIndex = -1, _endIndex = -1;
private int _currentPhotoIndex = -1;
private int _currentAudioIndex = -1;
/**
* Constructor
* @param inTrack track object
*/
public Selection(Track inTrack) {
_track = inTrack;
}
/**
* @return the current point index
*/
public int getCurrentPointIndex() {
return _currentPoint;
}
/**
* @return true if range is selected
*/
public boolean hasRangeSelected() {
return _startIndex >= 0 && _endIndex > _startIndex;
}
/**
* Recalculate all selection details
*/
private void recalculate()
{
final int numPoints = _track.getNumPoints();
// Recheck if the number of points has changed
if (numPoints != _prevNumPoints)
{
_prevNumPoints = numPoints;
check();
}
}
/**
* @param inConfig Config object for altitude tolerance
* @return stats about current range
*/
public RangeStats getRangeStats(Config inConfig)
{
final int altitudeTolerance = inConfig.getConfigInt(Config.KEY_ALTITUDE_TOLERANCE) / 100;
if (_track.getNumPoints() > 0 && hasRangeSelected()) {
return new RangeStats(_track, _startIndex, _endIndex, altitudeTolerance);
}
else {
return new RangeStats(altitudeTolerance);
}
}
/**
* @return start index
*/
public int getStart()
{
recalculate();
return _startIndex;
}
/**
* @return end index
*/
public int getEnd()
{
recalculate();
return _endIndex;
}
/**
* Clear selected point, range, photo and audio
*/
public void clearAll()
{
_currentPoint = -1;
selectRange(-1, -1);
_currentPhotoIndex = -1;
_currentAudioIndex = -1;
check();
}
/**
* Select range from start to end
* @param inStartIndex index of start of range
* @param inEndIndex index of end of range
*/
public void selectRange(int inStartIndex, int inEndIndex)
{
_startIndex = inStartIndex;
_endIndex = inEndIndex;
check();
}
/**
* Select the range from the current point
*/
public void selectRangeStart() {
selectRangeStart(_currentPoint);
}
/**
* Set the index for the start of the range selection
* @param inStartIndex start index
*/
private void selectRangeStart(int inStartIndex)
{
if (inStartIndex < 0) {
_startIndex = _endIndex = -1;
}
else
{
_startIndex = inStartIndex;
// Move end of selection to max if necessary
if (_endIndex <= _startIndex) {
_endIndex = _track.getNumPoints() - 1;
}
}
UpdateMessageBroker.informSubscribers();
}
/**
* Select the range up to the current point
*/
public void selectRangeEnd() {
selectRangeEnd(_currentPoint);
}
/**
* Set the index for the end of the range selection
* @param inEndIndex end index
*/
public void selectRangeEnd(int inEndIndex)
{
if (inEndIndex < 0) {
_startIndex = _endIndex = -1;
}
else
{
_endIndex = inEndIndex;
// Move start of selection to min if necessary
if (_startIndex > _endIndex || _startIndex < 0) {
_startIndex = 0;
}
}
UpdateMessageBroker.informSubscribers();
}
/**
* Modify the selection when a point has been deleted
* @param inPointIndex index of point which was deleted
*/
public void modifyPointDeleted(int inPointIndex)
{
// range needs to get altered if deleted point was inside or before
if (hasRangeSelected() && inPointIndex <= _endIndex)
{
_endIndex--;
if (inPointIndex < _startIndex) {
_startIndex--;
}
}
check();
}
/**
* Modify the selection when a point is inserted
* @param inPointIndex index of newly inserted point
*/
public void modifyPointInserted(int inPointIndex)
{
if (hasRangeSelected() && inPointIndex <= _endIndex)
{
_endIndex++;
if (inPointIndex <= _startIndex) {
_startIndex++;
}
check();
}
}
/**
* Select the specified photo and point
* @param inPointIndex index of selected point
* @param inPhotoIndex index of selected photo in PhotoList
* @param inAudioIndex index of selected audio item
*/
public void selectPointPhotoAudio(int inPointIndex, int inPhotoIndex, int inAudioIndex)
{
_currentPoint = inPointIndex;
_currentPhotoIndex = inPhotoIndex;
_currentAudioIndex = inAudioIndex;
check();
}
/**
* @return currently selected photo index
*/
public int getCurrentPhotoIndex() {
return _currentPhotoIndex;
}
/**
* @return currently selected audio index
*/
public int getCurrentAudioIndex() {
return _currentAudioIndex;
}
/**
* Check that the selection still makes sense
* and fire update message to listeners
*/
private void check()
{
if (_track != null && _track.getNumPoints() > 0)
{
int maxIndex = _track.getNumPoints() - 1;
if (_currentPoint > maxIndex) {
_currentPoint = maxIndex;
}
if (_endIndex > maxIndex) {
_endIndex = maxIndex;
}
if (_startIndex > maxIndex) {
_startIndex = maxIndex;
}
}
else
{
// track is empty, clear selections
_currentPoint = _startIndex = _endIndex = -1;
}
UpdateMessageBroker.informSubscribers(DataSubscriber.SELECTION_CHANGED);
}
}
|