1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-03 09:00:48 +00:00
plantuml/src/net/sourceforge/plantuml/svek/Line.java

814 lines
25 KiB
Java
Raw Normal View History

2011-08-08 17:48:29 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2013-12-10 19:36:50 +00:00
* (C) Copyright 2009-2013, Arnaud Roques
2011-08-08 17:48:29 +00:00
*
* Project Info: http://plantuml.sourceforge.net
*
* This file is part of PlantUML.
*
* PlantUML is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* PlantUML distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
2013-12-10 19:36:50 +00:00
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
2011-08-08 17:48:29 +00:00
* License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
* USA.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
* Revision $Revision: 4236 $
*
*/
package net.sourceforge.plantuml.svek;
import java.awt.geom.Dimension2D;
import java.awt.geom.Point2D;
2013-12-10 19:36:50 +00:00
import java.util.Collection;
2011-08-08 17:48:29 +00:00
import java.util.List;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.Direction;
import net.sourceforge.plantuml.Hideable;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.ISkinParam;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.Log;
import net.sourceforge.plantuml.OptionFlags;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.StringUtils;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.Url;
2011-09-07 20:41:58 +00:00
import net.sourceforge.plantuml.command.Position;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.Display;
2011-09-08 10:42:27 +00:00
import net.sourceforge.plantuml.cucadiagram.IEntity;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.IGroup;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.cucadiagram.Link;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.LinkArrow;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.cucadiagram.LinkDecor;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.cucadiagram.LinkHat;
import net.sourceforge.plantuml.cucadiagram.LinkMiddleDecor;
import net.sourceforge.plantuml.cucadiagram.dot.GraphvizVersion;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.graphic.FontConfiguration;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.graphic.HtmlColor;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.TextBlockArrow;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.graphic.TextBlockUtils;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.graphic.UDrawable;
import net.sourceforge.plantuml.graphic.VerticalAlignment;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.posimo.BezierUtils;
import net.sourceforge.plantuml.posimo.DotPath;
2011-09-08 10:42:27 +00:00
import net.sourceforge.plantuml.posimo.Moveable;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.posimo.Positionable;
2011-09-07 20:41:58 +00:00
import net.sourceforge.plantuml.posimo.PositionableUtils;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.svek.SvekUtils.PointListIterator;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.svek.extremity.ExtremityFactory;
import net.sourceforge.plantuml.svek.image.EntityImageNoteLink;
import net.sourceforge.plantuml.ugraphic.UChangeBackColor;
import net.sourceforge.plantuml.ugraphic.UChangeColor;
2011-08-08 17:48:29 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UPolygon;
import net.sourceforge.plantuml.ugraphic.UShape;
import net.sourceforge.plantuml.ugraphic.UStroke;
2013-12-10 19:36:50 +00:00
import net.sourceforge.plantuml.ugraphic.UTranslate;
2011-08-08 17:48:29 +00:00
2013-12-10 19:36:50 +00:00
public class Line implements Moveable, Hideable {
2011-08-08 17:48:29 +00:00
private final String ltail;
private final String lhead;
private final Link link;
private final String startUid;
private final String endUid;
private final TextBlock startTailText;
private final TextBlock endHeadText;
2011-09-07 20:41:58 +00:00
private final TextBlock noteLabelText;
2011-08-08 17:48:29 +00:00
private final int lineColor;
2011-09-07 20:41:58 +00:00
private final int noteLabelColor;
2011-08-08 17:48:29 +00:00
private final int startTailColor;
private final int endHeadColor;
2013-12-10 19:36:50 +00:00
private final StringBounder stringBounder;
private final Bibliotekon bibliotekon;
private DotPath dotPath;
2011-09-07 20:41:58 +00:00
private Positionable startTailLabelXY;
private Positionable endHeadLabelXY;
private Positionable noteLabelXY;
2011-08-08 17:48:29 +00:00
2013-12-10 19:36:50 +00:00
private UDrawable extremity2;
private UDrawable extremity1;
2011-08-08 17:48:29 +00:00
2013-12-10 19:36:50 +00:00
private double dx;
private double dy;
private boolean opale;
private Cluster projectionCluster;
private final GraphvizVersion graphvizVersion;
// private GraphvizVersion getGraphvizVersion() {
// if (pragma.isDefine("graphviz")==false) {
// return GraphvizVersion.COMMON;
// }
// final String value = pragma.getValue("graphviz");
// if ("2.34".equals(value)) {
// return GraphvizVersion.V2_34_0;
// }
// return GraphvizVersion.COMMON;
// }
@Override
public String toString() {
return super.toString() + " color=" + lineColor;
}
class DirectionalTextBlock implements TextBlock {
private final TextBlock right;
private final TextBlock left;
private final TextBlock up;
private final TextBlock down;
DirectionalTextBlock(TextBlock right, TextBlock left, TextBlock up, TextBlock down) {
this.right = right;
this.left = left;
this.up = up;
this.down = down;
}
public void drawU(UGraphic ug) {
Direction dir = getDirection();
if (getLinkArrow() == LinkArrow.BACKWARD) {
dir = dir.getInv();
}
switch (dir) {
case RIGHT:
right.drawU(ug);
break;
case LEFT:
left.drawU(ug);
break;
case UP:
up.drawU(ug);
break;
case DOWN:
down.drawU(ug);
break;
default:
throw new UnsupportedOperationException();
}
}
public Dimension2D calculateDimension(StringBounder stringBounder) {
return right.calculateDimension(stringBounder);
}
private Direction getDirection() {
if (isAutolink()) {
final double startAngle = dotPath.getStartAngle();
return Direction.LEFT;
}
final Point2D start = dotPath.getStartPoint();
final Point2D end = dotPath.getEndPoint();
final double ang = Math.atan2(end.getX() - start.getX(), end.getY() - start.getY());
if (ang > -Math.PI / 4 && ang < Math.PI / 4) {
return Direction.DOWN;
}
if (ang > Math.PI * 3 / 4 || ang < -Math.PI * 3 / 4) {
return Direction.UP;
}
return end.getX() > start.getX() ? Direction.RIGHT : Direction.LEFT;
}
}
// private boolean projectionStart() {
// return startUid.startsWith(Cluster.CENTER_ID);
// }
2011-08-08 17:48:29 +00:00
public Line(String startUid, String endUid, Link link, ColorSequence colorSequence, String ltail, String lhead,
2013-12-10 19:36:50 +00:00
ISkinParam skinParam, StringBounder stringBounder, FontConfiguration labelFont, Bibliotekon bibliotekon,
GraphvizVersion graphvizVersion) {
2011-08-08 17:48:29 +00:00
if (startUid == null || endUid == null || link == null) {
throw new IllegalArgumentException();
}
2013-12-10 19:36:50 +00:00
this.graphvizVersion = graphvizVersion;
this.bibliotekon = bibliotekon;
2011-08-08 17:48:29 +00:00
this.stringBounder = stringBounder;
this.link = link;
this.startUid = startUid;
this.endUid = endUid;
this.ltail = ltail;
this.lhead = lhead;
this.lineColor = colorSequence.getValue();
2011-09-07 20:41:58 +00:00
this.noteLabelColor = colorSequence.getValue();
2011-08-08 17:48:29 +00:00
this.startTailColor = colorSequence.getValue();
this.endHeadColor = colorSequence.getValue();
2011-09-07 20:41:58 +00:00
final TextBlock labelOnly;
2011-08-08 17:48:29 +00:00
if (link.getLabel() == null) {
2013-12-10 19:36:50 +00:00
if (getLinkArrow() == LinkArrow.NONE) {
labelOnly = null;
} else {
final TextBlockArrow right = new TextBlockArrow(Direction.RIGHT, labelFont);
final TextBlockArrow left = new TextBlockArrow(Direction.LEFT, labelFont);
final TextBlockArrow up = new TextBlockArrow(Direction.UP, labelFont);
final TextBlockArrow down = new TextBlockArrow(Direction.DOWN, labelFont);
labelOnly = new DirectionalTextBlock(right, left, up, down);
}
2011-08-08 17:48:29 +00:00
} else {
2013-12-10 19:36:50 +00:00
final double marginLabel = startUid.equals(endUid) ? 6 : 1;
final TextBlock label = TextBlockUtils.withMargin(
TextBlockUtils.create(link.getLabel(), labelFont, HorizontalAlignment.CENTER, skinParam),
marginLabel, marginLabel);
if (getLinkArrow() == LinkArrow.NONE) {
labelOnly = label;
} else {
TextBlock right = new TextBlockArrow(Direction.RIGHT, labelFont);
right = TextBlockUtils.mergeLR(label, right, VerticalAlignment.CENTER);
TextBlock left = new TextBlockArrow(Direction.LEFT, labelFont);
left = TextBlockUtils.mergeLR(left, label, VerticalAlignment.CENTER);
TextBlock up = new TextBlockArrow(Direction.UP, labelFont);
up = TextBlockUtils.mergeTB(up, label, HorizontalAlignment.CENTER);
TextBlock down = new TextBlockArrow(Direction.DOWN, labelFont);
down = TextBlockUtils.mergeTB(label, down, HorizontalAlignment.CENTER);
labelOnly = new DirectionalTextBlock(right, left, up, down);
}
2011-08-08 17:48:29 +00:00
}
2011-09-07 20:41:58 +00:00
final TextBlock noteOnly;
if (link.getNote() == null) {
noteOnly = null;
} else {
2013-12-10 19:36:50 +00:00
noteOnly = new EntityImageNoteLink(link.getNote(), link.getNoteColor(), skinParam);
2011-09-07 20:41:58 +00:00
}
if (labelOnly != null && noteOnly != null) {
if (link.getNotePosition() == Position.LEFT) {
2013-12-10 19:36:50 +00:00
noteLabelText = TextBlockUtils.mergeLR(noteOnly, labelOnly, VerticalAlignment.CENTER);
2011-09-07 20:41:58 +00:00
} else if (link.getNotePosition() == Position.RIGHT) {
2013-12-10 19:36:50 +00:00
noteLabelText = TextBlockUtils.mergeLR(labelOnly, noteOnly, VerticalAlignment.CENTER);
2011-09-07 20:41:58 +00:00
} else if (link.getNotePosition() == Position.TOP) {
2013-12-10 19:36:50 +00:00
noteLabelText = TextBlockUtils.mergeTB(noteOnly, labelOnly, HorizontalAlignment.CENTER);
2011-09-07 20:41:58 +00:00
} else {
2013-12-10 19:36:50 +00:00
noteLabelText = TextBlockUtils.mergeTB(labelOnly, noteOnly, HorizontalAlignment.CENTER);
2011-09-07 20:41:58 +00:00
}
} else if (labelOnly != null) {
noteLabelText = labelOnly;
} else if (noteOnly != null) {
noteLabelText = noteOnly;
} else {
noteLabelText = null;
}
2011-08-08 17:48:29 +00:00
if (link.getQualifier1() == null) {
startTailText = null;
} else {
2013-12-10 19:36:50 +00:00
startTailText = TextBlockUtils.create(Display.getWithNewlines(link.getQualifier1()), labelFont,
HorizontalAlignment.CENTER, skinParam);
2011-08-08 17:48:29 +00:00
}
if (link.getQualifier2() == null) {
endHeadText = null;
} else {
2013-12-10 19:36:50 +00:00
endHeadText = TextBlockUtils.create(Display.getWithNewlines(link.getQualifier2()), labelFont,
HorizontalAlignment.CENTER, skinParam);
2011-08-08 17:48:29 +00:00
}
}
2013-12-10 19:36:50 +00:00
public boolean hasNoteLabelText() {
return noteLabelText != null;
}
private LinkArrow getLinkArrow() {
return link.getLinkArrow();
}
2011-08-08 17:48:29 +00:00
public void appendLine(StringBuilder sb) {
2013-12-10 19:36:50 +00:00
// Log.println("inverted=" + isInverted());
// if (isInverted()) {
// sb.append(endUid);
// sb.append("->");
// sb.append(startUid);
// } else {
2011-08-08 17:48:29 +00:00
sb.append(startUid);
sb.append("->");
sb.append(endUid);
2013-12-10 19:36:50 +00:00
// }
2011-08-08 17:48:29 +00:00
sb.append("[");
2011-09-07 20:41:58 +00:00
String decoration = link.getType().getSpecificDecorationSvek();
2011-08-08 17:48:29 +00:00
if (decoration.endsWith(",") == false) {
decoration += ",";
}
sb.append(decoration);
2013-12-10 19:36:50 +00:00
int length = link.getLength();
// if (graphvizVersion == GraphvizVersion.V2_34_0 && length == 1) {
// length = 2;
// }
if (OptionFlags.HORIZONTAL_LINE_BETWEEN_DIFFERENT_PACKAGE_ALLOWED || link.isInvis() || length != 1) {
sb.append("minlen=" + (length - 1));
2011-08-08 17:48:29 +00:00
sb.append(",");
}
sb.append("color=\"" + StringUtils.getAsHtml(lineColor) + "\"");
2011-09-07 20:41:58 +00:00
if (noteLabelText != null) {
2011-08-08 17:48:29 +00:00
sb.append(",");
sb.append("label=<");
2011-09-07 20:41:58 +00:00
appendTable(sb, noteLabelText.calculateDimension(stringBounder), noteLabelColor);
2011-08-08 17:48:29 +00:00
sb.append(">");
2013-12-10 19:36:50 +00:00
// sb.append(",labelfloat=true");
2011-08-08 17:48:29 +00:00
}
if (startTailText != null) {
sb.append(",");
sb.append("taillabel=<");
appendTable(sb, startTailText.calculateDimension(stringBounder), startTailColor);
sb.append(">");
2013-12-10 19:36:50 +00:00
// sb.append(",labelangle=0");
2011-08-08 17:48:29 +00:00
}
if (endHeadText != null) {
sb.append(",");
sb.append("headlabel=<");
appendTable(sb, endHeadText.calculateDimension(stringBounder), endHeadColor);
sb.append(">");
2013-12-10 19:36:50 +00:00
// sb.append(",labelangle=0");
2011-08-08 17:48:29 +00:00
}
if (ltail != null) {
sb.append(",");
sb.append("ltail=");
sb.append(ltail);
}
if (lhead != null) {
sb.append(",");
sb.append("lhead=");
sb.append(lhead);
}
if (link.isInvis()) {
sb.append(",");
sb.append("style=invis");
}
2013-12-10 19:36:50 +00:00
if (link.isConstraint() == false || link.hasTwoEntryPointsSameContainer()) {
sb.append("constraint=false,");
}
// if (link.getLabeldistance() != null) {
// sb.append("labeldistance=" + link.getLabeldistance() + ",");
// }
// if (link.getLabelangle() != null) {
// sb.append("labelangle=" + link.getLabelangle() + ",");
// }
// sb.append("labelangle=1,");
2011-08-08 17:48:29 +00:00
sb.append("];");
SvekUtils.println(sb);
}
public String rankSame() {
2013-12-10 19:36:50 +00:00
// if (graphvizVersion == GraphvizVersion.V2_34_0) {
// return null;
// }
if (OptionFlags.HORIZONTAL_LINE_BETWEEN_DIFFERENT_PACKAGE_ALLOWED == false && link.getLength() == 1) {
2011-09-07 20:41:58 +00:00
return "{rank=same; " + getStartUid() + "; " + getEndUid() + "}";
2011-08-08 17:48:29 +00:00
}
return null;
}
public static void appendTable(StringBuilder sb, Dimension2D dim, int col) {
final int w = (int) dim.getWidth();
final int h = (int) dim.getHeight();
appendTable(sb, w, h, col);
}
public static void appendTable(StringBuilder sb, int w, int h, int col) {
sb.append("<TABLE ");
sb.append("BGCOLOR=\"" + StringUtils.getAsHtml(col) + "\" ");
sb.append("FIXEDSIZE=\"TRUE\" WIDTH=\"" + w + "\" HEIGHT=\"" + h + "\">");
sb.append("<TR");
sb.append(">");
sb.append("<TD");
// sb.append(" FIXEDSIZE=\"TRUE\" WIDTH=\"" + 0 + "\" HEIGHT=\"" + 0 +
// "\"");
sb.append(">");
sb.append("</TD>");
sb.append("</TR>");
sb.append("</TABLE>");
}
public final String getStartUid() {
2011-09-07 20:41:58 +00:00
if (startUid.endsWith(":h")) {
return startUid.substring(0, startUid.length() - 2);
}
2011-08-08 17:48:29 +00:00
return startUid;
}
public final String getEndUid() {
2011-09-07 20:41:58 +00:00
if (endUid.endsWith(":h")) {
return endUid.substring(0, endUid.length() - 2);
}
2011-08-08 17:48:29 +00:00
return endUid;
}
2013-12-10 19:36:50 +00:00
public UDrawable getExtremity(LinkHat hat, LinkDecor decor, PointListIterator pointListIterator) {
final ExtremityFactory extremityFactory = decor.getExtremityFactory();
if (extremityFactory != null) {
final List<Point2D.Double> points = pointListIterator.next();
final Point2D p0 = points.get(0);
final Point2D p1 = points.get(1);
final Point2D p2 = points.get(2);
return extremityFactory.createUDrawable(p0, p1, p2);
} else if (decor != LinkDecor.NONE) {
final UShape sh = new UPolygon(pointListIterator.next());
return new UDrawable() {
public void drawU(UGraphic ug) {
ug.draw(sh);
}
};
}
return null;
}
public void solveLine(final String svg, final int fullHeight, MinFinder corner1) {
2011-08-08 17:48:29 +00:00
if (this.link.isInvis()) {
return;
}
2013-12-10 19:36:50 +00:00
int idx = getIndexFromColor(svg, this.lineColor);
2011-08-08 17:48:29 +00:00
if (idx == -1) {
2013-12-10 19:36:50 +00:00
return;
// throw new IllegalStateException();
2011-08-08 17:48:29 +00:00
}
idx = svg.indexOf("d=\"", idx);
if (idx == -1) {
throw new IllegalStateException();
}
final int end = svg.indexOf("\"", idx + 3);
final String path = svg.substring(idx + 3, end);
dotPath = new DotPath(path, fullHeight);
final PointListIterator pointListIterator = new PointListIterator(svg.substring(end), fullHeight);
2013-12-10 19:36:50 +00:00
this.extremity2 = getExtremity(link.getType().getHat2(), link.getType().getDecor2(), pointListIterator);
this.extremity1 = getExtremity(link.getType().getHat1(), link.getType().getDecor1(), pointListIterator);
2011-09-07 20:41:58 +00:00
if (this.noteLabelText != null) {
2013-12-10 19:36:50 +00:00
final Point2D pos = getXY(svg, this.noteLabelColor, fullHeight);
if (pos != null) {
corner1.manage(pos);
this.noteLabelXY = TextBlockUtils.asPositionable(noteLabelText, stringBounder, pos);
}
2011-08-08 17:48:29 +00:00
}
if (this.startTailText != null) {
2013-12-10 19:36:50 +00:00
final Point2D pos = getXY(svg, this.startTailColor, fullHeight);
if (pos != null) {
corner1.manage(pos);
this.startTailLabelXY = TextBlockUtils.asPositionable(startTailText, stringBounder, pos);
}
2011-08-08 17:48:29 +00:00
}
if (this.endHeadText != null) {
2013-12-10 19:36:50 +00:00
final Point2D pos = getXY(svg, this.endHeadColor, fullHeight);
if (pos != null) {
corner1.manage(pos);
this.endHeadLabelXY = TextBlockUtils.asPositionable(endHeadText, stringBounder, pos);
}
2011-08-08 17:48:29 +00:00
}
2011-09-08 10:42:27 +00:00
if (isOpalisable() == false) {
setOpale(false);
}
}
private boolean isOpalisable() {
return dotPath.getBeziers().size() <= 1;
2011-08-08 17:48:29 +00:00
}
private Point2D.Double getXY(String svg, int color, int height) {
2013-12-10 19:36:50 +00:00
final int idx = getIndexFromColor(svg, color);
2011-08-08 17:48:29 +00:00
if (idx == -1) {
2013-12-10 19:36:50 +00:00
return null;
2011-08-08 17:48:29 +00:00
}
return SvekUtils.getMinXY(SvekUtils.extractPointsList(svg, idx, height));
}
2013-12-10 19:36:50 +00:00
private int getIndexFromColor(String svg, int color) {
String s = "stroke=\"" + StringUtils.getAsHtml(color).toLowerCase() + "\"";
int idx = svg.indexOf(s);
if (idx != -1) {
return idx;
}
s = ";stroke:" + StringUtils.getAsHtml(color).toLowerCase() + ";";
idx = svg.indexOf(s);
if (idx != -1) {
return idx;
}
s = "fill=\"" + StringUtils.getAsHtml(color).toLowerCase() + "\"";
idx = svg.indexOf(s);
if (idx != -1) {
return idx;
}
Log.info("Cannot find color=" + color + " " + StringUtils.getAsHtml(color).toLowerCase());
return -1;
}
2011-09-08 10:42:27 +00:00
2011-08-08 17:48:29 +00:00
public void drawU(UGraphic ug, double x, double y, HtmlColor color) {
2011-09-08 10:42:27 +00:00
if (opale) {
return;
}
2013-12-10 19:36:50 +00:00
final Url url = link.getUrl();
if (url != null) {
ug.startUrl(url);
}
if (link.isAutoLinkOfAGroup()) {
final Cluster cl = bibliotekon.getCluster((IGroup) link.getEntity1());
x += cl.getWidth();
x -= dotPath.getStartPoint().getX() - cl.getMinX();
}
2011-09-08 10:42:27 +00:00
x += dx;
y += dy;
2011-08-08 17:48:29 +00:00
if (link.isInvis()) {
return;
}
if (this.link.getSpecificColor() != null) {
color = this.link.getSpecificColor();
}
2011-09-08 10:42:27 +00:00
2013-12-10 19:36:50 +00:00
ug = ug.apply(new UChangeBackColor(null)).apply(new UChangeColor(color));
ug = ug.apply(link.getType().getStroke());
double moveStartX = 0;
double moveStartY = 0;
double moveEndX = 0;
double moveEndY = 0;
if (projectionCluster != null && link.getEntity1() == projectionCluster.getGroup()) {
final DotPath copy = new DotPath(dotPath);
final Point2D start = copy.getStartPoint();
final Point2D proj = projectionCluster.getClusterPosition().getProjectionOnFrontier(start);
moveStartX = proj.getX() - start.getX();
moveStartY = proj.getY() - start.getY();
copy.forceStartPoint(proj.getX(), proj.getY());
ug.apply(new UTranslate(x, y)).draw(copy);
} else if (projectionCluster != null && link.getEntity2() == projectionCluster.getGroup()) {
final DotPath copy = new DotPath(dotPath);
final Point2D end = copy.getEndPoint();
final Point2D proj = projectionCluster.getClusterPosition().getProjectionOnFrontier(end);
moveEndX = proj.getX() - end.getX();
moveEndY = proj.getY() - end.getY();
copy.forceEndPoint(proj.getX(), proj.getY());
ug.apply(new UTranslate(x, y)).draw(copy);
} else {
if (dotPath == null) {
Log.info("DotPath is null for " + this);
return;
}
ug.apply(new UTranslate(x, y)).draw(dotPath);
}
// if (picLine1 != null) {
// final ClusterPosition clusterPosition =
// picLine1.getClusterPosition();
// final PointDirected inters =
// dotPath.getIntersection(clusterPosition);
// ExtremityStateLine1 extr1 = new
// ExtremityStateLine1(inters.getAngle(), inters.getPoint2D());
// extr1.drawU(ug, x, y);
// } else if (picLine2 != null) {
// final ClusterPosition clusterPosition =
// picLine2.getClusterPosition();
// final PointDirected inters =
// dotPath.getIntersection(clusterPosition);
// ExtremityStateLine2 extr2 = new
// ExtremityStateLine2(inters.getAngle(), inters.getPoint2D());
// extr2.drawU(ug, x, y);
// }
ug = ug.apply(new UStroke()).apply(new UChangeColor(color));
2011-08-08 17:48:29 +00:00
2013-12-10 19:36:50 +00:00
if (this.extremity1 != null) {
2011-08-08 17:48:29 +00:00
if (this.link.getType().getDecor1().isFill()) {
2013-12-10 19:36:50 +00:00
ug = ug.apply(new UChangeBackColor(color));
2011-08-08 17:48:29 +00:00
} else {
2013-12-10 19:36:50 +00:00
ug = ug.apply(new UChangeBackColor(null));
2011-08-08 17:48:29 +00:00
}
2013-12-10 19:36:50 +00:00
this.extremity1.drawU(ug.apply(new UTranslate(x + moveEndX, y + moveEndY)));
2011-08-08 17:48:29 +00:00
}
2013-12-10 19:36:50 +00:00
if (this.extremity2 != null) {
2011-08-08 17:48:29 +00:00
if (this.link.getType().getDecor2().isFill()) {
2013-12-10 19:36:50 +00:00
ug = ug.apply(new UChangeBackColor(color));
2011-08-08 17:48:29 +00:00
} else {
2013-12-10 19:36:50 +00:00
ug = ug.apply(new UChangeBackColor(null));
2011-08-08 17:48:29 +00:00
}
2013-12-10 19:36:50 +00:00
this.extremity2.drawU(ug.apply(new UTranslate(x + moveStartX, y + moveStartY)));
2011-08-08 17:48:29 +00:00
}
2013-12-10 19:36:50 +00:00
if (this.noteLabelText != null && this.noteLabelXY != null) {
this.noteLabelText.drawU(ug.apply(new UTranslate(x + this.noteLabelXY.getPosition().getX(), y
+ this.noteLabelXY.getPosition().getY())));
2011-08-08 17:48:29 +00:00
}
if (this.startTailText != null) {
2013-12-10 19:36:50 +00:00
this.startTailText.drawU(ug.apply(new UTranslate(x + this.startTailLabelXY.getPosition().getX(), y
+ this.startTailLabelXY.getPosition().getY())));
2011-08-08 17:48:29 +00:00
}
if (this.endHeadText != null) {
2013-12-10 19:36:50 +00:00
this.endHeadText.drawU(ug.apply(new UTranslate(x + this.endHeadLabelXY.getPosition().getX(), y
+ this.endHeadLabelXY.getPosition().getY())));
}
if (link.getType().getMiddleDecor() != LinkMiddleDecor.NONE) {
final PointAndAngle middle = dotPath.getMiddle();
final double angleRad = middle.getAngle();
final double angleDeg = -angleRad * 180.0 / Math.PI;
final UDrawable mi = link.getType().getMiddleDecor().getMiddleFactory().createUDrawable(angleDeg - 45);
mi.drawU(ug.apply(new UTranslate(x + middle.getX(), y + middle.getY())));
}
if (url != null) {
ug.closeAction();
2011-08-08 17:48:29 +00:00
}
}
public boolean isInverted() {
return link.isInverted();
}
private double getDecorDzeta() {
2013-12-10 19:36:50 +00:00
final int size1 = link.getType().getDecor1().getMargin();
final int size2 = link.getType().getDecor2().getMargin();
2011-08-08 17:48:29 +00:00
return size1 + size2;
}
public double getHorizontalDzeta(StringBounder stringBounder) {
if (startUid.equals(endUid)) {
return getDecorDzeta();
}
final ArithmeticStrategy strategy;
if (isHorizontal()) {
strategy = new ArithmeticStrategySum();
} else {
return 0;
}
2011-09-07 20:41:58 +00:00
if (noteLabelText != null) {
strategy.eat(noteLabelText.calculateDimension(stringBounder).getWidth());
2011-08-08 17:48:29 +00:00
}
if (startTailText != null) {
strategy.eat(startTailText.calculateDimension(stringBounder).getWidth());
}
if (endHeadText != null) {
strategy.eat(endHeadText.calculateDimension(stringBounder).getWidth());
}
return strategy.getResult() + getDecorDzeta();
}
private boolean isHorizontal() {
return link.getLength() == 1;
}
public double getVerticalDzeta(StringBounder stringBounder) {
if (startUid.equals(endUid)) {
return getDecorDzeta();
}
if (isHorizontal()) {
return 0;
}
2013-12-10 19:36:50 +00:00
final ArithmeticStrategy strategy = new ArithmeticStrategySum();
2011-09-07 20:41:58 +00:00
if (noteLabelText != null) {
strategy.eat(noteLabelText.calculateDimension(stringBounder).getHeight());
2011-08-08 17:48:29 +00:00
}
if (startTailText != null) {
strategy.eat(startTailText.calculateDimension(stringBounder).getHeight());
}
if (endHeadText != null) {
strategy.eat(endHeadText.calculateDimension(stringBounder).getHeight());
}
return strategy.getResult() + getDecorDzeta();
}
2013-12-10 19:36:50 +00:00
public void manageCollision(Collection<Shape> allShapes) {
2011-08-08 17:48:29 +00:00
2011-09-07 20:41:58 +00:00
for (Shape sh : allShapes) {
final Positionable cl = PositionableUtils.addMargin(sh, 8, 8);
2013-12-10 19:36:50 +00:00
if (startTailText != null && startTailLabelXY != null && PositionableUtils.intersect(cl, startTailLabelXY)) {
2011-09-07 20:41:58 +00:00
startTailLabelXY = PositionableUtils.moveAwayFrom(cl, startTailLabelXY);
2011-08-08 17:48:29 +00:00
}
2013-12-10 19:36:50 +00:00
if (endHeadText != null && endHeadLabelXY != null && PositionableUtils.intersect(cl, endHeadLabelXY)) {
2011-09-07 20:41:58 +00:00
endHeadLabelXY = PositionableUtils.moveAwayFrom(cl, endHeadLabelXY);
2011-08-08 17:48:29 +00:00
}
2011-09-07 20:41:58 +00:00
}
2011-08-08 17:48:29 +00:00
2011-09-07 20:41:58 +00:00
// final Positionable start = getStartTailPositionnable();
// if (start != null) {
// for (Shape sh : allShapes) {
// if (cut(start, sh)) {
// avoid(startTailLabelXY, start, sh);
// }
// }
// }
//
// final Positionable end = getEndHeadPositionnable();
// if (end != null) {
// for (Shape sh : allShapes) {
// if (cut(end, sh)) {
// avoid(endHeadLabelXY, end, sh);
// }
// }
// }
2011-08-08 17:48:29 +00:00
}
private void avoid(Point2D.Double move, Positionable pos, Shape sh) {
final Oscillator oscillator = new Oscillator();
final Point2D.Double orig = new Point2D.Double(move.x, move.y);
while (cut(pos, sh)) {
final Point2D.Double m = oscillator.nextPosition();
move.setLocation(orig.x + m.x, orig.y + m.y);
}
}
private boolean cut(Positionable pos, Shape sh) {
return BezierUtils.intersect(pos, sh) || tooClose(pos);
}
private boolean tooClose(Positionable pos) {
final double dist = dotPath.getMinDist(BezierUtils.getCenter(pos));
final Dimension2D dim = pos.getSize();
2013-12-10 19:36:50 +00:00
// Log.println("dist=" + dist);
2011-08-08 17:48:29 +00:00
return dist < (dim.getWidth() / 2 + 2) || dist < (dim.getHeight() / 2 + 2);
}
2011-09-08 10:42:27 +00:00
public void moveSvek(double deltaX, double deltaY) {
this.dx += deltaX;
this.dy += deltaY;
}
public final DotPath getDotPath() {
final DotPath result = new DotPath(dotPath);
result.moveSvek(dx, dy);
return result;
}
public int getLength() {
return link.getLength();
}
public void setOpale(boolean opale) {
this.link.setOpale(opale);
this.opale = opale;
}
public boolean isOpale() {
return opale;
}
2013-12-10 19:36:50 +00:00
public boolean isHorizontalSolitary() {
return link.isHorizontalSolitary();
}
public boolean isLinkFromOrToGroup(IEntity group) {
return link.getEntity1() == group || link.getEntity2() == group;
}
public boolean hasEntryPoint() {
return link.hasEntryPoint();
}
public void setProjectionCluster(Cluster cluster) {
this.projectionCluster = cluster;
}
public boolean isHidden() {
return link.isHidden();
}
public boolean sameConnections(Line other) {
return link.sameConnections(other.link);
}
private boolean isAutolink() {
return link.getEntity1() == link.getEntity2();
}
2011-09-08 10:42:27 +00:00
2011-08-08 17:48:29 +00:00
}