plantuml/src/net/sourceforge/plantuml/activitydiagram3/ftile/FtileAssemblySimple.java

179 lines
5.4 KiB
Java

/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2020, Arnaud Roques
*
* Project Info: http://plantuml.com
*
* 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
*
* 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.activitydiagram3.ftile;
import java.awt.geom.Dimension2D;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import net.sourceforge.plantuml.ISkinParam;
import net.sourceforge.plantuml.activitydiagram3.LinkRendering;
import net.sourceforge.plantuml.graphic.AbstractTextBlock;
import net.sourceforge.plantuml.graphic.HorizontalAlignment;
import net.sourceforge.plantuml.graphic.StringBounder;
import net.sourceforge.plantuml.ugraphic.UGraphic;
import net.sourceforge.plantuml.ugraphic.UStroke;
import net.sourceforge.plantuml.ugraphic.UTranslate;
public class FtileAssemblySimple extends AbstractTextBlock implements Ftile {
private final Ftile tile1;
private final Ftile tile2;
@Override
public String toString() {
return "FtileAssemblySimple " + tile1 + " && " + tile2;
}
public FtileAssemblySimple(Ftile tile1, Ftile tile2) {
this.tile1 = tile1;
this.tile2 = tile2;
}
public Swimlane getSwimlaneIn() {
return tile1.getSwimlaneIn();
}
public Swimlane getSwimlaneOut() {
return tile2.getSwimlaneOut();
}
private final Map<Ftile, UTranslate> cachedTranslation = new HashMap<Ftile, UTranslate>();
public UTranslate getTranslateFor(Ftile child, StringBounder stringBounder) {
UTranslate result = cachedTranslation.get(child);
if (result == null) {
result = getTranslateForSlow(child, stringBounder);
cachedTranslation.put(child, result);
}
return result;
}
private UTranslate getTranslateForSlow(Ftile child, StringBounder stringBounder) {
if (child == tile1) {
return getTranslated1(stringBounder);
}
if (child == tile2) {
return getTranslated2(stringBounder);
}
UTranslate tmp = tile1.getTranslateFor(child, stringBounder);
if (tmp != null) {
return tmp.compose(getTranslated1(stringBounder));
}
tmp = tile2.getTranslateFor(child, stringBounder);
if (tmp != null) {
return tmp.compose(getTranslated2(stringBounder));
}
throw new UnsupportedOperationException();
}
public void drawU(UGraphic ug) {
final StringBounder stringBounder = ug.getStringBounder();
ug.apply(getTranslateFor(tile1, stringBounder)).draw(tile1);
ug.apply(getTranslateFor(tile2, stringBounder)).draw(tile2);
}
public LinkRendering getInLinkRendering() {
return tile1.getInLinkRendering();
}
public LinkRendering getOutLinkRendering() {
return LinkRendering.none();
}
private FtileGeometry calculateDimension;
public FtileGeometry calculateDimension(StringBounder stringBounder) {
if (calculateDimension == null) {
calculateDimension = tile1.calculateDimension(stringBounder)
.appendBottom(tile2.calculateDimension(stringBounder));
}
return calculateDimension;
}
private UTranslate getTranslated1(StringBounder stringBounder) {
final double left = calculateDimension(stringBounder).getLeft();
return UTranslate.dx(left - tile1.calculateDimension(stringBounder).getLeft());
}
private UTranslate getTranslated2(StringBounder stringBounder) {
final Dimension2D dim1 = tile1.calculateDimension(stringBounder);
final double left = calculateDimension(stringBounder).getLeft();
return new UTranslate(left - tile2.calculateDimension(stringBounder).getLeft(), dim1.getHeight());
}
public Collection<Connection> getInnerConnections() {
return Collections.emptyList();
}
public Set<Swimlane> getSwimlanes() {
final Set<Swimlane> result = new HashSet<Swimlane>();
result.addAll(tile1.getSwimlanes());
result.addAll(tile2.getSwimlanes());
return Collections.unmodifiableSet(result);
}
public ISkinParam skinParam() {
return tile1.skinParam();
}
public UStroke getThickness() {
return tile1.getThickness();
}
public List<WeldingPoint> getWeldingPoints() {
final List<WeldingPoint> result = new ArrayList<WeldingPoint>(tile1.getWeldingPoints());
result.addAll(tile2.getWeldingPoints());
return Collections.unmodifiableList(result);
}
public Collection<Ftile> getMyChildren() {
return Arrays.asList(tile1, tile2);
}
public HorizontalAlignment arrowHorizontalAlignment() {
return tile1.arrowHorizontalAlignment();
}
}