|
@@ -16,6 +16,7 @@ import java.util.Observer;
|
|
|
|
|
|
import javax.swing.JPanel;
|
|
import javax.swing.JPanel;
|
|
|
|
|
|
|
|
+import de.tu_darmstadt.tk.SmartHomeNetworkSim.control.LinkColorController;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.control.SettingsController;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.control.SettingsController;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.control.Controller;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.control.Controller;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.control.NetworkController;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.control.NetworkController;
|
|
@@ -26,7 +27,6 @@ import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.SmartDevice;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.util.Pair;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.core.util.Pair;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.VisualisationInteractor;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.VisualisationInteractor;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.util.LinkToolTip;
|
|
import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.util.LinkToolTip;
|
|
-import de.tu_darmstadt.tk.SmartHomeNetworkSim.view.util.Utility;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
* Panel which visualizes the SmartHome Network, it's Devices and Connections
|
|
* Panel which visualizes the SmartHome Network, it's Devices and Connections
|
|
@@ -210,27 +210,16 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
/**
|
|
/**
|
|
* Map of links to Colors and position of the Color
|
|
* Map of links to Colors and position of the Color
|
|
*/
|
|
*/
|
|
- HashMap<Link, Pair<Integer,Color>> linkColors = null;
|
|
|
|
|
|
+ LinkColorController linkColors = config.getLinkColors();
|
|
|
|
|
|
if(config.isShowLinks()){
|
|
if(config.isShowLinks()){
|
|
- linkColors = new HashMap<Link, Pair<Integer,Color>>();
|
|
|
|
int i = 0;
|
|
int i = 0;
|
|
for(Link l: network.getVisibleLinks()){
|
|
for(Link l: network.getVisibleLinks()){
|
|
/**
|
|
/**
|
|
- * Distinct Color as String containing the hex values (128 static ones should be enough)
|
|
|
|
|
|
+ * Index & Color
|
|
*/
|
|
*/
|
|
- String colorHex = Utility.indexcolors[i%Utility.indexcolors.length];
|
|
|
|
- /**
|
|
|
|
- * Color of the given Hex String (Base16)
|
|
|
|
- */
|
|
|
|
- Color color = new Color(
|
|
|
|
- Integer.valueOf(colorHex.substring(1,3),16),
|
|
|
|
- Integer.valueOf(colorHex.substring(3,5),16),
|
|
|
|
- Integer.valueOf(colorHex.substring(5,7),16));
|
|
|
|
- /**
|
|
|
|
- * Put position and Color into the HashMap
|
|
|
|
- */
|
|
|
|
- linkColors.put(l, new Pair<Integer, Color>(i,color));
|
|
|
|
|
|
+ Pair<Integer, Color> p = config.getLinkColors().getColorOfLink(l);
|
|
|
|
+ p.setLeft(i);
|
|
i++;
|
|
i++;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -287,8 +276,8 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
/**
|
|
/**
|
|
* Number and color of the current link
|
|
* Number and color of the current link
|
|
*/
|
|
*/
|
|
- Pair<Integer, Color> linkPos = linkColors.get(l);
|
|
|
|
- if(linkPos==null)continue;//Skip Links, which are not in the model
|
|
|
|
|
|
+ Pair<Integer, Color> linkPos = linkColors.getColorOfLink(l);
|
|
|
|
+ if(linkPos==null||!config.getNetworkTreeSettingsController().isVisible(l))continue;//Skip Links, which are not in the model or hidden
|
|
g.setColor(linkPos.getRight());
|
|
g.setColor(linkPos.getRight());
|
|
g.fillArc(x - deviceRadius - config.getLinkRadius(), y - deviceRadius - config.getLinkRadius(),
|
|
g.fillArc(x - deviceRadius - config.getLinkRadius(), y - deviceRadius - config.getLinkRadius(),
|
|
2 * deviceRadius - 1 + 2 * config.getLinkRadius(), 2 * deviceRadius - 1 + 2*config.getLinkRadius(),
|
|
2 * deviceRadius - 1 + 2 * config.getLinkRadius(), 2 * deviceRadius - 1 + 2*config.getLinkRadius(),
|