MyCanvas.java 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126
  1. package ui.view;
  2. import java.awt.BasicStroke;
  3. import java.awt.Color;
  4. import java.awt.Graphics;
  5. import java.awt.Graphics2D;
  6. import java.awt.Image;
  7. import java.awt.Point;
  8. import java.awt.RenderingHints;
  9. import java.awt.datatransfer.UnsupportedFlavorException;
  10. import java.awt.event.ActionEvent;
  11. import java.awt.event.ActionListener;
  12. import java.awt.event.MouseEvent;
  13. import java.awt.event.MouseListener;
  14. import java.awt.event.MouseMotionListener;
  15. import java.awt.geom.Line2D;
  16. import java.io.File;
  17. import java.io.IOException;
  18. import java.util.ArrayList;
  19. import java.util.Timer;
  20. import java.util.TimerTask;
  21. import javax.swing.ImageIcon;
  22. import javax.swing.JLabel;
  23. import javax.swing.JMenuItem;
  24. import javax.swing.JOptionPane;
  25. import javax.swing.JPanel;
  26. import javax.swing.JPopupMenu;
  27. import javax.swing.JScrollPane;
  28. import javax.swing.JTabbedPane;
  29. import com.google.gson.JsonParseException;
  30. import classes.CpsEdge;
  31. import classes.CpsNode;
  32. import classes.CpsUpperNode;
  33. import classes.AbstractCpsObject;
  34. import classes.HolonElement;
  35. import classes.HolonObject;
  36. import classes.HolonSwitch;
  37. import classes.Position;
  38. import classes.SubNet;
  39. import ui.controller.Control;
  40. import ui.controller.UpdateController;
  41. import ui.model.Model;
  42. /**
  43. * This Class is the Canvas. All Objects will be visualized here
  44. *
  45. * @author Gruppe14
  46. */
  47. public class MyCanvas extends JPanel implements MouseListener, MouseMotionListener {
  48. private static final long serialVersionUID = 1L;
  49. private Image img = null; // Contains the image to draw on MyCanvas
  50. private int x = 0;
  51. private int y = 0;
  52. // edge Object Start Point
  53. private Model model;
  54. private final Control controller;
  55. Graphics2D g2; // For Painting
  56. private int cx, cy;
  57. private int sx, sy; // Mark Coords
  58. private float scalediv20;
  59. private Position unPos;
  60. private ArrayList<Position> savePos;
  61. private UpdateController updCon;
  62. ArrayList<HolonElement> dataSelected = new ArrayList<HolonElement>();
  63. ArrayList<AbstractCpsObject> tempSelected = new ArrayList<AbstractCpsObject>();
  64. private boolean[] showedInformation = new boolean[4];
  65. private boolean dragging = false; // for dragging
  66. private boolean dragged = false; // if an object/objects was/were dragged
  67. private boolean drawEdge = false; // for drawing edges
  68. public boolean click = false; // for double click
  69. private boolean doMark = false; // for double click
  70. public AbstractCpsObject tempCps = null;
  71. private CpsEdge edgeHighlight = null;
  72. // PopUpMenu
  73. private JPopupMenu popmenu = new JPopupMenu();
  74. private JMenuItem itemDelete = new JMenuItem(Languages.getLanguage()[98]);
  75. private JMenuItem itemCut = new JMenuItem(Languages.getLanguage()[95]);
  76. private JMenuItem itemCopy = new JMenuItem(Languages.getLanguage()[96]);
  77. public JMenuItem itemPaste = new JMenuItem(Languages.getLanguage()[97]);
  78. public JMenuItem itemGroup = new JMenuItem(Languages.getLanguage()[99]);
  79. public JMenuItem itemUngroup = new JMenuItem(Languages.getLanguage()[100]);
  80. public JMenuItem itemTrack = new JMenuItem(Languages.getLanguage()[101]);
  81. public JMenuItem itemUntrack = new JMenuItem(Languages.getLanguage()[102]);
  82. // Tooltip
  83. private boolean toolTip; // Tooltip on or off
  84. private Position toolTipPos = new Position(); // Tooltip Position
  85. private String toolTipText = "";
  86. private Point mousePosition = new Point(); // Mouse Position when
  87. // rightclicked
  88. // Animation Stuff
  89. javax.swing.Timer animT; // animation Timer
  90. private final int ANIMTIME = 500; // animation Time
  91. private ArrayList<AbstractCpsObject> animCps = null;
  92. private int animFPS = 60;
  93. private int animDuration = ANIMTIME; // animation Duration
  94. private int animDelay = 1000 / animFPS; // animation Delay
  95. private int animSteps = animDuration / animDelay; // animation Steps;
  96. // contains the value of the Capacity for new created Edges
  97. /**
  98. * Constructor.
  99. *
  100. * @param mod
  101. * the Model
  102. * @param control
  103. * the Controller
  104. */
  105. public MyCanvas(Model mod, Control control) {
  106. toolTip = false;
  107. this.controller = control;
  108. this.model = mod;
  109. scalediv20 = model.getScale() / 20;
  110. showedInformation[0] = true;
  111. showedInformation[1] = true;
  112. showedInformation[3] = false;
  113. control.setMaxCapacity(10000);
  114. popmenu.add(itemCut);
  115. popmenu.add(itemCopy);
  116. popmenu.add(itemPaste);
  117. popmenu.add(itemDelete);
  118. popmenu.addSeparator();
  119. popmenu.add(itemGroup);
  120. popmenu.add(itemUngroup);
  121. popmenu.add(itemTrack);
  122. popmenu.add(itemUntrack);
  123. updCon = new UpdateController(mod, control);
  124. itemDelete.setEnabled(false);
  125. itemCut.setEnabled(false);
  126. itemCopy.setEnabled(false);
  127. itemPaste.setEnabled(true);
  128. itemGroup.setEnabled(false);
  129. itemUngroup.setEnabled(false);
  130. itemTrack.setEnabled(false);
  131. itemUntrack.setEnabled(false);
  132. itemCut.setText(Languages.getLanguage()[95]);
  133. itemGroup.addActionListener(new ActionListener() {
  134. @Override
  135. public void actionPerformed(ActionEvent e) {
  136. // calculate uppernode pos (taken from the controller)
  137. unPos = new Position(0, 0);
  138. animCps = new ArrayList<>();
  139. for (AbstractCpsObject cps : model.getSelectedCpsObjects()) {
  140. animCps.add(cps); // add to animation Cps ArrayList
  141. unPos.x += cps.getPosition().x;
  142. unPos.y += cps.getPosition().y;
  143. }
  144. unPos.x /= animCps.size();
  145. unPos.y /= animCps.size();
  146. // save old Position
  147. savePos = new ArrayList<>();
  148. for (int i = 0; i < animCps.size(); i++) {
  149. savePos.add(new Position(0, 0));
  150. savePos.get(i).x = animCps.get(i).getPosition().x;
  151. savePos.get(i).y = animCps.get(i).getPosition().y;
  152. }
  153. animT = new javax.swing.Timer(animDelay, new ActionListener() {
  154. @Override
  155. public void actionPerformed(ActionEvent e) {
  156. if (animDuration - animDelay > 0 && animCps.size() > 1) {
  157. for (int i = 0; i < animCps.size(); i++) {
  158. double x1 = animCps.get(i).getPosition().x - unPos.x;
  159. double y1 = animCps.get(i).getPosition().y - unPos.y;
  160. animCps.get(i).getPosition().x -= x1 / animSteps;
  161. animCps.get(i).getPosition().y -= y1 / animSteps;
  162. }
  163. repaint();
  164. animDuration -= animDelay;
  165. animSteps--;
  166. } else {
  167. animDuration = ANIMTIME;
  168. animSteps = animDuration / animDelay;
  169. animT.stop();
  170. for (int i = 0; i < animCps.size(); i++) {
  171. animCps.get(i).getPosition().x = savePos.get(i).x;
  172. animCps.get(i).getPosition().y = savePos.get(i).y;
  173. }
  174. controller.addUpperNode("NodeOfNode", null, animCps);
  175. controller.calculateStateForCurrentTimeStep();
  176. repaint();
  177. }
  178. }
  179. });
  180. animT.start();
  181. }
  182. });
  183. itemUngroup.addActionListener(new ActionListener() {
  184. @Override
  185. public void actionPerformed(ActionEvent e) {
  186. // save old Position
  187. JTabbedPane tabbedPane = (JTabbedPane) getParent().getParent().getParent();
  188. for (int i = 4; i < tabbedPane.getTabCount(); i++) {
  189. if (((UpperNodeCanvas) ((JScrollPane) tabbedPane.getComponentAt(i)).getViewport()
  190. .getComponent(0)).upperNode.getId() == ((CpsUpperNode) tempCps).getId()) {
  191. tabbedPane.remove(i);
  192. break;
  193. }
  194. }
  195. savePos = new ArrayList<>();
  196. animCps = ((CpsUpperNode) tempCps).getNodes();
  197. controller.delUpperNode((CpsUpperNode) tempCps, null);
  198. for (int i = 0; i < animCps.size(); i++) {
  199. savePos.add(new Position(0, 0));
  200. savePos.get(i).x = animCps.get(i).getPosition().x;
  201. savePos.get(i).y = animCps.get(i).getPosition().y;
  202. }
  203. for (AbstractCpsObject cps : animCps) {
  204. int x = ((CpsUpperNode) tempCps).getPosition().x;
  205. int y = ((CpsUpperNode) tempCps).getPosition().y;
  206. cps.setPosition(new Position(x, y));
  207. }
  208. animT = new javax.swing.Timer(animDelay, new ActionListener() {
  209. @Override
  210. public void actionPerformed(ActionEvent e) {
  211. if (animDuration - animDelay >= 0) {
  212. for (int i = 0; i < animCps.size(); i++) {
  213. double x1 = animCps.get(i).getPosition().x - savePos.get(i).x;
  214. double y1 = animCps.get(i).getPosition().y - savePos.get(i).y;
  215. animCps.get(i).getPosition().x -= x1 / animSteps;
  216. animCps.get(i).getPosition().y -= y1 / animSteps;
  217. }
  218. repaint();
  219. animDuration -= animDelay;
  220. animSteps--;
  221. } else {
  222. animDuration = ANIMTIME;
  223. animSteps = animDuration / animDelay;
  224. animT.stop();
  225. for (int i = 0; i < animCps.size(); i++) {
  226. animCps.get(i).getPosition().x = savePos.get(i).x;
  227. animCps.get(i).getPosition().y = savePos.get(i).y;
  228. }
  229. controller.calculateStateForCurrentTimeStep();
  230. repaint();
  231. }
  232. }
  233. });
  234. animT.start();
  235. }
  236. });
  237. // adds the selected object(s) to the statistic panel
  238. itemTrack.addActionListener(new ActionListener() {
  239. @Override
  240. public void actionPerformed(ActionEvent e) {
  241. for (AbstractCpsObject o : model.getSelectedCpsObjects()) {
  242. boolean found = false;
  243. if (controller.getTrackingObj() != null) {
  244. if (controller.getTrackingObj().contains(o)) {
  245. found = true;
  246. }
  247. }
  248. if (!found) {
  249. controller.addTrackingObj(o);
  250. if (o instanceof HolonObject) {
  251. ((HolonObject) o).updateTrackingInfo();
  252. }
  253. }
  254. controller.addTextToConsole("Tracking: ", Color.BLACK, 12, false, false, false);
  255. controller.addTextToConsole("" + o.getName(), Color.BLUE, 12, true, false, false);
  256. controller.addTextToConsole(", ID:", Color.BLACK, 12, false, false, false);
  257. controller.addTextToConsole("" + o.getId(), Color.RED, 12, true, false, true);
  258. }
  259. }
  260. });
  261. itemUntrack.addActionListener(new ActionListener() {
  262. @Override
  263. public void actionPerformed(ActionEvent e) {
  264. for (AbstractCpsObject o : model.getSelectedCpsObjects()) {
  265. if (o instanceof HolonObject) {
  266. boolean found = false;
  267. if (controller.getTrackingObj() != null) {
  268. for (AbstractCpsObject obj : controller.getTrackingObj()) {
  269. if (obj instanceof HolonObject) {
  270. if (obj.getId() == o.getId()) {
  271. found = true;
  272. }
  273. }
  274. }
  275. }
  276. if (found) {
  277. // Removed from tracking array and tracking
  278. // information reseted
  279. controller.removeTrackingObj((HolonObject) o);
  280. ((HolonObject) o).setTrackingProd(new float[100]);
  281. ((HolonObject) o).setTrackingCons(new float[100]);
  282. }
  283. controller.addTextToConsole("Untracking: ", Color.BLACK, 12, false, false, false);
  284. controller.addTextToConsole("" + o.getName(), Color.BLUE, 12, true, false, false);
  285. controller.addTextToConsole(", ID:", Color.BLACK, 12, false, false, false);
  286. controller.addTextToConsole("" + o.getId(), Color.RED, 12, true, false, true);
  287. }
  288. }
  289. }
  290. });
  291. itemDelete.addActionListener(new ActionListener() {
  292. @Override
  293. public void actionPerformed(ActionEvent e) {
  294. // Remove the selected Object objects
  295. boolean save = false;
  296. for (int j = 0; j < model.getSelectedCpsObjects().size(); j++) {
  297. AbstractCpsObject cps = model.getSelectedCpsObjects().get(j);
  298. if (j == model.getSelectedCpsObjects().size() - 1)
  299. save = true;
  300. controller.delCanvasObject(cps, save);
  301. controller.removeTrackingObj(cps);
  302. // Remove UpperNodeTab if UpperNode deleted
  303. if (cps instanceof CpsUpperNode) {
  304. JTabbedPane tabbedPane = (JTabbedPane) getParent().getParent().getParent();
  305. for (int i = 4; i < tabbedPane.getTabCount(); i++) {
  306. if (((UpperNodeCanvas) ((JScrollPane) tabbedPane.getComponentAt(i)).getViewport()
  307. .getComponent(0)).upperNode.getId() == cps.getId()) {
  308. tabbedPane.remove(i);
  309. i = tabbedPane.getTabCount();
  310. }
  311. }
  312. }
  313. toolTip = false;
  314. }
  315. model.getSelectedCpsObjects().clear();
  316. tempCps = null;
  317. repaint();
  318. }
  319. });
  320. itemCut.addActionListener(new ActionListener() {
  321. @Override
  322. public void actionPerformed(ActionEvent e) {
  323. controller.cut(null);
  324. ;
  325. itemPaste.setEnabled(true);
  326. repaint();
  327. }
  328. });
  329. itemCopy.addActionListener(new ActionListener() {
  330. @Override
  331. public void actionPerformed(ActionEvent e) {
  332. controller.copy(null);
  333. itemPaste.setEnabled(true);
  334. repaint();
  335. }
  336. });
  337. itemPaste.addActionListener(new ActionListener() {
  338. @Override
  339. public void actionPerformed(ActionEvent e) {
  340. try {
  341. controller.paste(null, mousePosition);
  342. } catch (JsonParseException | UnsupportedFlavorException | IOException e1) {
  343. // TODO Auto-generated catch block
  344. JLabel message = new JLabel("The Clipboard information cannot be pastet into Application.");
  345. JOptionPane.showMessageDialog(null, message, "", JOptionPane.ERROR_MESSAGE);
  346. }
  347. repaint();
  348. }
  349. });
  350. this.addMouseListener(this);
  351. this.addMouseMotionListener(this);
  352. }
  353. /**
  354. * Paints all Components on the Canvas.
  355. *
  356. * @param g
  357. * Graphics
  358. */
  359. public void paintComponent(Graphics g) {
  360. String maxCap;
  361. super.paintComponent(g);
  362. // Rendering
  363. g2 = (Graphics2D) g;
  364. RenderingHints rh = new RenderingHints(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
  365. g2.setRenderingHints(rh);
  366. // Paint the Background
  367. if (!model.getCanvasImagePath().isEmpty()) {
  368. img = new ImageIcon(model.getCanvasImagePath()).getImage();
  369. switch (model.getCanvasImageMode()) {
  370. case BackgroundPopUp.IMAGE_PIXELS:
  371. g2.drawImage(img, 0, 0, img.getWidth(null), img.getHeight(null), null);
  372. break;
  373. case BackgroundPopUp.STRETCHED:
  374. g2.drawImage(img, 0, 0, model.getCanvasX(), model.getCanvasY(), null);
  375. break;
  376. case BackgroundPopUp.CUSTOM:
  377. g2.drawImage(img, 0, 0, model.getCanvasImageWidth(), model.getCanvasImageHeight(), null);
  378. break;
  379. default:
  380. break;
  381. }
  382. }
  383. // Test SubNet Coloring
  384. int i = 0;
  385. for (SubNet s : controller.getSimManager().getSubNets()) {
  386. if (model.getSubNetColors().size() - 1 < i) {
  387. controller.addSubNetColor(new Color((int) (Math.random() * 255), (int) (Math.random() * 255),
  388. (int) (Math.random() * 255)));
  389. }
  390. if (showedInformation[3]) {
  391. for (HolonObject cps : s.getObjects()) {
  392. cps.setBorderColor(model.getSubNetColors().get(i));
  393. }
  394. }
  395. i++;
  396. }
  397. // drawEdges that is being dragged
  398. if (drawEdge) {
  399. g2.setColor(Color.BLACK);
  400. g2.setStroke(new BasicStroke(2));
  401. g2.drawLine(tempCps.getPosition().x, tempCps.getPosition().y, x, y);
  402. }
  403. for (CpsEdge con : model.getEdgesOnCanvas()) {
  404. if (con.getA().getId() != model.getSelectedObjectID() && con.getB().getId() != model.getSelectedObjectID()
  405. && con != edgeHighlight) {
  406. if (con.getConnected() == 0) {
  407. if (con.getState()) {
  408. g2.setColor(Color.GREEN);
  409. if (con.getCapacity() != -1) {
  410. g2.setStroke(new BasicStroke(Math.min(((con.getFlow() / con.getCapacity() * 3) + 1), 4)));
  411. }
  412. } else {
  413. g2.setColor(Color.RED);
  414. g2.setStroke(new BasicStroke(2));
  415. }
  416. } else {
  417. g2.setColor(Color.DARK_GRAY);
  418. g2.setStroke(new BasicStroke(2));
  419. }
  420. g2.drawLine(con.getA().getPosition().x, con.getA().getPosition().y, con.getB().getPosition().x,
  421. con.getB().getPosition().y);
  422. if (con.getCapacity() == -1) {
  423. maxCap = Character.toString('\u221e');
  424. } else if (con.getCapacity() == -2) {
  425. maxCap = "???";
  426. } else {
  427. maxCap = String.valueOf(con.getCapacity());
  428. }
  429. if (showedInformation[0]) {
  430. if (con.getConnected() == 0 || con.getConnected() == 1) {
  431. g2.drawString(con.getFlow() + "/" + maxCap,
  432. (con.getA().getPosition().x + con.getB().getPosition().x) / 2,
  433. (con.getA().getPosition().y + con.getB().getPosition().y) / 2);
  434. } else {
  435. g2.drawString("not connected", (con.getA().getPosition().x + con.getB().getPosition().x) / 2,
  436. (con.getA().getPosition().y + con.getB().getPosition().y) / 2);
  437. }
  438. }
  439. }
  440. }
  441. // Highlighted Edge
  442. if (model.getSelectedObjectID() > 0 || !model.getSelectedCpsObjects().isEmpty() || !tempSelected.isEmpty()) {
  443. g2.setColor(Color.BLUE);
  444. for (CpsEdge con : model.getEdgesOnCanvas()) {
  445. if (con.getFlow() <= con.getCapacity()) {
  446. g2.setStroke(new BasicStroke(Math.min(((con.getFlow() / con.getCapacity() * 3) + 1), 4)));
  447. } else {
  448. g2.setStroke(new BasicStroke(2));
  449. }
  450. if (con.getA().getId() == model.getSelectedObjectID()
  451. || model.getSelectedCpsObjects().contains(con.getA()) || tempSelected.contains(con.getA())
  452. || con.getB().getId() == model.getSelectedObjectID()
  453. || model.getSelectedCpsObjects().contains(con.getB())
  454. || tempSelected.contains(con.getB()) && con != edgeHighlight) {
  455. g2.drawLine(con.getA().getPosition().x, con.getA().getPosition().y, con.getB().getPosition().x,
  456. con.getB().getPosition().y);
  457. if (con.getCapacity() == -1) {
  458. maxCap = Character.toString('\u221e');
  459. } else if (con.getCapacity() == -2) {
  460. maxCap = "???";
  461. } else {
  462. maxCap = String.valueOf(con.getCapacity());
  463. }
  464. if (showedInformation[0]) {
  465. if (con.getConnected() == 0 || con.getConnected() == 1) {
  466. g2.drawString(con.getFlow() + "/" + maxCap,
  467. (con.getA().getPosition().x + con.getB().getPosition().x) / 2,
  468. (con.getA().getPosition().y + con.getB().getPosition().y) / 2);
  469. } else {
  470. g2.drawString("not connected",
  471. (con.getA().getPosition().x + con.getB().getPosition().x) / 2,
  472. (con.getA().getPosition().y + con.getB().getPosition().y) / 2);
  473. }
  474. }
  475. }
  476. }
  477. } else if (edgeHighlight != null) {
  478. g2.setColor(Color.BLUE);
  479. if (edgeHighlight.getFlow() <= edgeHighlight.getCapacity()) {
  480. g2.setStroke(new BasicStroke(
  481. Math.min(((edgeHighlight.getFlow() / edgeHighlight.getCapacity() * 3) + 1), 4)));
  482. } else {
  483. g2.setStroke(new BasicStroke(2));
  484. }
  485. g2.drawLine(edgeHighlight.getA().getPosition().x, edgeHighlight.getA().getPosition().y,
  486. edgeHighlight.getB().getPosition().x, edgeHighlight.getB().getPosition().y);
  487. if (edgeHighlight.getCapacity() == -1) {
  488. maxCap = Character.toString('\u221e');
  489. } else if (edgeHighlight.getCapacity() == -2) {
  490. maxCap = "???";
  491. } else {
  492. maxCap = String.valueOf(edgeHighlight.getCapacity());
  493. }
  494. if (showedInformation[0]) {
  495. g2.drawString(edgeHighlight.getFlow() + "/" + maxCap,
  496. (edgeHighlight.getA().getPosition().x + edgeHighlight.getB().getPosition().x) / 2,
  497. (edgeHighlight.getA().getPosition().y + edgeHighlight.getB().getPosition().y) / 2);
  498. }
  499. }
  500. // Objects
  501. for (AbstractCpsObject cps : model.getObjectsOnCanvas()) {
  502. // Border Highlighting
  503. if (showedInformation[3]) {
  504. g2.setColor(cps.getBorderColor());
  505. if (g2.getColor() != Color.WHITE && !(cps instanceof CpsNode)) {
  506. g2.fillRect((int) (cps.getPosition().x - controller.getScaleDiv2() - scalediv20 - 3),
  507. (int) (cps.getPosition().y - controller.getScaleDiv2() - scalediv20 - 3),
  508. (int) (controller.getScale() + ((scalediv20 + 3) * 2)),
  509. (int) (controller.getScale() + ((scalediv20 + 3) * 2)));
  510. }
  511. }
  512. // node image
  513. if (cps instanceof CpsNode && (cps == tempCps || model.getSelectedCpsObject() == cps
  514. || model.getSelectedCpsObjects().contains(cps) || tempSelected.contains(cps))) {
  515. img = new ImageIcon(this.getClass().getResource("/Images/node_selected.png")).getImage();
  516. } else {
  517. if (cps instanceof HolonSwitch) {
  518. if (((HolonSwitch) cps).getActiveAt()[model.getCurIteration()]) {
  519. ((HolonSwitch) cps).setAutoState(true);
  520. } else {
  521. ((HolonSwitch) cps).setAutoState(false);
  522. }
  523. }
  524. // Highlighting
  525. if ((cps == tempCps && model.getSelectedCpsObjects().size() == 0 && tempSelected.size() == 0)
  526. || model.getSelectedCpsObjects().contains(cps) || tempSelected.contains(cps)) {
  527. g2.setColor(Color.BLUE);
  528. g2.fillRect((int) (cps.getPosition().x - controller.getScaleDiv2() - scalediv20),
  529. (int) (cps.getPosition().y - controller.getScaleDiv2() - scalediv20),
  530. (int) (controller.getScale() + (scalediv20 * 2)),
  531. (int) (controller.getScale() + (scalediv20 * 2)));
  532. if (showedInformation[1] && cps instanceof HolonObject) {
  533. g2.setColor(Color.BLACK);
  534. float totalEnergy = ((HolonObject) cps).getCurrentEnergyAtTimeStep(model.getCurIteration());
  535. g2.drawString(Float.toString(totalEnergy), cps.getPosition().x - controller.getScaleDiv2(),
  536. cps.getPosition().y - controller.getScaleDiv2() - 10);
  537. }
  538. } else if (cps instanceof HolonObject) {
  539. g2.setColor(((HolonObject) cps).getColor());
  540. g2.fillRect((int) (cps.getPosition().x - controller.getScaleDiv2() - scalediv20),
  541. (int) (cps.getPosition().y - controller.getScaleDiv2() - scalediv20),
  542. (int) (controller.getScale() + (scalediv20 * 2)),
  543. (int) (controller.getScale() + (scalediv20 * 2)));
  544. if (showedInformation[1]) {
  545. g2.setColor(Color.BLACK);
  546. float totalEnergy = ((HolonObject) cps).getCurrentEnergyAtTimeStep(model.getCurIteration());
  547. g2.drawString(Float.toString(totalEnergy), cps.getPosition().x - controller.getScaleDiv2(),
  548. cps.getPosition().y - controller.getScaleDiv2() - 10);
  549. }
  550. }
  551. // draw image
  552. File checkPath = new File(cps.getImage());
  553. if (checkPath.exists()) {
  554. img = new ImageIcon(cps.getImage()).getImage();
  555. } else {
  556. img = new ImageIcon(this.getClass().getResource(cps.getImage())).getImage();
  557. }
  558. }
  559. g2.drawImage(img, cps.getPosition().x - controller.getScaleDiv2(),
  560. cps.getPosition().y - controller.getScaleDiv2(), controller.getScale(), controller.getScale(),
  561. null);
  562. }
  563. // Dragged marker Highlighting
  564. if (doMark) {
  565. g2.setColor(Color.BLACK);
  566. g2.setStroke(new BasicStroke(1));
  567. if (sx > x && sy > y) {
  568. g2.drawRect(x, y, sx - x, sy - y);
  569. } else if (sx < x && sy < y) {
  570. g2.drawRect(sx, sy, x - sx, y - sy);
  571. } else if (sx >= x) {
  572. g2.drawRect(x, sy, sx - x, y - sy);
  573. } else if (sy >= y) {
  574. g2.drawRect(sx, y, x - sx, sy - y);
  575. }
  576. }
  577. // Tooltip
  578. if (toolTip) {
  579. g2.setColor(new Color(255, 225, 150));
  580. g2.setStroke(new BasicStroke(1));
  581. int textWidth = g.getFontMetrics().stringWidth(toolTipText) + 2; // Text
  582. // width
  583. int fixXPos = toolTipPos.x - (textWidth >> 1) + model.getScaleDiv2(); // Position
  584. // fixed
  585. // x
  586. // Position
  587. // to
  588. // the
  589. // screen
  590. int fixYPos = toolTipPos.y; //// Position fixed y Position to the
  591. //// screen
  592. if (fixXPos < 0) {
  593. fixXPos = 0;
  594. } else if (fixXPos + textWidth + 1 > this.getWidth()) {
  595. fixXPos -= (fixXPos + textWidth + 1) - this.getWidth();
  596. }
  597. if (fixYPos + 16 > this.getHeight()) {
  598. fixYPos -= (fixYPos + 16) - this.getHeight();
  599. }
  600. g2.fillRect(fixXPos, fixYPos, textWidth, 15);
  601. g2.setColor(Color.BLACK);
  602. g2.drawRect(fixXPos, fixYPos, textWidth, 15);
  603. g2.drawString(toolTipText, fixXPos + 2, fixYPos + 12);
  604. }
  605. }
  606. @Override
  607. public void mouseClicked(MouseEvent e) {
  608. if (e.getButton() == e.BUTTON1) {
  609. if (model.getPropertyTable().getRowCount() > 0) {
  610. for (int i = model.getPropertyTable().getRowCount() - 1; i > -1; i--) {
  611. model.getPropertyTable().removeRow(i);
  612. }
  613. }
  614. updCon.paintProperties(tempCps);
  615. updCon.refreshTableHolonElement(model.getMultiTable(), model.getSingleTable());
  616. updCon.refreshTableProperties(model.getPropertyTable());
  617. }
  618. }
  619. @Override
  620. public void mouseEntered(MouseEvent e) {
  621. }
  622. @Override
  623. public void mouseExited(MouseEvent e) {
  624. }
  625. @Override
  626. public void mousePressed(MouseEvent e) {
  627. tempCps = null;
  628. dataSelected = null;
  629. edgeHighlight = null;
  630. controller.setSelecteEdge(null);
  631. // Object Selection
  632. for (AbstractCpsObject cps : model.getObjectsOnCanvas()) {
  633. cx = cps.getPosition().x - controller.getScaleDiv2();
  634. cy = cps.getPosition().y - controller.getScaleDiv2();
  635. if (x - controller.getScale() <= cx && y - controller.getScale() <= cy && x >= cx && y >= cy) {
  636. tempCps = cps;
  637. controller.addTextToConsole("Selected: ", Color.BLACK, 12, false, false, false);
  638. controller.addTextToConsole("" + cps.getName(), Color.BLUE, 12, true, false, false);
  639. controller.addTextToConsole(", ID:", Color.BLACK, 12, false, false, false);
  640. controller.addTextToConsole("" + cps.getId(), Color.RED, 12, true, false, true);
  641. dragging = true;
  642. if (e.isControlDown() && tempCps != null) {
  643. if (model.getSelectedCpsObjects().contains(tempCps)) {
  644. controller.deleteSelectedObject(tempCps);
  645. } else {
  646. controller.addSelectedObject(tempCps);
  647. }
  648. }
  649. // If drawing an Edge (CTRL down)
  650. if (tempCps.getClass() == HolonObject.class) {
  651. HolonObject tempObj = ((HolonObject) tempCps);
  652. dataSelected = tempObj.getElements();
  653. }
  654. if (e.isShiftDown()) {
  655. drawEdge = true;
  656. dragging = false;
  657. }
  658. }
  659. }
  660. // Edge Selection
  661. if (tempCps == null) {
  662. edgeHighlight = mousePositionOnEdge(x, y);
  663. controller.setSelecteEdge(edgeHighlight);
  664. controller.setSelectedObjectID(0);
  665. if (!e.isControlDown() && e.getButton() != MouseEvent.BUTTON3) {
  666. model.getSelectedCpsObjects().clear();
  667. }
  668. }
  669. if (edgeHighlight == null && tempCps == null) {
  670. sx = e.getX();
  671. sy = e.getY();
  672. doMark = true;
  673. }
  674. repaint();
  675. }
  676. @Override
  677. public void mouseReleased(MouseEvent e) {
  678. x = e.getX();
  679. y = e.getY();
  680. dragging = false;
  681. if (drawEdge) {
  682. drawEdge = false;
  683. drawDeleteEdge();
  684. }
  685. if (dragged == true) {
  686. try {
  687. controller.autoSave();
  688. } catch (IOException ex) {
  689. // TODO Auto-generated catch block
  690. ex.printStackTrace();
  691. }
  692. }
  693. if (!e.isControlDown() && dragged == false && tempCps != null && e.BUTTON3 != e.getButton()) {
  694. model.getSelectedCpsObjects().clear();
  695. controller.addSelectedObject(tempCps);
  696. }
  697. dragged = false;
  698. // Rightclick List
  699. if (e.getButton() == MouseEvent.BUTTON3) {
  700. if (e.getButton() == MouseEvent.BUTTON3 && tempCps != null) {
  701. itemDelete.setEnabled(true);
  702. itemCut.setEnabled(true);
  703. itemCopy.setEnabled(true);
  704. if (tempCps != null) {
  705. itemGroup.setEnabled(true);
  706. itemTrack.setEnabled(true);
  707. itemUntrack.setEnabled(true);
  708. }
  709. if (tempCps instanceof CpsUpperNode)
  710. itemUngroup.setEnabled(true);
  711. else
  712. itemUngroup.setEnabled(false);
  713. if (model.getSelectedCpsObjects().size() == 0) {
  714. controller.addSelectedObject(tempCps);
  715. }
  716. } else {
  717. itemCut.setEnabled(false);
  718. itemCopy.setEnabled(false);
  719. itemDelete.setEnabled(false);
  720. itemGroup.setEnabled(false);
  721. itemUngroup.setEnabled(false);
  722. itemTrack.setEnabled(false);
  723. itemUntrack.setEnabled(false);
  724. }
  725. mousePosition = this.getMousePosition();
  726. popmenu.show(e.getComponent(), e.getX(), e.getY());
  727. }
  728. if (doMark) {
  729. doMark = false;
  730. for (AbstractCpsObject cps : tempSelected) {
  731. if (!model.getSelectedCpsObjects().contains(cps)) {
  732. controller.addSelectedObject(cps);
  733. }
  734. }
  735. controller.getObjectsInDepth();
  736. tempSelected.clear();
  737. }
  738. if (doubleClick() && tempCps != null && tempCps instanceof HolonSwitch && MouseEvent.BUTTON3 != e.getButton()) {
  739. ((HolonSwitch) tempCps).switchState();
  740. }
  741. controller.calculateStateForTimeStep(model.getCurIteration());
  742. repaint();
  743. }
  744. @Override
  745. public void mouseDragged(MouseEvent e) {
  746. // If Edge is drawn
  747. x = e.getX();
  748. y = e.getY();
  749. if (!model.getSelectedCpsObjects().contains(tempCps) && doMark == false) {
  750. model.getSelectedCpsObjects().clear();
  751. if (tempCps != null) {
  752. controller.addSelectedObject(tempCps);
  753. }
  754. }
  755. if (dragging) {
  756. try {
  757. dragged = true;
  758. float xDist, yDist; // Distance
  759. x = e.getX();
  760. y = e.getY();
  761. // Make sure its in bounds
  762. if (e.getX() < controller.getScaleDiv2())
  763. x = controller.getScaleDiv2();
  764. else if (e.getX() > this.getWidth() - controller.getScaleDiv2())
  765. x = this.getWidth() - controller.getScaleDiv2();
  766. if (e.getY() < controller.getScaleDiv2())
  767. y = controller.getScaleDiv2();
  768. else if (e.getY() > this.getHeight() - controller.getScaleDiv2())
  769. y = this.getHeight() - controller.getScaleDiv2();
  770. // Distance
  771. xDist = x - tempCps.getPosition().x;
  772. yDist = y - tempCps.getPosition().y;
  773. tempCps.setPosition(x, y); // Drag Position
  774. // ToolTipText Position and name
  775. toolTip = true;
  776. toolTipText = tempCps.getName() + ", " + tempCps.getId();
  777. toolTipPos.x = tempCps.getPosition().x - controller.getScaleDiv2();
  778. toolTipPos.y = tempCps.getPosition().y + controller.getScaleDiv2();
  779. // All Selected Objects
  780. for (AbstractCpsObject cps : model.getSelectedCpsObjects()) {
  781. if (cps != tempCps) {
  782. x = (int) (cps.getPosition().x + xDist);
  783. y = (int) (cps.getPosition().y + yDist);
  784. // Make sure its in bounds
  785. if (x <= controller.getScaleDiv2())
  786. x = controller.getScaleDiv2();
  787. else if (x > this.getWidth() - controller.getScaleDiv2())
  788. x = this.getWidth() - controller.getScaleDiv2();
  789. if (y <= controller.getScaleDiv2())
  790. y = controller.getScaleDiv2();
  791. else if (y > this.getHeight() - controller.getScaleDiv2())
  792. y = this.getHeight() - controller.getScaleDiv2();
  793. cps.setPosition(x, y);
  794. }
  795. }
  796. repaint();
  797. } catch (Exception eex) {
  798. }
  799. }
  800. // Mark Objects
  801. if (doMark) {
  802. tempSelected.clear();
  803. for (AbstractCpsObject cps : model.getObjectsOnCanvas()) {
  804. int x1 = sx, x2 = x, y1 = sy, y2 = y;
  805. if (sx >= x) {
  806. x1 = x;
  807. x2 = sx;
  808. }
  809. if (sy >= y) {
  810. y1 = y;
  811. y2 = sy;
  812. }
  813. if (x1 <= cps.getPosition().x + model.getScaleDiv2() && y1 <= cps.getPosition().y + model.getScaleDiv2()
  814. && x2 >= cps.getPosition().x && y2 >= cps.getPosition().y) {
  815. tempSelected.add(cps);
  816. }
  817. }
  818. }
  819. repaint();
  820. }
  821. @Override
  822. public void mouseMoved(MouseEvent e) {
  823. x = e.getX();
  824. y = e.getY();
  825. // Everytghing for the tooltip :)
  826. boolean on = false;
  827. for (AbstractCpsObject cps : model.getObjectsOnCanvas()) {
  828. cx = cps.getPosition().x - controller.getScaleDiv2();
  829. cy = cps.getPosition().y - controller.getScaleDiv2();
  830. if (x - controller.getScale() <= cx && y - controller.getScale() <= cy && x >= cx && y >= cy) {
  831. on = true;
  832. toolTipPos.x = cps.getPosition().x - controller.getScaleDiv2();
  833. toolTipPos.y = cps.getPosition().y + controller.getScaleDiv2();
  834. toolTipText = cps.getName() + ", " + cps.getId();
  835. }
  836. }
  837. if (on) {
  838. toolTip = true;
  839. } else {
  840. toolTip = false;
  841. }
  842. repaint();
  843. }
  844. /**
  845. * Draws or Deletes an Edge.
  846. */
  847. private void drawDeleteEdge() {
  848. boolean node = true;
  849. boolean newEdge = true;
  850. boolean onEdge = true;
  851. boolean deleteNode = false;
  852. CpsEdge e = null;
  853. for (AbstractCpsObject cps : model.getObjectsOnCanvas()) {
  854. cx = cps.getPosition().x - controller.getScaleDiv2();
  855. cy = cps.getPosition().y - controller.getScaleDiv2();
  856. if (x - controller.getScale() <= cx && y - controller.getScale() <= cy && x >= cx && y >= cy
  857. && cps != tempCps) {
  858. node = false;
  859. onEdge = false;
  860. for (CpsEdge p : tempCps.getConnections()) {
  861. if ((p.getA() == tempCps && p.getB() == cps) || (p.getB() == tempCps && p.getA() == cps)) {
  862. newEdge = false;
  863. e = p;
  864. }
  865. }
  866. if (!newEdge) {
  867. controller.removeEdgesOnCanvas(e);
  868. // Node ohne Edge?
  869. if (e.getA().getClass() == CpsNode.class && e.getA().getConnections().isEmpty()) {
  870. tempCps = e.getA();
  871. deleteNode = true;
  872. }
  873. if (e.getB().getClass() == CpsNode.class && e.getB().getConnections().isEmpty()) {
  874. deleteNode = true;
  875. }
  876. }
  877. if (newEdge) {
  878. e = new CpsEdge(cps, tempCps, model.getMaxCapacity());
  879. controller.addEdgeOnCanvas(e);
  880. }
  881. }
  882. }
  883. // Edge auf eine Edge gezogen?
  884. if (onEdge) {
  885. CpsEdge p = mousePositionOnEdge(x, y);
  886. if (p != null) {
  887. CpsEdge e1 = null;
  888. CpsEdge e2 = null;
  889. node = false;
  890. CpsNode n = new CpsNode("Node");
  891. n.setPosition(x, y);
  892. controller.addObjectCanvas(n);
  893. AbstractCpsObject r, k;
  894. r = p.getA();
  895. k = p.getB();
  896. e = new CpsEdge(n, tempCps, model.getMaxCapacity());
  897. e1 = new CpsEdge(n, r, model.getMaxCapacity());
  898. e2 = new CpsEdge(n, k, model.getMaxCapacity());
  899. controller.removeEdgesOnCanvas(p);
  900. controller.addEdgeOnCanvas(e);
  901. controller.addEdgeOnCanvas(e1);
  902. controller.addEdgeOnCanvas(e2);
  903. }
  904. }
  905. // ins leere Gedragged
  906. if (node) {
  907. CpsNode n = new CpsNode("Node");
  908. n.setPosition(x, y);
  909. controller.addObjectCanvas(n);
  910. e = new CpsEdge(n, tempCps, model.getMaxCapacity());
  911. controller.addEdgeOnCanvas(e);
  912. }
  913. // Wenn ein Node ohne Connections da ist
  914. if (deleteNode) {
  915. controller.delCanvasObject(tempCps, true);
  916. tempCps = null;
  917. }
  918. }
  919. /**
  920. * Checks if the mouse is on an Edge.
  921. *
  922. * @param x
  923. * Position of the Mouse
  924. * @param y
  925. * Position of the Mouse
  926. *
  927. * @return CpsEdge the Mouse is on, null if the mouse is not on an Edge
  928. */
  929. public CpsEdge mousePositionOnEdge(int x, int y) {
  930. x += controller.getScaleDiv2();
  931. y += controller.getScaleDiv2();
  932. int lx, ly, hx, hy;
  933. for (CpsEdge p : model.getEdgesOnCanvas()) {
  934. Line2D l = new Line2D.Float(p.getA().getPosition().x, p.getA().getPosition().y, p.getB().getPosition().x,
  935. p.getB().getPosition().y);
  936. if (p.getA().getPosition().x > p.getB().getPosition().x) {
  937. hx = p.getA().getPosition().x + model.getScaleDiv2() + 7;
  938. lx = p.getB().getPosition().x + model.getScaleDiv2() - 7;
  939. } else {
  940. lx = p.getA().getPosition().x + model.getScaleDiv2() - 7;
  941. hx = p.getB().getPosition().x + model.getScaleDiv2() + 7;
  942. }
  943. if (p.getA().getPosition().y > p.getB().getPosition().y) {
  944. hy = p.getA().getPosition().y + model.getScaleDiv2() + 7;
  945. ly = p.getB().getPosition().y + model.getScaleDiv2() - 7;
  946. } else {
  947. ly = p.getA().getPosition().y + model.getScaleDiv2() - 7;
  948. hy = p.getB().getPosition().y + model.getScaleDiv2() + 7;
  949. }
  950. // distance from a point to a line and between both Objects
  951. if (l.ptLineDistSq(x - model.getScaleDiv2(), y - model.getScaleDiv2()) < 20 && x > lx && x < hx && y > ly
  952. && y < hy) {
  953. return p;
  954. }
  955. }
  956. return null;
  957. }
  958. public void updateLanguages() {
  959. itemCut.setText(Languages.getLanguage()[95]);
  960. itemCopy.setText(Languages.getLanguage()[96]);
  961. itemPaste.setText(Languages.getLanguage()[97]);
  962. itemDelete.setText(Languages.getLanguage()[98]);
  963. itemGroup.setText(Languages.getLanguage()[99]);
  964. itemUngroup.setText(Languages.getLanguage()[100]);
  965. itemTrack.setText(Languages.getLanguage()[101]);
  966. itemUntrack.setText(Languages.getLanguage()[102]);
  967. }
  968. /**
  969. * Checks if a double click was made.
  970. *
  971. * @return
  972. *
  973. * @return true if doublecklick, false if not
  974. */
  975. private boolean doubleClick() {
  976. if (click) {
  977. click = false;
  978. return true;
  979. } else {
  980. click = true;
  981. Timer t = new Timer("doubleclickTimer", false);
  982. t.schedule(new TimerTask() {
  983. @Override
  984. public void run() {
  985. click = false;
  986. }
  987. }, 500);
  988. }
  989. return false;
  990. }
  991. /**
  992. * Set if Information should be shown.
  993. *
  994. * @param connection
  995. * boolean for conecction
  996. * @param object
  997. * boolean for objects
  998. */
  999. public void setShowedInformation(boolean connection, boolean object, boolean border) {
  1000. showedInformation[0] = connection;
  1001. showedInformation[1] = object;
  1002. showedInformation[3] = border;
  1003. }
  1004. /**
  1005. * Returns if Information should be shown.
  1006. *
  1007. * @return Array of boolean [0] = connection, [1] = objects
  1008. */
  1009. public boolean[] getShowedInformation() {
  1010. return showedInformation;
  1011. }
  1012. }