1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-17 15:42:44 +00:00
plantuml/src/net/sourceforge/plantuml/timingdiagram/Ribbon.java

204 lines
6.8 KiB
Java
Raw Normal View History

2017-02-01 18:55:51 +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
*
2017-02-01 18:55:51 +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.timingdiagram;
import java.awt.geom.Dimension2D;
import java.awt.geom.Point2D;
import java.util.ArrayList;
import java.util.List;
import net.sourceforge.plantuml.FontParam;
import net.sourceforge.plantuml.ISkinParam;
import net.sourceforge.plantuml.cucadiagram.Display;
import net.sourceforge.plantuml.graphic.FontConfiguration;
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.graphic.TextBlock;
2017-02-15 21:34:36 +00:00
import net.sourceforge.plantuml.graphic.TextBlockUtils;
2017-02-01 18:55:51 +00:00
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UTranslate;
public class Ribbon implements TimeDrawing {
private final List<ChangeState> changes = new ArrayList<ChangeState>();
2017-02-15 21:34:36 +00:00
private final List<TimeConstraint> constraints = new ArrayList<TimeConstraint>();
2017-02-01 18:55:51 +00:00
private final double delta = 12;
private final ISkinParam skinParam;
private final TimingRuler ruler;
2017-02-15 21:34:36 +00:00
private String initialState;
2017-02-01 18:55:51 +00:00
public Ribbon(TimingRuler ruler, ISkinParam skinParam) {
this.ruler = ruler;
this.skinParam = skinParam;
}
public IntricatedPoint getTimeProjection(StringBounder stringBounder, TimeTick tick) {
final double x = ruler.getPosInPixel(tick);
2017-02-15 21:34:36 +00:00
final double y = delta * 0.5 + getHeightForConstraints();
2017-02-01 18:55:51 +00:00
for (ChangeState change : changes) {
if (change.getWhen().compareTo(tick) == 0) {
return new IntricatedPoint(new Point2D.Double(x, y), new Point2D.Double(x, y));
}
}
return new IntricatedPoint(new Point2D.Double(x, y - delta), new Point2D.Double(x, y + delta));
}
public void addChange(ChangeState change) {
this.changes.add(change);
}
private double getPosInPixel(ChangeState change) {
return ruler.getPosInPixel(change.getWhen());
}
private FontConfiguration getFontConfiguration() {
return new FontConfiguration(skinParam, FontParam.ACTIVITY, null);
}
2017-02-15 21:34:36 +00:00
private TextBlock getTextBlock(String value) {
final Display display = Display.getWithNewlines(value);
2017-02-01 18:55:51 +00:00
return display.create(getFontConfiguration(), HorizontalAlignment.LEFT, skinParam);
}
public void drawU(UGraphic ug) {
2017-02-15 21:34:36 +00:00
UGraphic ugDown = ug.apply(new UTranslate(0, getHeightForConstraints()));
final TextBlock inital;
final StringBounder stringBounder = ugDown.getStringBounder();
if (initialState == null) {
inital = null;
} else {
inital = getTextBlock(initialState);
drawPentaA(ugDown.apply(new UTranslate(-getInitialWidth(stringBounder), -delta / 2)),
2017-03-12 17:22:02 +00:00
getInitialWidth(stringBounder), changes.get(0));
2017-02-15 21:34:36 +00:00
}
2017-02-01 18:55:51 +00:00
for (int i = 0; i < changes.size() - 1; i++) {
final double a = getPosInPixel(changes.get(i));
final double b = getPosInPixel(changes.get(i + 1));
assert b > a;
2017-03-12 17:22:02 +00:00
drawHexa(ugDown.apply(new UTranslate(a, -delta / 2)), b - a, changes.get(i));
2017-02-01 18:55:51 +00:00
}
final double a = getPosInPixel(changes.get(changes.size() - 1));
2017-03-12 17:22:02 +00:00
drawPentaB(ugDown.apply(new UTranslate(a, -delta / 2)), ruler.getWidth() - a, changes.get(changes.size() - 1));
2017-02-01 18:55:51 +00:00
2017-02-15 21:34:36 +00:00
ugDown = ugDown.apply(new UTranslate(0, delta / 2));
if (inital != null) {
final Dimension2D dimInital = inital.calculateDimension(stringBounder);
inital.drawU(ugDown.apply(new UTranslate(-getDelta() - dimInital.getWidth(), -dimInital.getHeight() / 2)));
}
2017-03-12 17:22:02 +00:00
for (int i = 0; i < changes.size(); i++) {
final ChangeState change = changes.get(i);
2017-02-01 18:55:51 +00:00
final double x = ruler.getPosInPixel(change.getWhen());
2017-03-12 17:22:02 +00:00
if (change.isHidden() == false) {
final TextBlock state = getTextBlock(change.getState());
final Dimension2D dim = state.calculateDimension(stringBounder);
final double xtext;
if (i == changes.size() - 1) {
xtext = x + getDelta();
} else {
final double x2 = ruler.getPosInPixel(changes.get(i + 1).getWhen());
xtext = (x + x2) / 2 - dim.getWidth() / 2;
}
state.drawU(ugDown.apply(new UTranslate(xtext, -dim.getHeight() / 2)));
}
2017-02-15 21:34:36 +00:00
final String commentString = change.getComment();
if (commentString != null) {
final TextBlock comment = getTextBlock(commentString);
final Dimension2D dimComment = comment.calculateDimension(stringBounder);
comment.drawU(ugDown.apply(new UTranslate(x + getDelta(), -delta - dimComment.getHeight())));
}
}
for (TimeConstraint constraint : constraints) {
constraint.drawU(ug.apply(new UTranslate(0, 15)), ruler, skinParam);
2017-02-01 18:55:51 +00:00
}
}
2017-02-15 21:34:36 +00:00
private double getInitialWidth(final StringBounder stringBounder) {
return getTextBlock(initialState).calculateDimension(stringBounder).getWidth() + 2 * delta;
}
2017-03-12 17:22:02 +00:00
private void drawHexa(UGraphic ug, double len, ChangeState change) {
final HexaShape shape = HexaShape.create(len, 2 * delta, change.getContext());
2017-02-15 21:34:36 +00:00
shape.drawU(ug);
}
2017-03-12 17:22:02 +00:00
private void drawPentaB(UGraphic ug, double len, ChangeState change) {
final PentaBShape shape = PentaBShape.create(len, 2 * delta, change.getContext());
2017-02-15 21:34:36 +00:00
shape.drawU(ug);
2017-02-01 18:55:51 +00:00
}
2017-03-12 17:22:02 +00:00
private void drawPentaA(UGraphic ug, double len, ChangeState change) {
final PentaAShape shape = PentaAShape.create(len, 2 * delta, change.getContext());
2017-02-15 21:34:36 +00:00
shape.drawU(ug);
}
private double getHeightForConstraints() {
if (constraints.size() == 0) {
return 0;
2017-02-01 18:55:51 +00:00
}
2017-02-15 21:34:36 +00:00
return 30;
2017-02-01 18:55:51 +00:00
}
public double getHeight() {
2017-02-15 21:34:36 +00:00
return 3 * delta + getHeightForConstraints();
2017-02-01 18:55:51 +00:00
}
public double getDelta() {
return delta;
}
2017-02-15 21:34:36 +00:00
public TextBlock getWidthHeader(StringBounder stringBounder) {
if (initialState != null) {
return TextBlockUtils.empty(getInitialWidth(stringBounder), 2 * delta);
}
return TextBlockUtils.empty(0, 0);
}
public void setInitialState(String initialState) {
this.initialState = initialState;
}
public void addConstraint(TimeConstraint constraint) {
this.constraints.add(constraint);
}
2017-02-01 18:55:51 +00:00
}