source: josm/trunk/src/org/openstreetmap/josm/actions/MoveAction.java@ 6049

Last change on this file since 6049 was 5377, checked in by akks, 12 years ago

patch by JB: Moving 400 ways takes more than 20 seconds, see #7888 (moving with arrows)

  • Property svn:eol-style set to native
File size: 5.4 KB
Line 
1//License: GPL. Copyright 2007 by Immanuel Scholz and others
2package org.openstreetmap.josm.actions;
3
4import static org.openstreetmap.josm.gui.help.HelpUtil.ht;
5import static org.openstreetmap.josm.tools.I18n.tr;
6
7import java.awt.event.ActionEvent;
8import java.awt.event.KeyEvent;
9import java.util.Collection;
10
11import javax.swing.JOptionPane;
12
13import org.openstreetmap.josm.Main;
14import org.openstreetmap.josm.command.Command;
15import org.openstreetmap.josm.command.MoveCommand;
16import org.openstreetmap.josm.data.coor.EastNorth;
17import org.openstreetmap.josm.data.osm.Node;
18import org.openstreetmap.josm.data.osm.OsmPrimitive;
19import org.openstreetmap.josm.data.osm.visitor.AllNodesVisitor;
20import org.openstreetmap.josm.tools.Shortcut;
21
22/**
23 * Moves the selection
24 *
25 * @author Frederik Ramm
26 */
27public class MoveAction extends JosmAction {
28
29 public enum Direction { UP, LEFT, RIGHT, DOWN }
30
31 private Direction myDirection;
32
33 // any better idea?
34 private static String calltosupermustbefirststatementinconstructor_text(Direction dir) {
35 String directiontext;
36 if (dir == Direction.UP) {
37 directiontext = tr("up");
38 } else if (dir == Direction.DOWN) {
39 directiontext = tr("down");
40 } else if (dir == Direction.LEFT) {
41 directiontext = tr("left");
42 } else { //dir == Direction.RIGHT) {
43 directiontext = tr("right");
44 }
45 return directiontext;
46 }
47
48 // any better idea?
49 private static Shortcut calltosupermustbefirststatementinconstructor(Direction dir) {
50 Shortcut sc;
51 if (dir == Direction.UP) {
52 sc = Shortcut.registerShortcut("core:moveup", tr("Move objects {0}", tr("up")), KeyEvent.VK_UP, Shortcut.SHIFT);
53 } else if (dir == Direction.DOWN) {
54 sc = Shortcut.registerShortcut("core:movedown", tr("Move objects {0}", tr("down")), KeyEvent.VK_DOWN, Shortcut.SHIFT);
55 } else if (dir == Direction.LEFT) {
56 sc = Shortcut.registerShortcut("core:moveleft", tr("Move objects {0}", tr("left")), KeyEvent.VK_LEFT, Shortcut.SHIFT);
57 } else { //dir == Direction.RIGHT) {
58 sc = Shortcut.registerShortcut("core:moveright", tr("Move objects {0}", tr("right")), KeyEvent.VK_RIGHT, Shortcut.SHIFT);
59 }
60 return sc;
61 }
62
63 public MoveAction(Direction dir) {
64 super(tr("Move {0}", calltosupermustbefirststatementinconstructor_text(dir)), null,
65 tr("Moves Objects {0}", calltosupermustbefirststatementinconstructor_text(dir)),
66 calltosupermustbefirststatementinconstructor(dir), false);
67 myDirection = dir;
68 putValue("help", ht("/Action/Move"));
69 if (dir == Direction.UP) {
70 putValue("toolbar", "action/move/up");
71 } else if (dir == Direction.DOWN) {
72 putValue("toolbar", "action/move/down");
73 } else if (dir == Direction.LEFT) {
74 putValue("toolbar", "action/move/left");
75 } else { //dir == Direction.RIGHT) {
76 putValue("toolbar", "action/move/right");
77 }
78 Main.toolbar.register(this);
79 }
80
81 public void actionPerformed(ActionEvent event) {
82
83 if (!Main.isDisplayingMapView())
84 return;
85
86 // find out how many "real" units the objects have to be moved in order to
87 // achive an 1-pixel movement
88
89 EastNorth en1 = Main.map.mapView.getEastNorth(100, 100);
90 EastNorth en2 = Main.map.mapView.getEastNorth(101, 101);
91
92 double distx = en2.east() - en1.east();
93 double disty = en2.north() - en1.north();
94
95 switch (myDirection) {
96 case UP:
97 distx = 0;
98 disty = -disty;
99 break;
100 case DOWN:
101 distx = 0;
102 break;
103 case LEFT:
104 disty = 0;
105 distx = -distx;
106 break;
107 default:
108 disty = 0;
109 }
110
111 Collection<OsmPrimitive> selection = getCurrentDataSet().getSelected();
112 Collection<Node> affectedNodes = AllNodesVisitor.getAllNodes(selection);
113
114 Command c = !Main.main.undoRedo.commands.isEmpty()
115 ? Main.main.undoRedo.commands.getLast() : null;
116
117 getCurrentDataSet().beginUpdate();
118 if (c instanceof MoveCommand && affectedNodes.equals(((MoveCommand)c).getParticipatingPrimitives())) {
119 ((MoveCommand)c).moveAgain(distx, disty);
120 } else {
121 Main.main.undoRedo.add(
122 c = new MoveCommand(selection, distx, disty));
123 }
124 getCurrentDataSet().endUpdate();
125
126 for (Node n : affectedNodes) {
127 if (n.getCoor().isOutSideWorld()) {
128 // Revert move
129 ((MoveCommand) c).moveAgain(-distx, -disty);
130 JOptionPane.showMessageDialog(
131 Main.parent,
132 tr("Cannot move objects outside of the world."),
133 tr("Warning"),
134 JOptionPane.WARNING_MESSAGE
135 );
136 return;
137 }
138 }
139
140 Main.map.mapView.repaint();
141 }
142
143 @Override
144 protected void updateEnabledState() {
145 if (getCurrentDataSet() == null) {
146 setEnabled(false);
147 } else {
148 updateEnabledState(getCurrentDataSet().getSelected());
149 }
150 }
151
152 @Override
153 protected void updateEnabledState(Collection<? extends OsmPrimitive> selection) {
154 setEnabled(selection != null && !selection.isEmpty());
155 }
156}
Note: See TracBrowser for help on using the repository browser.