|
@@ -29,6 +29,7 @@ import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.util.Pair;
|
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.popups.ConnectionCreationDialog;
|
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.popups.LinkCreationDialog;
|
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.popups.SmartDeviceCreationPopUp;
|
|
|
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.util.LinkToolTip;
|
|
|
|
|
|
/**
|
|
|
* Listener which detects User Interaction with the {@link VisualisationPanel},
|
|
@@ -39,7 +40,6 @@ import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.popups.SmartDeviceCreationPop
|
|
|
*/
|
|
|
public class VisualisationInteractor implements MouseInputListener,
|
|
|
MouseMotionListener, ActionListener, KeyListener {
|
|
|
-
|
|
|
/**
|
|
|
* Smart Home model which should be interacted with
|
|
|
*/
|
|
@@ -133,12 +133,36 @@ public class VisualisationInteractor implements MouseInputListener,
|
|
|
*/
|
|
|
private boolean draggedDeviceWasSelected = false;
|
|
|
|
|
|
- public static final byte NOTHING = 0;
|
|
|
+ /**
|
|
|
+ * No interaction
|
|
|
+ */
|
|
|
+ public static final byte NOTHING = 0;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Right-click menu is shown
|
|
|
+ */
|
|
|
public static final byte RIGHTCLICK_MENU = 1;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Drag of multiple selected devices
|
|
|
+ */
|
|
|
public static final byte SELECTED_DRAG = 2;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * drag to create connection
|
|
|
+ */
|
|
|
public static final byte DRAG_CONNECTION = 3;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Drag to select multiple devices
|
|
|
+ */
|
|
|
public static final byte DRAG_SELECT = 4;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Devices are selected on the screen
|
|
|
+ */
|
|
|
public static final byte SELECTED = 5;
|
|
|
+
|
|
|
/**
|
|
|
* Mode, which action is currently executed
|
|
|
*/
|
|
@@ -150,7 +174,9 @@ public class VisualisationInteractor implements MouseInputListener,
|
|
|
private SmartDevice clicked = null;
|
|
|
|
|
|
|
|
|
-
|
|
|
+ /**
|
|
|
+ * Device where the current connection is dragged from
|
|
|
+ */
|
|
|
public SmartDevice connectionFrom = null;
|
|
|
|
|
|
/**
|
|
@@ -158,6 +184,8 @@ public class VisualisationInteractor implements MouseInputListener,
|
|
|
*/
|
|
|
public boolean controlDown = false;
|
|
|
|
|
|
+ private LinkToolTip toolTip;
|
|
|
+
|
|
|
/**
|
|
|
* Creates a new VisualisationInteractor
|
|
|
*
|
|
@@ -175,6 +203,7 @@ public class VisualisationInteractor implements MouseInputListener,
|
|
|
this.controller = controller;
|
|
|
this.panel = panel;
|
|
|
this.config = controller.getControllerConfiguration();
|
|
|
+ this.toolTip = new LinkToolTip();
|
|
|
|
|
|
initializeRightClickMenu();
|
|
|
}
|
|
@@ -568,7 +597,47 @@ public class VisualisationInteractor implements MouseInputListener,
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void mouseMoved(MouseEvent e) {}
|
|
|
+ public void mouseMoved(MouseEvent e) {
|
|
|
+ /**
|
|
|
+ * Check Hover on Link
|
|
|
+ */
|
|
|
+ Link l = checkHoverOnLink(e.getX(),e.getY());
|
|
|
+ if(l != null){
|
|
|
+ if(l != toolTip.getLink() || !toolTip.isEnabled()){
|
|
|
+ toolTip.setText("Link "+l.getName());
|
|
|
+ toolTip.setLink(l);
|
|
|
+ toolTip.setX(e.getX());
|
|
|
+ toolTip.setY(e.getY());
|
|
|
+ toolTip.setEnabled(true);
|
|
|
+ panel.update(null, null);
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ if(toolTip.getLink()!=null || toolTip.isEnabled()){
|
|
|
+ toolTip.setLink(null);
|
|
|
+ toolTip.setEnabled(false);
|
|
|
+ panel.update(null, null);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private Link checkHoverOnLink(int x, int y) {
|
|
|
+ // Check is device is inside visualization radius
|
|
|
+ int smallRadius = config.getDeviceVisualizationRadius();
|
|
|
+ int radius = smallRadius + config.getLinkRadius();
|
|
|
+ for (SmartDevice d : model.getDevices()) {
|
|
|
+ //In DeviceRadius + Link Radius ?
|
|
|
+ if (Math.abs(d.getX() - x) < radius && Math.abs(d.getY() - y) < radius) {
|
|
|
+ //Outside of device ?
|
|
|
+ if(!d.getLinks().isEmpty())
|
|
|
+ return d.getLinks().get(0);
|
|
|
+ if (Math.abs(d.getX() - x) >= smallRadius && Math.abs(d.getY() - y) >= smallRadius) {
|
|
|
+ //TODO: +Link Detection & Radius
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return null;
|
|
|
+ }
|
|
|
|
|
|
@Override
|
|
|
public void mouseEntered(MouseEvent e) {}
|
|
@@ -803,4 +872,11 @@ public class VisualisationInteractor implements MouseInputListener,
|
|
|
|
|
|
this.panel.add(rightClickMenu);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @return the toolTip
|
|
|
+ */
|
|
|
+ public LinkToolTip getToolTip() {
|
|
|
+ return toolTip;
|
|
|
+ }
|
|
|
}
|