plantuml/src/net/sourceforge/plantuml/klimt/drawing/AbstractUGraphic.java

282 lines
9.0 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2023-02-22 18:43:48 +00:00
* (C) Copyright 2009-2024, Arnaud Roques
2013-12-10 19:36:50 +00:00
*
2023-02-22 18:43:48 +00:00
* Project Info: https://plantuml.com
2013-12-10 19:36:50 +00:00
*
2017-03-15 19:13:31 +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
2017-03-15 19:13:31 +00:00
*
2013-12-10 19:36:50 +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
*
*
*/
2023-02-22 18:43:48 +00:00
package net.sourceforge.plantuml.klimt.drawing;
2013-12-10 19:36:50 +00:00
2023-02-22 18:43:48 +00:00
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
2023-02-02 17:59:43 +00:00
import net.atmp.SpecialText;
2020-04-05 15:13:04 +00:00
import net.sourceforge.plantuml.activitydiagram3.ftile.CenteredText;
2023-02-22 18:43:48 +00:00
import net.sourceforge.plantuml.klimt.CopyForegroundColorToBackgroundColor;
import net.sourceforge.plantuml.klimt.UParam;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.klimt.UPath;
import net.sourceforge.plantuml.klimt.UShape;
import net.sourceforge.plantuml.klimt.color.ColorMapper;
import net.sourceforge.plantuml.klimt.color.HColor;
2023-02-26 18:51:17 +00:00
import net.sourceforge.plantuml.klimt.creole.legacy.AtomText;
2023-02-02 17:59:43 +00:00
import net.sourceforge.plantuml.klimt.font.StringBounder;
import net.sourceforge.plantuml.klimt.geom.MinMax;
import net.sourceforge.plantuml.klimt.geom.MinMaxMutable;
2023-02-22 18:43:48 +00:00
import net.sourceforge.plantuml.klimt.geom.XDimension2D;
import net.sourceforge.plantuml.klimt.shape.DotPath;
import net.sourceforge.plantuml.klimt.shape.TextBlock;
import net.sourceforge.plantuml.klimt.shape.UCenteredCharacter;
import net.sourceforge.plantuml.klimt.shape.UComment;
import net.sourceforge.plantuml.klimt.shape.UEllipse;
import net.sourceforge.plantuml.klimt.shape.UEmpty;
import net.sourceforge.plantuml.klimt.shape.UImage;
import net.sourceforge.plantuml.klimt.shape.UImageSvg;
import net.sourceforge.plantuml.klimt.shape.ULine;
import net.sourceforge.plantuml.klimt.shape.UPixel;
import net.sourceforge.plantuml.klimt.shape.UPolygon;
import net.sourceforge.plantuml.klimt.shape.URectangle;
import net.sourceforge.plantuml.klimt.shape.UText;
2013-12-10 19:36:50 +00:00
2023-02-22 18:43:48 +00:00
public abstract class AbstractUGraphic<O> extends AbstractCommonUGraphic {
2015-04-07 18:18:37 +00:00
2023-02-22 18:43:48 +00:00
private final O graphic;
private final MinMaxMutable minmax;
// It would be nice to do something like this but not sure how:
// Map<Class<SHAPE>, UDriver<SHAPE, O>>
// See
// https://stackoverflow.com/questions/416540/java-map-with-values-limited-by-keys-type-parameter
private final Map<Class<? extends UShape>, UDriver<?, O>> drivers = new HashMap<>();
public AbstractUGraphic(HColor defaultBackground, ColorMapper colorMapper, StringBounder stringBounder, O graphic) {
super(Objects.requireNonNull(defaultBackground), colorMapper, stringBounder);
this.graphic = graphic;
this.minmax = MinMaxMutable.getEmpty(true);
2013-12-10 19:36:50 +00:00
}
2023-02-22 18:43:48 +00:00
protected AbstractUGraphic(AbstractUGraphic<O> other) {
super(other);
this.graphic = other.graphic;
this.minmax = other.minmax;
// this.drivers.putAll(other.drivers);
}
2022-03-19 12:48:23 +00:00
2023-02-22 18:43:48 +00:00
protected final O getGraphicObject() {
return graphic;
2022-03-19 12:48:23 +00:00
}
2023-02-22 18:43:48 +00:00
protected boolean manageHiddenAutomatically() {
return true;
2013-12-10 19:36:50 +00:00
}
2023-02-22 18:43:48 +00:00
final protected <SHAPE extends UShape> void registerDriver(Class<SHAPE> cl, UDriver<SHAPE, O> driver) {
this.drivers.put(cl, driver);
}
private static final UDriver<?, ?> NOOP_DRIVER = new UDriver<UShape, Object>() {
@Override
public void draw(UShape shape, double x, double y, ColorMapper mapper, UParam param, Object object) {
}
};
@SuppressWarnings("unchecked")
final protected <SHAPE extends UShape> void ignoreShape(Class<SHAPE> cl) {
registerDriver(cl, (UDriver<SHAPE, O>) NOOP_DRIVER);
}
public final <SHAPE extends UShape> void draw(SHAPE shape) {
if (shape instanceof SpecialText) {
((SpecialText) shape).getTitle().drawU(this);
return;
}
if (shape instanceof UEmpty)
return;
if (shape instanceof UComment) {
drawComment((UComment) shape);
return;
}
updateMinMax(shape);
@SuppressWarnings("unchecked")
final UDriver<SHAPE, O> driver = (UDriver<SHAPE, O>) drivers.get(shape.getClass());
2022-03-19 12:48:23 +00:00
2023-02-22 18:43:48 +00:00
if (driver == null)
throw new UnsupportedOperationException(shape.getClass().toString() + " " + this.getClass());
if (getParam().isHidden() && manageHiddenAutomatically())
return;
beforeDraw();
driver.draw(shape, getTranslateX(), getTranslateY(), getColorMapper(), getParam(), graphic);
afterDraw();
2015-04-07 18:18:37 +00:00
}
2023-02-22 18:43:48 +00:00
private void updateMinMax(UShape shape) {
2023-02-26 18:51:17 +00:00
if (matchesProperty("SPECIALTXT") && shape instanceof AtomText) {
return;
}
final double x = getTranslate().getDx();
final double y = getTranslate().getDy();
2013-12-10 19:36:50 +00:00
if (shape instanceof UText) {
drawText(x, y, (UText) shape);
} else if (shape instanceof ULine) {
drawULine(x, y, (ULine) shape);
} else if (shape instanceof UEllipse) {
drawEllipse(x, y, (UEllipse) shape);
} else if (shape instanceof UPolygon) {
drawUPolygon(x, y, (UPolygon) shape);
} else if (shape instanceof UPath) {
drawUPath(x, y, (UPath) shape);
} else if (shape instanceof URectangle) {
drawRectangle(x, y, (URectangle) shape);
2015-04-07 18:18:37 +00:00
} else if (shape instanceof DotPath) {
drawDotPath(x, y, (DotPath) shape);
2013-12-10 19:36:50 +00:00
} else if (shape instanceof UImage) {
drawImage(x, y, (UImage) shape);
2016-08-25 20:45:37 +00:00
} else if (shape instanceof UImageSvg) {
drawImageSvg(x, y, (UImageSvg) shape);
2016-07-25 19:25:28 +00:00
} else if (shape instanceof UComment) {
2013-12-10 19:36:50 +00:00
} else if (shape instanceof UEmpty) {
drawEmpty(x, y, (UEmpty) shape);
2015-04-07 18:18:37 +00:00
} else if (shape instanceof TextBlock) {
final TextBlock tb = (TextBlock) shape;
2013-12-10 19:36:50 +00:00
tb.drawU(this);
} else if (shape instanceof UCenteredCharacter) {
// To be done
2020-04-05 15:13:04 +00:00
} else if (shape instanceof CenteredText) {
// Ignored
} else if (shape instanceof SpecialText) {
// Ignored
2022-10-05 20:32:57 +00:00
} else if (shape instanceof CopyForegroundColorToBackgroundColor) {
// Ignored
2015-04-07 18:18:37 +00:00
} else if (shape instanceof UPixel) {
addPoint(x, y);
2013-12-10 19:36:50 +00:00
} else {
2023-02-26 18:51:17 +00:00
throw new UnsupportedOperationException(shape.getClass().getName());
2013-12-10 19:36:50 +00:00
}
}
2023-02-22 18:43:48 +00:00
private void addPoint(double x, double y) {
if (getClip() == null || getClip().isInside(x, y))
minmax.addPoint(x, y);
}
2013-12-10 19:36:50 +00:00
private void drawEmpty(double x, double y, UEmpty shape) {
2015-04-07 18:18:37 +00:00
addPoint(x, y);
addPoint(x + shape.getWidth(), y + shape.getHeight());
2013-12-10 19:36:50 +00:00
}
private void drawUPath(double x, double y, UPath shape) {
2015-04-07 18:18:37 +00:00
addPoint(x + shape.getMinX(), y + shape.getMinY());
addPoint(x + shape.getMaxX(), y + shape.getMaxY());
2013-12-10 19:36:50 +00:00
}
2016-05-11 21:31:47 +00:00
private final static double HACK_X_FOR_POLYGON = 10;
2013-12-10 19:36:50 +00:00
private void drawUPolygon(double x, double y, UPolygon shape) {
2023-02-22 18:43:48 +00:00
if (shape.getPoints().size() == 0)
2015-04-07 18:18:37 +00:00
return;
2023-02-22 18:43:48 +00:00
2016-05-11 21:31:47 +00:00
addPoint(x + shape.getMinX() - HACK_X_FOR_POLYGON, y + shape.getMinY());
addPoint(x + shape.getMaxX() + HACK_X_FOR_POLYGON, y + shape.getMaxY());
2013-12-10 19:36:50 +00:00
}
private void drawULine(double x, double y, ULine shape) {
2015-04-07 18:18:37 +00:00
addPoint(x, y);
addPoint(x + shape.getDX(), y + shape.getDY());
2013-12-10 19:36:50 +00:00
}
private void drawRectangle(double x, double y, URectangle shape) {
2020-06-14 20:35:42 +00:00
addPoint(x - 1, y - 1);
addPoint(x + shape.getWidth() - 1 + shape.getDeltaShadow() * 2,
y + shape.getHeight() - 1 + shape.getDeltaShadow() * 2);
2015-04-07 18:18:37 +00:00
}
private void drawDotPath(double x, double y, DotPath shape) {
final MinMax shapeMinMax = shape.getMinMax();
addPoint(x + shapeMinMax.getMinX(), y + shapeMinMax.getMinY());
addPoint(x + shapeMinMax.getMaxX(), y + shapeMinMax.getMaxY());
2013-12-10 19:36:50 +00:00
}
private void drawImage(double x, double y, UImage shape) {
2015-04-07 18:18:37 +00:00
addPoint(x, y);
2017-03-15 19:13:31 +00:00
addPoint(x + shape.getWidth() - 1, y + shape.getHeight() - 1);
2013-12-10 19:36:50 +00:00
}
2016-08-25 20:45:37 +00:00
private void drawImageSvg(double x, double y, UImageSvg shape) {
addPoint(x, y);
2017-03-15 19:13:31 +00:00
addPoint(x + shape.getWidth() - 1, y + shape.getHeight() - 1);
2016-08-25 20:45:37 +00:00
}
2013-12-10 19:36:50 +00:00
private void drawEllipse(double x, double y, UEllipse shape) {
2015-04-07 18:18:37 +00:00
addPoint(x, y);
2020-06-14 20:35:42 +00:00
addPoint(x + shape.getWidth() - 1 + shape.getDeltaShadow() * 2,
y + shape.getHeight() - 1 + shape.getDeltaShadow() * 2);
2013-12-10 19:36:50 +00:00
}
private void drawText(double x, double y, UText text) {
2022-09-12 20:08:34 +00:00
final XDimension2D dim = getStringBounder().calculateDimension(text.getFontConfiguration().getFont(),
2022-03-19 12:48:23 +00:00
text.getText());
2013-12-10 19:36:50 +00:00
y -= dim.getHeight() - 1.5;
2015-04-07 18:18:37 +00:00
addPoint(x, y);
addPoint(x, y + dim.getHeight());
addPoint(x + dim.getWidth(), y);
addPoint(x + dim.getWidth(), y + dim.getHeight());
2013-12-10 19:36:50 +00:00
}
2023-02-22 18:43:48 +00:00
protected void drawComment(UComment shape) {
2013-12-10 19:36:50 +00:00
}
2023-02-22 18:43:48 +00:00
protected void beforeDraw() {
2013-12-10 19:36:50 +00:00
}
2023-02-22 18:43:48 +00:00
protected void afterDraw() {
2013-12-10 19:36:50 +00:00
}
2023-02-22 18:43:48 +00:00
final public double getMaxX() {
return minmax.getMaxX();
2013-12-10 19:36:50 +00:00
}
2023-02-22 18:43:48 +00:00
final public double getMaxY() {
return minmax.getMaxY();
2013-12-10 19:36:50 +00:00
}
2023-02-22 18:43:48 +00:00
final public void resetMax() {
minmax.reset();
2013-12-10 19:36:50 +00:00
}
}