plantuml/src/net/sourceforge/plantuml/board/BoardDiagram.java

142 lines
4.2 KiB
Java
Raw Normal View History

2020-12-19 21:21:54 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2023-02-22 18:43:48 +00:00
* (C) Copyright 2009-2024, Arnaud Roques
2020-12-19 21:21:54 +00:00
*
2023-02-22 18:43:48 +00:00
* Project Info: https://plantuml.com
2020-12-19 21:21:54 +00:00
*
* If you like this project or if you find it useful, you can support us at:
*
2023-02-22 18:43:48 +00:00
* https://plantuml.com/patreon (only 1$ per month!)
* https://plantuml.com/paypal
2020-12-19 21:21:54 +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.board;
import java.io.IOException;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.List;
import net.sourceforge.plantuml.FileFormatOption;
import net.sourceforge.plantuml.UmlDiagram;
import net.sourceforge.plantuml.command.CommandExecutionResult;
import net.sourceforge.plantuml.core.DiagramDescription;
import net.sourceforge.plantuml.core.ImageData;
2021-05-23 15:35:13 +00:00
import net.sourceforge.plantuml.core.UmlSource;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.klimt.UStroke;
import net.sourceforge.plantuml.klimt.UTranslate;
import net.sourceforge.plantuml.klimt.color.HColors;
2023-02-22 18:43:48 +00:00
import net.sourceforge.plantuml.klimt.drawing.UGraphic;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.klimt.font.StringBounder;
2023-02-22 18:43:48 +00:00
import net.sourceforge.plantuml.klimt.geom.XDimension2D;
2023-02-26 18:51:17 +00:00
import net.sourceforge.plantuml.klimt.shape.AbstractTextBlock;
import net.sourceforge.plantuml.klimt.shape.TextBlock;
2023-02-22 18:43:48 +00:00
import net.sourceforge.plantuml.klimt.shape.ULine;
import net.sourceforge.plantuml.skin.UmlDiagramType;
2020-12-19 21:21:54 +00:00
public class BoardDiagram extends UmlDiagram {
2021-05-14 08:42:57 +00:00
private final List<Activity> activities = new ArrayList<>();
2020-12-19 21:21:54 +00:00
public DiagramDescription getDescription() {
return new DiagramDescription("Board");
}
2022-09-18 17:08:06 +00:00
public BoardDiagram(UmlSource source) {
super(source, UmlDiagramType.BOARD, null);
2020-12-19 21:21:54 +00:00
}
@Override
protected ImageData exportDiagramInternal(OutputStream os, int index, FileFormatOption fileFormatOption)
throws IOException {
2022-02-10 18:16:18 +00:00
return createImageBuilder(fileFormatOption).drawable(getTextBlock()).write(os);
2020-12-19 21:21:54 +00:00
}
2023-02-22 18:43:48 +00:00
@Override
2023-02-26 18:51:17 +00:00
protected TextBlock getTextBlock() {
return new AbstractTextBlock() {
2020-12-19 21:21:54 +00:00
public void drawU(UGraphic ug) {
drawMe(ug);
}
2022-09-12 20:08:34 +00:00
public XDimension2D calculateDimension(StringBounder stringBounder) {
2020-12-19 21:21:54 +00:00
final double width = 200;
final double height = 200;
2022-09-12 20:08:34 +00:00
return new XDimension2D(width, height);
2020-12-19 21:21:54 +00:00
}
};
}
private void drawMe(final UGraphic ug) {
UGraphic mug = ug;
for (Activity activity : activities) {
activity.drawMe(mug);
mug = mug.apply(UTranslate.dx(activity.getFullWidth()));
}
final ULine line = ULine.hline(getFullWidth());
for (int i = 0; i < getMaxStage(); i++) {
final double dy = (i + 1) * PostIt.getHeight() - 10;
2022-08-19 16:34:21 +00:00
ug.apply(HColors.BLACK).apply(new UStroke(5, 5, 0.5)).apply(UTranslate.dy(dy)).draw(line);
2020-12-19 21:21:54 +00:00
}
}
private double getFullWidth() {
double width = 0;
for (Activity activity : activities) {
width += activity.getFullWidth();
}
return width;
}
private int getMaxStage() {
int max = 0;
for (Activity activity : activities) {
max = Math.max(max, activity.getMaxStage());
}
return max;
}
private Activity getLastActivity() {
return this.activities.get(this.activities.size() - 1);
}
public CommandExecutionResult addLine(String plus, String label) {
if (plus.length() == 0) {
final Activity activity = new Activity(this, label, getSkinParam());
this.activities.add(activity);
return CommandExecutionResult.ok();
}
getLastActivity().addRelease(plus.length(), label);
return CommandExecutionResult.ok();
}
}