|
@@ -7,7 +7,6 @@ import java.awt.event.KeyEvent;
|
|
|
import java.awt.event.KeyListener;
|
|
|
import java.awt.event.MouseEvent;
|
|
|
import java.awt.event.MouseMotionListener;
|
|
|
-
|
|
|
import java.util.LinkedList;
|
|
|
|
|
|
import javax.swing.JMenu;
|
|
@@ -31,6 +30,7 @@ import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.popups.ConnectionCreationDial
|
|
|
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;
|
|
|
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.util.Utility;
|
|
|
|
|
|
/**
|
|
|
* Listener which detects User Interaction with the {@link VisualisationPanel},
|
|
@@ -607,7 +607,7 @@ public class VisualisationInteractor implements MouseInputListener,
|
|
|
* Check Hover on Link
|
|
|
*/
|
|
|
if(config.isShowLinkToolTips())
|
|
|
- l = checkHoverOnLink(e.getX(),e.getY());
|
|
|
+ l = getLinkVisualizationAtPosition(e.getX(),e.getY());
|
|
|
if(l != null){
|
|
|
if(l != toolTip.getLink() || !toolTip.isEnabled()){
|
|
|
toolTip.setText("Link "+l.getName());
|
|
@@ -626,7 +626,7 @@ public class VisualisationInteractor implements MouseInputListener,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- private Link checkHoverOnLink(int x, int y) {
|
|
|
+ private Link getLinkVisualizationAtPosition(int x, int y) {
|
|
|
// Check is device is inside visualization radius
|
|
|
/**
|
|
|
* Radius of the device
|
|
@@ -644,11 +644,37 @@ public class VisualisationInteractor implements MouseInputListener,
|
|
|
// On which part of Ring ?
|
|
|
//Outside of device ?
|
|
|
int realDistance = (int)Math.round(Math.sqrt((d.getX() - x)*(d.getX() - x)+(d.getY() - y)*(d.getY() - y)));
|
|
|
- if (realDistance > smallRadius && realDistance <= radius) {
|
|
|
- if(!d.getLinks().isEmpty())
|
|
|
- return d.getLinks().get(0);
|
|
|
- //TODO: +Link Detection & Radius
|
|
|
-
|
|
|
+ if (realDistance > smallRadius && realDistance <= radius && !d.getLinks().isEmpty()) {
|
|
|
+ /**
|
|
|
+ * Angle of this point. Counterclockwise, starting at 3 o' clock position
|
|
|
+ */
|
|
|
+ float angle = Utility.getAngle(d.getX(), d.getY(), x, y);
|
|
|
+ /**
|
|
|
+ * Number of Links in the Model
|
|
|
+ */
|
|
|
+ int numberOfLinks = controller.getLinks().size();
|
|
|
+ /**
|
|
|
+ * Angle per Link in "linkSlice degrees"
|
|
|
+ */
|
|
|
+ double linkSlice = Math.min(360.0 / numberOfLinks,90.0);
|
|
|
+ /**
|
|
|
+ * calculate the number of the link
|
|
|
+ */
|
|
|
+ int linkNumber = (int) Math.floor(angle / linkSlice);
|
|
|
+ /**
|
|
|
+ * Return if, there are not so many link
|
|
|
+ */
|
|
|
+ if(linkNumber>=numberOfLinks)
|
|
|
+ return null;
|
|
|
+ /**
|
|
|
+ * Link, which would be at this connection
|
|
|
+ */
|
|
|
+ Link linkAtPosition = (Link) controller.getLinks().toArray()[linkNumber];
|
|
|
+ /**
|
|
|
+ * Return link, if smartDevice contains it
|
|
|
+ */
|
|
|
+ if(d.getLinks().contains(linkAtPosition))
|
|
|
+ return linkAtPosition;
|
|
|
}
|
|
|
}
|
|
|
}
|