Переглянути джерело

fixed capacity position in uppernodecanvas

Kevin Trometer 8 роки тому
батько
коміт
21f5ca349b
2 змінених файлів з 6 додано та 8 видалено
  1. 0 2
      src/ui/view/UnitGraph.java
  2. 6 6
      src/ui/view/UpperNodeCanvas.java

+ 0 - 2
src/ui/view/UnitGraph.java

@@ -208,7 +208,6 @@ public class UnitGraph extends JPanel implements MouseListener, MouseMotionListe
 					g2.drawString(dragInformation, (int) (getMousePosition().getX()) + 10,
 							(int) (getMousePosition().getY()) + 10);
 				} catch (Exception e) {
-					// TODO: handle exception
 				}
 			}
 		}
@@ -448,7 +447,6 @@ public class UnitGraph extends JPanel implements MouseListener, MouseMotionListe
 
 			repaint();
 		}
-		// TODO Siwtch pressed zeugs hier hin
 	}
 
 	@Override

+ 6 - 6
src/ui/view/UpperNodeCanvas.java

@@ -516,7 +516,7 @@ public class UpperNodeCanvas extends JPanel implements MouseListener, MouseMotio
 				g2.drawLine(tempCps.getPosition().x, tempCps.getPosition().y, x, y);
 			}
 		}
-
+		// draw Edges
 		for (CpsEdge con : upperNode.getNodeEdges()) {
 			if (con.getA().getId() != model.getSelectedObjectID() && con.getB().getId() != model.getSelectedObjectID()
 					&& con != edgeHighlight) {
@@ -727,12 +727,12 @@ public class UpperNodeCanvas extends JPanel implements MouseListener, MouseMotio
 						if (showedInformation[0]) {
 							if (ed.getConnected() == 0 || ed.getConnected() == 1) {
 								g2.drawString(ed.getFlow() + "/" + ed.getCapacity(),
-										(ed.getA().getPosition().x + ed.getB().getPosition().x) / 2,
-										(ed.getA().getPosition().y + ed.getB().getPosition().y) / 2);
+										(obj.getPosition().x + (borderPos >> 1)) / 2, (obj.getPosition().y
+												+ (int) (scalediv20 + 5 + (50 + scalediv20 + 10) * count) + 25) / 2);
 							} else {
-								g2.drawString("not connected",
-										(ed.getA().getPosition().x + ed.getB().getPosition().x) / 2,
-										(ed.getA().getPosition().y + ed.getB().getPosition().y) / 2);
+								g2.drawString("not connected", (obj.getPosition().x + (borderPos >> 1)) / 2,
+										(obj.getPosition().y + (int) (scalediv20 + 5 + (50 + scalediv20 + 10) * count)
+												+ 25) / 2);
 							}
 						}
 					}