1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-05-31 23:50:49 +00:00
plantuml/src/net/sourceforge/plantuml/jdot/JDotPath.java

233 lines
8.0 KiB
Java
Raw Normal View History

2016-03-06 16:47:34 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2017, Arnaud Roques
*
* Project Info: http://plantuml.com
*
2017-03-15 19:13:31 +00:00
* If you like this project or if you find it useful, you can support us at:
*
* http://plantuml.com/patreon (only 1$ per month!)
* http://plantuml.com/paypal
*
2016-03-06 16:47:34 +00:00
* 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
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
* 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.
*
*
* Original Author: Arnaud Roques
*
*
*/
package net.sourceforge.plantuml.jdot;
2018-10-21 19:44:14 +00:00
import h.ST_Agedge_s;
import h.ST_Agedgeinfo_t;
import h.ST_bezier;
import h.ST_pointf;
import h.ST_textlabel_t;
import h.ST_splines;
2016-03-06 16:47:34 +00:00
import java.awt.geom.Point2D;
import net.sourceforge.plantuml.ColorParam;
import net.sourceforge.plantuml.UmlDiagramType;
import net.sourceforge.plantuml.cucadiagram.CucaDiagram;
import net.sourceforge.plantuml.cucadiagram.Link;
import net.sourceforge.plantuml.graphic.HtmlColor;
import net.sourceforge.plantuml.graphic.HtmlColorUtils;
import net.sourceforge.plantuml.graphic.TextBlock;
import net.sourceforge.plantuml.graphic.UDrawable;
import net.sourceforge.plantuml.graphic.color.ColorType;
import net.sourceforge.plantuml.posimo.DotPath;
import net.sourceforge.plantuml.skin.rose.Rose;
import net.sourceforge.plantuml.ugraphic.UChangeBackColor;
import net.sourceforge.plantuml.ugraphic.UChangeColor;
import net.sourceforge.plantuml.ugraphic.UEllipse;
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.URectangle;
import net.sourceforge.plantuml.ugraphic.UTranslate;
import smetana.core.Macro;
import smetana.core.__ptr__;
public class JDotPath implements UDrawable {
private final Link link;
2018-10-21 19:44:14 +00:00
private final ST_Agedge_s edge;
2016-03-06 16:47:34 +00:00
private final YMirror ymirror;
private final CucaDiagram diagram;
private final TextBlock label;
2018-10-21 19:44:14 +00:00
private final TextBlock headLabel;
private final TextBlock tailLabel;
2016-03-06 16:47:34 +00:00
private final Rose rose = new Rose();
2018-10-21 19:44:14 +00:00
public JDotPath(Link link, ST_Agedge_s edge, YMirror ymirror, CucaDiagram diagram, TextBlock label, TextBlock tailLabel, TextBlock headLabel) {
2016-03-06 16:47:34 +00:00
this.link = link;
this.edge = edge;
this.ymirror = ymirror;
this.diagram = diagram;
this.label = label;
2018-10-21 19:44:14 +00:00
this.tailLabel = tailLabel;
this.headLabel = headLabel;
2016-03-06 16:47:34 +00:00
}
private ColorParam getArrowColorParam() {
if (diagram.getUmlDiagramType() == UmlDiagramType.CLASS) {
2017-02-15 21:34:36 +00:00
return ColorParam.arrow;
2016-03-06 16:47:34 +00:00
} else if (diagram.getUmlDiagramType() == UmlDiagramType.OBJECT) {
2017-02-15 21:34:36 +00:00
return ColorParam.arrow;
2016-03-06 16:47:34 +00:00
} else if (diagram.getUmlDiagramType() == UmlDiagramType.DESCRIPTION) {
2017-02-15 21:34:36 +00:00
return ColorParam.arrow;
2016-03-06 16:47:34 +00:00
} else if (diagram.getUmlDiagramType() == UmlDiagramType.ACTIVITY) {
2017-02-15 21:34:36 +00:00
return ColorParam.arrow;
2016-03-06 16:47:34 +00:00
} else if (diagram.getUmlDiagramType() == UmlDiagramType.STATE) {
2017-02-15 21:34:36 +00:00
return ColorParam.arrow;
2016-03-06 16:47:34 +00:00
}
throw new IllegalStateException();
}
public void drawU(UGraphic ug) {
HtmlColor color = rose.getHtmlColor(diagram.getSkinParam(), getArrowColorParam(), null);
if (this.link.getColors() != null) {
final HtmlColor newColor = this.link.getColors().getColor(ColorType.ARROW, ColorType.LINE);
if (newColor != null) {
color = newColor;
}
} else if (this.link.getSpecificColor() != null) {
color = this.link.getSpecificColor();
}
DotPath dotPath = getDotPath(edge);
2017-07-03 17:59:53 +00:00
if (ymirror != null && dotPath != null) {
2016-03-06 16:47:34 +00:00
dotPath = ymirror.getMirrored(dotPath);
}
2017-07-03 17:59:53 +00:00
if (dotPath != null) {
ug.apply(new UChangeColor(color)).draw(dotPath);
}
2018-10-21 19:44:14 +00:00
if (getLabelRectangleTranslate("label") != null) {
label.drawU(ug.apply(getLabelRectangleTranslate("label")));
}
if (getLabelRectangleTranslate("head_label") != null) {
headLabel.drawU(ug.apply(getLabelRectangleTranslate("head_label")));
}
if (getLabelRectangleTranslate("tail_label") != null) {
tailLabel.drawU(ug.apply(getLabelRectangleTranslate("tail_label")));
2016-03-06 16:47:34 +00:00
}
// printDebug(ug);
}
private void printDebug(UGraphic ug) {
ug = ug.apply(new UChangeColor(HtmlColorUtils.BLUE)).apply(new UChangeBackColor(HtmlColorUtils.BLUE));
2018-10-21 19:44:14 +00:00
final ST_splines splines = getSplines(edge);
final ST_bezier beziers = (ST_bezier) splines.getPtr("list");
for (int i = 0; i < beziers.size; i++) {
2016-03-06 16:47:34 +00:00
Point2D pt = getPoint(splines, i);
if (ymirror != null) {
pt = ymirror.getMirrored(pt);
}
ug.apply(new UTranslate(pt).compose(new UTranslate(-1, -1))).draw(new UEllipse(3, 3));
}
2018-10-21 19:44:14 +00:00
if (getLabelRectangleTranslate("label") != null && getLabelURectangle() != null) {
2016-03-06 16:47:34 +00:00
ug = ug.apply(new UChangeColor(HtmlColorUtils.BLUE)).apply(new UChangeBackColor(null));
2018-10-21 19:44:14 +00:00
ug.apply(getLabelRectangleTranslate("label")).draw(getLabelURectangle());
2016-03-06 16:47:34 +00:00
}
}
private URectangle getLabelURectangle() {
2018-10-21 19:44:14 +00:00
final ST_Agedgeinfo_t data = (ST_Agedgeinfo_t) Macro.AGDATA(edge).castTo(ST_Agedgeinfo_t.class);
ST_textlabel_t label = (ST_textlabel_t) data.label;
2016-03-06 16:47:34 +00:00
if (label == null) {
return null;
}
2018-10-21 19:44:14 +00:00
final ST_pointf dimen = (ST_pointf) label.dimen;
final ST_pointf space = (ST_pointf)label.space;
final ST_pointf pos = (ST_pointf)label.getStruct("pos");
2016-03-06 16:47:34 +00:00
final double x = pos.getDouble("x");
final double y = pos.getDouble("y");
final double width = dimen.getDouble("x");
final double height = dimen.getDouble("y");
return new URectangle(width, height);
}
2018-10-21 19:44:14 +00:00
private UTranslate getLabelRectangleTranslate(String fieldName) {
//final String fieldName = "label";
final ST_Agedgeinfo_t data = (ST_Agedgeinfo_t) Macro.AGDATA(edge).castTo(ST_Agedgeinfo_t.class);
ST_textlabel_t label = (ST_textlabel_t) data.getPtr(fieldName);
2016-03-06 16:47:34 +00:00
if (label == null) {
return null;
}
2018-10-21 19:44:14 +00:00
final ST_pointf dimen = (ST_pointf)label.dimen;
final ST_pointf space = (ST_pointf)label.space;
final ST_pointf pos = (ST_pointf)label.getStruct("pos");
2016-03-06 16:47:34 +00:00
final double x = pos.getDouble("x");
final double y = pos.getDouble("y");
final double width = dimen.getDouble("x");
final double height = dimen.getDouble("y");
if (ymirror == null) {
return new UTranslate(x - width / 2, y - height / 2);
}
return ymirror.getMirrored(new UTranslate(x - width / 2, y + height / 2));
}
2018-10-21 19:44:14 +00:00
public DotPath getDotPath(ST_Agedge_s e) {
final ST_splines splines = getSplines(e);
2016-03-06 16:47:34 +00:00
return getDotPath(splines);
}
2018-10-21 19:44:14 +00:00
private ST_splines getSplines(ST_Agedge_s e) {
final ST_Agedgeinfo_t data = (ST_Agedgeinfo_t) Macro.AGDATA(e).castTo(ST_Agedgeinfo_t.class);
final ST_splines splines = (ST_splines) data.spl;
2016-03-06 16:47:34 +00:00
return splines;
}
2018-10-21 19:44:14 +00:00
private DotPath getDotPath(ST_splines splines) {
2017-07-03 17:59:53 +00:00
if (splines == null) {
System.err.println("ERROR, no splines for getDotPath");
return null;
}
2016-03-06 16:47:34 +00:00
DotPath result = new DotPath();
2018-10-21 19:44:14 +00:00
final ST_bezier beziers = (ST_bezier) splines.list.getPtr();
2016-03-06 16:47:34 +00:00
final Point2D pt1 = getPoint(splines, 0);
final Point2D pt2 = getPoint(splines, 1);
final Point2D pt3 = getPoint(splines, 2);
final Point2D pt4 = getPoint(splines, 3);
result = result.addCurve(pt1, pt2, pt3, pt4);
2018-10-21 19:44:14 +00:00
final int n = beziers.size;
2016-03-06 16:47:34 +00:00
for (int i = 4; i < n; i += 3) {
final Point2D ppt2 = getPoint(splines, i);
final Point2D ppt3 = getPoint(splines, i + 1);
final Point2D ppt4 = getPoint(splines, i + 2);
result = result.addCurve(ppt2, ppt3, ppt4);
}
return result;
}
2018-10-21 19:44:14 +00:00
private Point2D getPoint(ST_splines splines, int i) {
final ST_bezier beziers = (ST_bezier) splines.list.getPtr();
final __ptr__ pt = beziers.list.get(i);
2016-03-06 16:47:34 +00:00
return new Point2D.Double(pt.getDouble("x"), pt.getDouble("y"));
}
}