source: josm/trunk/src/org/openstreetmap/josm/actions/OrthogonalizeAction.java@ 9484

Last change on this file since 9484 was 9446, checked in by simon04, 8 years ago

see #12335 - Make "Orthogonalize Shape" enabled state consistent w/ other actions (patch by kolesar)

  • Property svn:eol-style set to native
File size: 25.0 KB
RevLine 
[8378]1// License: GPL. For details, see LICENSE file.
[1076]2package org.openstreetmap.josm.actions;
3
[2323]4import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
[1076]5import static org.openstreetmap.josm.tools.I18n.tr;
6
7import java.awt.event.ActionEvent;
8import java.awt.event.KeyEvent;
9import java.util.ArrayList;
[2268]10import java.util.Arrays;
[1076]11import java.util.Collection;
[2596]12import java.util.Collections;
[2323]13import java.util.HashMap;
[2268]14import java.util.HashSet;
[4385]15import java.util.Iterator;
[1076]16import java.util.LinkedList;
[4385]17import java.util.List;
[6317]18import java.util.Map;
[4385]19import java.util.Set;
[1076]20
21import javax.swing.JOptionPane;
22
23import org.openstreetmap.josm.Main;
24import org.openstreetmap.josm.command.Command;
25import org.openstreetmap.josm.command.MoveCommand;
26import org.openstreetmap.josm.command.SequenceCommand;
27import org.openstreetmap.josm.data.coor.EastNorth;
28import org.openstreetmap.josm.data.osm.Node;
29import org.openstreetmap.josm.data.osm.OsmPrimitive;
30import org.openstreetmap.josm.data.osm.Way;
[1838]31import org.openstreetmap.josm.gui.ConditionalOptionPaneUtil;
[6130]32import org.openstreetmap.josm.gui.Notification;
[1084]33import org.openstreetmap.josm.tools.Shortcut;
[1076]34
35/**
[2268]36 * Tools / Orthogonalize
[1169]37 *
[2268]38 * Align edges of a way so all angles are angles of 90 or 180 degrees.
39 * See USAGE String below.
[1076]40 */
41public final class OrthogonalizeAction extends JosmAction {
[6798]42 private static final String USAGE = tr(
[2957]43 "<h3>When one or more ways are selected, the shape is adjusted such, that all angles are 90 or 180 degrees.</h3>"+
44 "You can add two nodes to the selection. Then, the direction is fixed by these two reference nodes. "+
45 "(Afterwards, you can undo the movement for certain nodes:<br>"+
[6316]46 "Select them and press the shortcut for Orthogonalize / Undo. The default is Shift-Q.)");
[1076]47
[5736]48 /**
[6986]49 * Constructs a new {@code OrthogonalizeAction}.
[5736]50 */
[1169]51 public OrthogonalizeAction() {
[1218]52 super(tr("Orthogonalize Shape"),
[1814]53 "ortho",
[2957]54 tr("Move nodes so all angles are 90 or 180 degrees"),
[1814]55 Shortcut.registerShortcut("tools:orthogonalize", tr("Tool: {0}", tr("Orthogonalize Shape")),
56 KeyEvent.VK_Q,
[4982]57 Shortcut.DIRECT), true);
[3757]58 putValue("help", ht("/Action/OrthogonalizeShape"));
[1169]59 }
[1076]60
[2268]61 /**
62 * excepted deviation from an angle of 0, 90, 180, 360 degrees
63 * maximum value: 45 degrees
[3019]64 *
65 * Current policy is to except just everything, no matter how strange the result would be.
[2268]66 */
[3019]67 private static final double TOLERANCE1 = Math.toRadians(45.); // within a way
68 private static final double TOLERANCE2 = Math.toRadians(45.); // ways relative to each other
[1089]69
[2268]70 /**
71 * Remember movements, so the user can later undo it for certain nodes
72 */
[7005]73 private static final Map<Node, EastNorth> rememberMovements = new HashMap<>();
[1089]74
[2268]75 /**
76 * Undo the previous orthogonalization for certain nodes.
77 *
78 * This is useful, if the way shares nodes that you don't like to change, e.g. imports or
79 * work of another user.
80 *
81 * This action can be triggered by shortcut only.
82 */
[2626]83 public static class Undo extends JosmAction {
[5736]84 /**
85 * Constructor
86 */
[2268]87 public Undo() {
[4942]88 super(tr("Orthogonalize Shape / Undo"), "ortho",
[2626]89 tr("Undo orthogonalization for certain nodes"),
90 Shortcut.registerShortcut("tools:orthogonalizeUndo", tr("Tool: {0}", tr("Orthogonalize Shape / Undo")),
91 KeyEvent.VK_Q,
[4982]92 Shortcut.SHIFT),
[4942]93 true, "action/orthogonalize/undo", true);
[2268]94 }
[8510]95
[6084]96 @Override
[2268]97 public void actionPerformed(ActionEvent e) {
98 if (!isEnabled())
99 return;
[7005]100 final Collection<Command> commands = new LinkedList<>();
[2268]101 final Collection<OsmPrimitive> sel = getCurrentDataSet().getSelected();
102 try {
103 for (OsmPrimitive p : sel) {
[8510]104 if (!(p instanceof Node)) throw new InvalidUserInputException("selected object is not a node");
[2268]105 Node n = (Node) p;
106 if (rememberMovements.containsKey(n)) {
107 EastNorth tmp = rememberMovements.get(n);
[8443]108 commands.add(new MoveCommand(n, -tmp.east(), -tmp.north()));
[2268]109 rememberMovements.remove(n);
110 }
[1169]111 }
[6093]112 if (!commands.isEmpty()) {
[2268]113 Main.main.undoRedo.add(new SequenceCommand(tr("Orthogonalize / Undo"), commands));
114 Main.map.repaint();
[8510]115 } else {
116 throw new InvalidUserInputException("Commands are empty");
117 }
[8342]118 } catch (InvalidUserInputException ex) {
[6130]119 new Notification(
120 tr("Orthogonalize Shape / Undo<br>"+
121 "Please select nodes that were moved by the previous Orthogonalize Shape action!"))
122 .setIcon(JOptionPane.INFORMATION_MESSAGE)
123 .show();
[1169]124 }
[1076]125 }
[2268]126 }
[1076]127
[6084]128 @Override
[2268]129 public void actionPerformed(ActionEvent e) {
130 if (!isEnabled())
131 return;
[4126]132 if ("EPSG:4326".equals(Main.getProjection().toString())) {
[1076]133 String msg = tr("<html>You are using the EPSG:4326 projection which might lead<br>" +
[1089]134 "to undesirable results when doing rectangular alignments.<br>" +
135 "Change your projection to get rid of this warning.<br>" +
[2957]136 "Do you want to continue?</html>");
[1838]137 if (!ConditionalOptionPaneUtil.showConfirmationDialog(
138 "align_rectangular_4326",
139 Main.parent,
140 msg,
141 tr("Warning"),
142 JOptionPane.YES_NO_OPTION,
143 JOptionPane.QUESTION_MESSAGE,
144 JOptionPane.YES_OPTION))
[1076]145 return;
146 }
[1089]147
[7005]148 final List<Node> nodeList = new ArrayList<>();
149 final List<WayData> wayDataList = new ArrayList<>();
[2268]150 final Collection<OsmPrimitive> sel = getCurrentDataSet().getSelected();
[1076]151
[2268]152 try {
153 // collect nodes and ways from the selection
154 for (OsmPrimitive p : sel) {
155 if (p instanceof Node) {
156 nodeList.add((Node) p);
[8342]157 } else if (p instanceof Way) {
[2268]158 wayDataList.add(new WayData((Way) p));
[2626]159 } else
[2888]160 throw new InvalidUserInputException(tr("Selection must consist only of ways and nodes."));
[1814]161 }
[2626]162 if (wayDataList.isEmpty())
[2268]163 throw new InvalidUserInputException("usage");
164 else {
[2596]165 if (nodeList.size() == 2 || nodeList.isEmpty()) {
166 OrthogonalizeAction.rememberMovements.clear();
[7005]167 final Collection<Command> commands = new LinkedList<>();
[2596]168
169 if (nodeList.size() == 2) { // fixed direction
170 commands.addAll(orthogonalize(wayDataList, nodeList));
[8342]171 } else if (nodeList.isEmpty()) {
[6316]172 List<List<WayData>> groups = buildGroups(wayDataList);
173 for (List<WayData> g: groups) {
[2596]174 commands.addAll(orthogonalize(g, nodeList));
175 }
176 } else
177 throw new IllegalStateException();
[2626]178
[2596]179 Main.main.undoRedo.add(new SequenceCommand(tr("Orthogonalize"), commands));
180 Main.map.repaint();
[2626]181
[2596]182 } else
[2268]183 throw new InvalidUserInputException("usage");
[2014]184 }
[2268]185 } catch (InvalidUserInputException ex) {
[6130]186 String msg;
[7012]187 if ("usage".equals(ex.getMessage())) {
[6130]188 msg = "<h2>" + tr("Usage") + "</h2>" + USAGE;
189 } else {
190 msg = ex.getMessage() + "<br><hr><h2>" + tr("Usage") + "</h2>" + USAGE;
[1076]191 }
[6130]192 new Notification(msg)
193 .setIcon(JOptionPane.INFORMATION_MESSAGE)
[8823]194 .setDuration(Notification.TIME_DEFAULT)
[6130]195 .show();
[2268]196 }
197 }
[6069]198
[4385]199 /**
200 * Collect groups of ways with common nodes in order to orthogonalize each group separately.
[9230]201 * @param wayDataList list of ways
[8931]202 * @return groups of ways with common nodes
[4385]203 */
[6316]204 private static List<List<WayData>> buildGroups(List<WayData> wayDataList) {
[7005]205 List<List<WayData>> groups = new ArrayList<>();
206 Set<WayData> remaining = new HashSet<>(wayDataList);
[4385]207 while (!remaining.isEmpty()) {
[7005]208 List<WayData> group = new ArrayList<>();
[4385]209 groups.add(group);
210 Iterator<WayData> it = remaining.iterator();
211 WayData next = it.next();
212 it.remove();
[7005]213 extendGroupRec(group, next, new ArrayList<>(remaining));
[4385]214 remaining.removeAll(group);
215 }
216 return groups;
217 }
[6069]218
[4385]219 private static void extendGroupRec(List<WayData> group, WayData newGroupMember, List<WayData> remaining) {
220 group.add(newGroupMember);
221 for (int i = 0; i < remaining.size(); ++i) {
222 WayData candidate = remaining.get(i);
223 if (candidate == null) continue;
224 if (!Collections.disjoint(candidate.way.getNodes(), newGroupMember.way.getNodes())) {
225 remaining.set(i, null);
226 extendGroupRec(group, candidate, remaining);
227 }
228 }
229 }
[1089]230
[2268]231 /**
232 *
233 * Outline:
234 * 1. Find direction of all segments
235 * - direction = 0..3 (right,up,left,down)
236 * - right is not really right, you may have to turn your screen
237 * 2. Find average heading of all segments
238 * - heading = angle of a vector in polar coordinates
239 * - sum up horizontal segments (those with direction 0 or 2)
240 * - sum up vertical segments
241 * - turn the vertical sum by 90 degrees and add it to the horizontal sum
242 * - get the average heading from this total sum
243 * 3. Rotate all nodes by the average heading so that right is really right
244 * and all segments are approximately NS or EW.
245 * 4. If nodes are connected by a horizontal segment: Replace their y-Coordinate by
246 * the mean value of their y-Coordinates.
247 * - The same for vertical segments.
[2512]248 * 5. Rotate back.
[9230]249 * @param wayDataList list of ways
250 * @param headingNodes list of heading nodes
[8931]251 * @return list of commands to perform
[8926]252 * @throws InvalidUserInputException if selected ways have an angle different from 90 or 180 degrees
[2268]253 **/
[6316]254 private static Collection<Command> orthogonalize(List<WayData> wayDataList, List<Node> headingNodes) throws InvalidUserInputException {
[2268]255 // find average heading
256 double headingAll;
257 try {
258 if (headingNodes.isEmpty()) {
259 // find directions of the segments and make them consistent between different ways
260 wayDataList.get(0).calcDirections(Direction.RIGHT);
261 double refHeading = wayDataList.get(0).heading;
[8850]262 EastNorth totSum = new EastNorth(0., 0.);
[2268]263 for (WayData w : wayDataList) {
264 w.calcDirections(Direction.RIGHT);
265 int directionOffset = angleToDirectionChange(w.heading - refHeading, TOLERANCE2);
266 w.calcDirections(Direction.RIGHT.changeBy(directionOffset));
[8850]267 if (angleToDirectionChange(refHeading - w.heading, TOLERANCE2) != 0)
268 throw new RuntimeException();
[2268]269 totSum = EN.sum(totSum, w.segSum);
[1089]270 }
[2268]271 headingAll = EN.polar(new EastNorth(0., 0.), totSum);
[8342]272 } else {
[2268]273 headingAll = EN.polar(headingNodes.get(0).getEastNorth(), headingNodes.get(1).getEastNorth());
274 for (WayData w : wayDataList) {
275 w.calcDirections(Direction.RIGHT);
276 int directionOffset = angleToDirectionChange(w.heading - headingAll, TOLERANCE2);
277 w.calcDirections(Direction.RIGHT.changeBy(directionOffset));
[1089]278 }
[2268]279 }
280 } catch (RejectedAngleException ex) {
281 throw new InvalidUserInputException(
[2888]282 tr("<html>Please make sure all selected ways head in a similar direction<br>"+
[6798]283 "or orthogonalize them one by one.</html>"), ex);
[2268]284 }
[1089]285
[2268]286 // put the nodes of all ways in a set
[8338]287 final Set<Node> allNodes = new HashSet<>();
[2268]288 for (WayData w : wayDataList) {
289 for (Node n : w.way.getNodes()) {
290 allNodes.add(n);
[1089]291 }
[2268]292 }
[1089]293
[2268]294 // the new x and y value for each node
[8338]295 final Map<Node, Double> nX = new HashMap<>();
296 final Map<Node, Double> nY = new HashMap<>();
[1089]297
[2596]298 // calculate the centroid of all nodes
[2268]299 // it is used as rotation center
300 EastNorth pivot = new EastNorth(0., 0.);
301 for (Node n : allNodes) {
302 pivot = EN.sum(pivot, n.getEastNorth());
303 }
304 pivot = new EastNorth(pivot.east() / allNodes.size(), pivot.north() / allNodes.size());
[1076]305
[2268]306 // rotate
307 for (Node n: allNodes) {
[8443]308 EastNorth tmp = EN.rotateCC(pivot, n.getEastNorth(), -headingAll);
[2268]309 nX.put(n, tmp.east());
310 nY.put(n, tmp.north());
311 }
[1089]312
[2268]313 // orthogonalize
314 final Direction[] HORIZONTAL = {Direction.RIGHT, Direction.LEFT};
315 final Direction[] VERTICAL = {Direction.UP, Direction.DOWN};
316 final Direction[][] ORIENTATIONS = {HORIZONTAL, VERTICAL};
[8510]317 for (Direction[] orientation : ORIENTATIONS) {
[8338]318 final Set<Node> s = new HashSet<>(allNodes);
[2268]319 int s_size = s.size();
[4385]320 for (int dummy = 0; dummy < s_size; ++dummy) {
[2626]321 if (s.isEmpty()) {
322 break;
323 }
[2268]324 final Node dummy_n = s.iterator().next(); // pick arbitrary element of s
[1089]325
[8338]326 final Set<Node> cs = new HashSet<>(); // will contain each node that can be reached from dummy_n
327 cs.add(dummy_n); // walking only on horizontal / vertical segments
[2268]328
329 boolean somethingHappened = true;
330 while (somethingHappened) {
331 somethingHappened = false;
332 for (WayData w : wayDataList) {
[8510]333 for (int i = 0; i < w.nSeg; ++i) {
[2268]334 Node n1 = w.way.getNodes().get(i);
335 Node n2 = w.way.getNodes().get(i+1);
336 if (Arrays.asList(orientation).contains(w.segDirections[i])) {
[8443]337 if (cs.contains(n1) && !cs.contains(n2)) {
[2268]338 cs.add(n2);
339 somethingHappened = true;
340 }
[8443]341 if (cs.contains(n2) && !cs.contains(n1)) {
[2268]342 cs.add(n1);
343 somethingHappened = true;
344 }
345 }
346 }
347 }
[1814]348 }
[1089]349
[8338]350 final Map<Node, Double> nC = (orientation == HORIZONTAL) ? nY : nX;
[1089]351
[2268]352 double average = 0;
353 for (Node n : cs) {
[8850]354 s.remove(n);
[2268]355 average += nC.get(n).doubleValue();
[1076]356 }
[2268]357 average = average / cs.size();
[2014]358
[2268]359 // if one of the nodes is a heading node, forget about the average and use its value
360 for (Node fn : headingNodes) {
361 if (cs.contains(fn)) {
362 average = nC.get(fn);
[2014]363 }
[2268]364 }
[2014]365
[5686]366 // At this point, the two heading nodes (if any) are horizontally aligned, i.e. they
367 // have the same y coordinate. So in general we shouldn't find them in a vertical string
368 // of segments. This can still happen in some pathological cases (see #7889). To avoid
369 // both heading nodes collapsing to one point, we simply skip this segment string and
370 // don't touch the node coordinates.
371 if (orientation == VERTICAL && headingNodes.size() == 2 && cs.containsAll(headingNodes)) {
372 continue;
[2014]373 }
[2268]374
375 for (Node n : cs) {
[5686]376 nC.put(n, average);
[2268]377 }
[1169]378 }
[2268]379 if (!s.isEmpty()) throw new RuntimeException();
[1076]380 }
[1089]381
[2268]382 // rotate back and log the change
[7005]383 final Collection<Command> commands = new LinkedList<>();
[2268]384 for (Node n: allNodes) {
385 EastNorth tmp = new EastNorth(nX.get(n), nY.get(n));
[7859]386 tmp = EN.rotateCC(pivot, tmp, headingAll);
[2268]387 final double dx = tmp.east() - n.getEastNorth().east();
388 final double dy = tmp.north() - n.getEastNorth().north();
389 if (headingNodes.contains(n)) { // The heading nodes should not have changed
390 final double EPSILON = 1E-6;
[2512]391 if (Math.abs(dx) > Math.abs(EPSILON * tmp.east()) ||
[2626]392 Math.abs(dy) > Math.abs(EPSILON * tmp.east()))
[2268]393 throw new AssertionError();
[8342]394 } else {
[2268]395 OrthogonalizeAction.rememberMovements.put(n, new EastNorth(dx, dy));
396 commands.add(new MoveCommand(n, dx, dy));
397 }
[1076]398 }
[2596]399 return commands;
[1089]400 }
401
[2268]402 /**
[9230]403 * Class contains everything we need to know about a single way.
[2268]404 */
405 private static class WayData {
[6889]406 public final Way way; // The assigned way
407 public final int nSeg; // Number of Segments of the Way
408 public final int nNode; // Number of Nodes of the Way
[2268]409 public Direction[] segDirections; // Direction of the segments
[2626]410 // segment i goes from node i to node (i+1)
[2268]411 public EastNorth segSum; // (Vector-)sum of all horizontal segments plus the sum of all vertical
[6889]412 // segments turned by 90 degrees
[2268]413 public double heading; // heading of segSum == approximate heading of the way
[8510]414
[8836]415 WayData(Way pWay) {
[2268]416 way = pWay;
417 nNode = way.getNodes().size();
418 nSeg = nNode - 1;
419 }
[7859]420
[2268]421 /**
422 * Estimate the direction of the segments, given the first segment points in the
423 * direction <code>pInitialDirection</code>.
424 * Then sum up all horizontal / vertical segments to have a good guess for the
425 * heading of the entire way.
[7859]426 * @param pInitialDirection initial direction
[8459]427 * @throws InvalidUserInputException if selected ways have an angle different from 90 or 180 degrees
[2268]428 */
429 public void calcDirections(Direction pInitialDirection) throws InvalidUserInputException {
430 final EastNorth[] en = new EastNorth[nNode]; // alias: way.getNodes().get(i).getEastNorth() ---> en[i]
[8510]431 for (int i = 0; i < nNode; i++) {
[2268]432 en[i] = new EastNorth(way.getNodes().get(i).getEastNorth().east(), way.getNodes().get(i).getEastNorth().north());
433 }
434 segDirections = new Direction[nSeg];
435 Direction direction = pInitialDirection;
436 segDirections[0] = direction;
[8510]437 for (int i = 0; i < nSeg - 1; i++) {
438 double h1 = EN.polar(en[i], en[i+1]);
439 double h2 = EN.polar(en[i+1], en[i+2]);
[2268]440 try {
441 direction = direction.changeBy(angleToDirectionChange(h2 - h1, TOLERANCE1));
442 } catch (RejectedAngleException ex) {
[6798]443 throw new InvalidUserInputException(tr("Please select ways with angles of approximately 90 or 180 degrees."), ex);
[2268]444 }
445 segDirections[i+1] = direction;
446 }
[2014]447
[2268]448 // sum up segments
[8510]449 EastNorth h = new EastNorth(0., 0.);
450 EastNorth v = new EastNorth(0., 0.);
[2268]451 for (int i = 0; i < nSeg; ++i) {
452 EastNorth segment = EN.diff(en[i+1], en[i]);
[2626]453 if (segDirections[i] == Direction.RIGHT) {
[8510]454 h = EN.sum(h, segment);
[2626]455 } else if (segDirections[i] == Direction.UP) {
[8510]456 v = EN.sum(v, segment);
[2626]457 } else if (segDirections[i] == Direction.LEFT) {
[8510]458 h = EN.diff(h, segment);
[2626]459 } else if (segDirections[i] == Direction.DOWN) {
[8510]460 v = EN.diff(v, segment);
[2626]461 } else throw new IllegalStateException();
[2014]462 }
[2268]463 // rotate the vertical vector by 90 degrees (clockwise) and add it to the horizontal vector
[8443]464 segSum = EN.sum(h, new EastNorth(v.north(), -v.east()));
[8510]465 this.heading = EN.polar(new EastNorth(0., 0.), segSum);
[2014]466 }
467 }
468
[2268]469 private enum Direction {
470 RIGHT, UP, LEFT, DOWN;
471 public Direction changeBy(int directionChange) {
472 int tmp = (this.ordinal() + directionChange) % 4;
[2626]473 if (tmp < 0) {
474 tmp += 4; // the % operator can return negative value
475 }
[2268]476 return Direction.values()[tmp];
[2014]477 }
478 }
479
[2268]480 /**
481 * Make sure angle (up to 2*Pi) is in interval [ 0, 2*Pi ).
[9230]482 * @param a angle
[8931]483 * @return correct angle
[2268]484 */
485 private static double standard_angle_0_to_2PI(double a) {
[2626]486 while (a >= 2 * Math.PI) {
487 a -= 2 * Math.PI;
488 }
489 while (a < 0) {
490 a += 2 * Math.PI;
491 }
[2268]492 return a;
[1076]493 }
494
[2268]495 /**
496 * Make sure angle (up to 2*Pi) is in interval ( -Pi, Pi ].
[9230]497 * @param a angle
[8931]498 * @return correct angle
[2268]499 */
500 private static double standard_angle_mPI_to_PI(double a) {
[2626]501 while (a > Math.PI) {
502 a -= 2 * Math.PI;
503 }
[8443]504 while (a <= -Math.PI) {
[2626]505 a += 2 * Math.PI;
506 }
[2268]507 return a;
[1089]508 }
[2268]509
510 /**
511 * Class contains some auxiliary functions
512 */
[6987]513 private static final class EN {
[6986]514 private EN() {
515 // Hide implicit public constructor for utility class
516 }
[8510]517
[7859]518 /**
519 * Rotate counter-clock-wise.
[9230]520 * @param pivot pivot
521 * @param en original east/north
522 * @param angle angle, in radians
[8931]523 * @return new east/north
[7859]524 */
525 public static EastNorth rotateCC(EastNorth pivot, EastNorth en, double angle) {
[2268]526 double cosPhi = Math.cos(angle);
527 double sinPhi = Math.sin(angle);
528 double x = en.east() - pivot.east();
529 double y = en.north() - pivot.north();
530 double nx = cosPhi * x - sinPhi * y + pivot.east();
531 double ny = sinPhi * x + cosPhi * y + pivot.north();
532 return new EastNorth(nx, ny);
[1814]533 }
[8510]534
[2268]535 public static EastNorth sum(EastNorth en1, EastNorth en2) {
536 return new EastNorth(en1.east() + en2.east(), en1.north() + en2.north());
[1814]537 }
[8510]538
[2268]539 public static EastNorth diff(EastNorth en1, EastNorth en2) {
540 return new EastNorth(en1.east() - en2.east(), en1.north() - en2.north());
541 }
[8510]542
[2268]543 public static double polar(EastNorth en1, EastNorth en2) {
544 return Math.atan2(en2.north() - en1.north(), en2.east() - en1.east());
545 }
[1089]546 }
547
[2268]548 /**
549 * Recognize angle to be approximately 0, 90, 180 or 270 degrees.
[8931]550 * returns an integral value, corresponding to a counter clockwise turn.
[9230]551 * @param a angle, in radians
552 * @param deltaMax maximum tolerance, in radians
[8931]553 * @return an integral value, corresponding to a counter clockwise turn
[8926]554 * @throws RejectedAngleException in case of invalid angle
[2268]555 */
556 private static int angleToDirectionChange(double a, double deltaMax) throws RejectedAngleException {
557 a = standard_angle_mPI_to_PI(a);
558 double d0 = Math.abs(a);
559 double d90 = Math.abs(a - Math.PI / 2);
560 double d_m90 = Math.abs(a + Math.PI / 2);
561 int dirChange;
[2626]562 if (d0 < deltaMax) {
563 dirChange = 0;
564 } else if (d90 < deltaMax) {
565 dirChange = 1;
566 } else if (d_m90 < deltaMax) {
567 dirChange = -1;
568 } else {
[2268]569 a = standard_angle_0_to_2PI(a);
570 double d180 = Math.abs(a - Math.PI);
[2626]571 if (d180 < deltaMax) {
572 dirChange = 2;
573 } else
[2268]574 throw new RejectedAngleException();
575 }
576 return dirChange;
[1089]577 }
[1820]578
[2268]579 /**
580 * Exception: unsuited user input
581 */
[2512]582 private static class InvalidUserInputException extends Exception {
[2268]583 InvalidUserInputException(String message) {
584 super(message);
[2256]585 }
[8510]586
[6798]587 InvalidUserInputException(String message, Throwable cause) {
588 super(message, cause);
589 }
[1820]590 }
[8510]591
[2268]592 /**
593 * Exception: angle cannot be recognized as 0, 90, 180 or 270 degrees
594 */
595 private static class RejectedAngleException extends Exception {
596 RejectedAngleException() {
597 super();
598 }
599 }
[2256]600
601 @Override
[2268]602 protected void updateEnabledState() {
[9446]603 setEnabled(getCurrentDataSet() != null && !getCurrentDataSet().getSelected().isEmpty());
[2256]604 }
[9446]605
606 @Override
607 protected void updateEnabledState(Collection<? extends OsmPrimitive> selection) {
608 setEnabled(selection != null && !selection.isEmpty());
609 }
[1076]610}
Note: See TracBrowser for help on using the repository browser.