|
@@ -57,7 +57,6 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
|
this.control = control;
|
|
|
|
|
|
this.interactor = new VisualisationInteractor(model, control, this);
|
|
|
-
|
|
|
this.addMouseMotionListener(interactor);
|
|
|
this.addMouseListener(interactor);
|
|
|
}
|
|
@@ -104,6 +103,33 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
|
paintDevices(g);
|
|
|
|
|
|
paintDrag(g);
|
|
|
+
|
|
|
+ g.setColor(Color.RED);
|
|
|
+ String modus;
|
|
|
+ switch (interactor.mode) {
|
|
|
+ case VisualisationInteractor.DRAG_CONNECTION:
|
|
|
+ modus="Drag Connection";
|
|
|
+ break;
|
|
|
+ case VisualisationInteractor.DRAG_DEVICE:
|
|
|
+ modus="Drag Device";
|
|
|
+ break;
|
|
|
+ case VisualisationInteractor.DRAG_SELECT:
|
|
|
+ modus="Drag Select";
|
|
|
+ break;
|
|
|
+ case VisualisationInteractor.NOTHING:
|
|
|
+ modus="Nothing";
|
|
|
+ break;
|
|
|
+ case VisualisationInteractor.RIGHTCLICK_MENU:
|
|
|
+ modus="RightClick Menu";
|
|
|
+ break;
|
|
|
+ case VisualisationInteractor.SELECTED:
|
|
|
+ modus="Selected";
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ modus="Uknown";
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ g.drawString("Debug(Modus:"+modus+")", 0, 10);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -117,7 +143,7 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
|
for (SmartDevice s: model.getDevices()) {
|
|
|
int x = s.getX();
|
|
|
int y = s.getY();
|
|
|
- if (s == interactor.dragged) {
|
|
|
+ if(interactor.mode==VisualisationInteractor.DRAG_DEVICE && s == interactor.dragged) {
|
|
|
// Update visualization of dragged object
|
|
|
x = interactor.dragged_x;
|
|
|
y = interactor.dragged_y;
|
|
@@ -160,10 +186,18 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
|
case Connection.HALTED:
|
|
|
connectionState = Color.ORANGE;
|
|
|
break;
|
|
|
+ case Connection.DONE:
|
|
|
+ connectionState = Color.GRAY;
|
|
|
+ break;
|
|
|
+ case Connection.TERMINATED:
|
|
|
+ case Connection.FINISHED:
|
|
|
+ connectionState = Color.RED;
|
|
|
+ break;
|
|
|
default:
|
|
|
- connectionState = Color.GREEN;
|
|
|
+ connectionState = Color.BLUE;
|
|
|
break;
|
|
|
}
|
|
|
+ //g.setColor(connectionState);
|
|
|
/**
|
|
|
* All Devices that are part of the connection
|
|
|
*/
|
|
@@ -180,7 +214,7 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
|
* if broker was removed, paint broker at the average position
|
|
|
*/
|
|
|
for(Port p: c.getParticipants()){
|
|
|
- if(p.getOwner()==interactor.dragged){
|
|
|
+ if(interactor.mode==VisualisationInteractor.DRAG_DEVICE && p.getOwner()==interactor.dragged){
|
|
|
broker_x+=interactor.dragged_x;
|
|
|
broker_y+=interactor.dragged_y;
|
|
|
}else{
|
|
@@ -208,7 +242,7 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
|
if (broker!= sd) {
|
|
|
// Check if dragged object
|
|
|
int s_x, s_y, sd_x, sd_y;
|
|
|
- if (broker != null && broker.getOwner() == interactor.dragged) {
|
|
|
+ if (interactor.mode==VisualisationInteractor.DRAG_DEVICE && broker != null && broker.getOwner() == interactor.dragged) {
|
|
|
s_x = interactor.dragged_x;
|
|
|
s_y = interactor.dragged_y;
|
|
|
} else if(broker==null){
|
|
@@ -221,7 +255,7 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
|
s_x = broker_x;
|
|
|
s_y = broker_y;
|
|
|
}
|
|
|
- if (sd.getOwner() == interactor.dragged) {
|
|
|
+ if (interactor.mode==VisualisationInteractor.DRAG_DEVICE && sd.getOwner() == interactor.dragged) {
|
|
|
sd_x = interactor.dragged_x;
|
|
|
sd_y = interactor.dragged_y;
|
|
|
} else {
|
|
@@ -237,19 +271,22 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
|
for (Port sd : d) {
|
|
|
if(!model.getDevices().contains(sd.getOwner())){
|
|
|
SmartDevice removed = sd.getOwner();
|
|
|
+ g.setColor(Color.RED);
|
|
|
g.fillOval(removed.getX()-control.getDevice_visualization_radius()/4, removed.getY()-control.getDevice_visualization_radius()/4, control.getDevice_visualization_radius()/2, control.getDevice_visualization_radius()/2);
|
|
|
+ }else{
|
|
|
+ g.setColor(connectionState);
|
|
|
}
|
|
|
if (s != sd) {
|
|
|
// Check if dragged object
|
|
|
int s_x, s_y, sd_x, sd_y;
|
|
|
- if (s.getOwner() == interactor.dragged) {
|
|
|
+ if (interactor.mode==VisualisationInteractor.DRAG_DEVICE && s.getOwner() == interactor.dragged) {
|
|
|
s_x = interactor.dragged_x;
|
|
|
s_y = interactor.dragged_y;
|
|
|
} else {
|
|
|
s_x = s.getOwner().getX();
|
|
|
s_y = s.getOwner().getY();
|
|
|
}
|
|
|
- if (sd.getOwner() == interactor.dragged) {
|
|
|
+ if (interactor.mode==VisualisationInteractor.DRAG_DEVICE && sd.getOwner() == interactor.dragged) {
|
|
|
sd_x = interactor.dragged_x;
|
|
|
sd_y = interactor.dragged_y;
|
|
|
} else {
|
|
@@ -270,11 +307,12 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
|
}
|
|
|
// paint new in progress connection, if a connection or link is in
|
|
|
// creation
|
|
|
- g.setColor(Color.ORANGE);
|
|
|
- if (interactor.connectionFrom != null)
|
|
|
+ if (interactor.mode == VisualisationInteractor.DRAG_CONNECTION && interactor.connectionFrom != null){
|
|
|
+ g.setColor(Color.ORANGE);
|
|
|
g.drawLine(interactor.connectionFrom.getX(),
|
|
|
interactor.connectionFrom.getY(), interactor.dragged_x,
|
|
|
interactor.dragged_y);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -282,13 +320,12 @@ public class VisualisationPanel extends JPanel implements Observer {
|
|
|
* @param g
|
|
|
*/
|
|
|
public void paintDrag(Graphics g){
|
|
|
- if(interactor.mode!=VisualisationInteractor.DRAG_SELECT)return;
|
|
|
- //interactor.dragged_x_start
|
|
|
-
|
|
|
- int low_x = interactor.dragged_x<interactor.dragged_x_start?interactor.dragged_x:interactor.dragged_x_start;
|
|
|
- int low_y = interactor.dragged_y<interactor.dragged_y_start?interactor.dragged_y:interactor.dragged_y_start;
|
|
|
- int high_x = interactor.dragged_x>=interactor.dragged_x_start?interactor.dragged_x:interactor.dragged_x_start;
|
|
|
- int high_y = interactor.dragged_y>=interactor.dragged_y_start?interactor.dragged_y:interactor.dragged_y_start;
|
|
|
+ if(interactor.mode!=VisualisationInteractor.DRAG_SELECT)
|
|
|
+ return;
|
|
|
+ int low_x = Math.min(interactor.dragged_x, interactor.dragged_x_start);
|
|
|
+ int low_y = Math.min(interactor.dragged_y, interactor.dragged_y_start);
|
|
|
+ int high_x = Math.max(interactor.dragged_x, interactor.dragged_x_start);
|
|
|
+ int high_y = Math.max(interactor.dragged_y, interactor.dragged_y_start);
|
|
|
g.setColor(Color.BLUE);
|
|
|
g.drawRect(low_x, low_y, high_x-low_x, high_y-low_y);
|
|
|
|