plantuml/src/net/sourceforge/plantuml/ugraphic/SlotFinder.java

152 lines
4.2 KiB
Java

/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2017, 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.ugraphic;
import net.sourceforge.plantuml.Url;
import net.sourceforge.plantuml.graphic.StringBounder;
public class SlotFinder implements UGraphic {
public boolean matchesProperty(String propertyName) {
return false;
}
public double dpiFactor() {
return 1;
}
public UGraphic apply(UChange change) {
if (change instanceof UTranslate) {
return new SlotFinder(stringBounder, yslot, translate.compose((UTranslate) change));
} else if (change instanceof UStroke) {
return new SlotFinder(this);
} else if (change instanceof UChangeBackColor) {
return new SlotFinder(this);
} else if (change instanceof UChangeColor) {
return new SlotFinder(this);
}
throw new UnsupportedOperationException();
}
private final SlotSet yslot;
private final StringBounder stringBounder;
private final UTranslate translate;
public SlotFinder(StringBounder stringBounder) {
this(stringBounder, new SlotSet(), new UTranslate());
}
private SlotFinder(StringBounder stringBounder, SlotSet yslot, UTranslate translate) {
this.stringBounder = stringBounder;
this.yslot = yslot;
this.translate = translate;
}
private SlotFinder(SlotFinder other) {
this(other.stringBounder, other.yslot, other.translate);
}
public StringBounder getStringBounder() {
return stringBounder;
}
public UParam getParam() {
return new UParamNull();
}
public void draw(UShape shape) {
final double x = translate.getDx();
final double y = translate.getDy();
if (shape instanceof URectangle) {
final URectangle rect = (URectangle) shape;
if (rect.isIgnoreForCompression()) {
drawRectangle(x, y, new URectangle(rect.getWidth(), 2));
drawRectangle(x, y + rect.getHeight() - 2, new URectangle(rect.getWidth(), 2));
return;
}
drawRectangle(x, y, rect);
} else if (shape instanceof UPolygon) {
drawPolygon(x, y, (UPolygon) shape);
} else if (shape instanceof UEllipse) {
drawEllipse(x, y, (UEllipse) shape);
} else if (shape instanceof UText) {
drawText(x, y, (UText) shape);
} else if (shape instanceof UEmpty) {
drawEmpty(x, y, (UEmpty) shape);
}
}
private void drawEmpty(double x, double y, UEmpty shape) {
yslot.addSlot(y, y + shape.getHeight());
}
private void drawText(double x, double y, UText shape) {
final TextLimitFinder finder = new TextLimitFinder(stringBounder, false);
finder.apply(new UTranslate(x, y)).draw(shape);
yslot.addSlot(finder.getMinY(), finder.getMaxY());
}
private void drawEllipse(double x, double y, UEllipse shape) {
yslot.addSlot(y, y + shape.getHeight());
}
private void drawPolygon(double x, double y, UPolygon shape) {
yslot.addSlot(y + shape.getMinY(), y + shape.getMaxY());
}
private void drawRectangle(double x, double y, URectangle shape) {
yslot.addSlot(y, y + shape.getHeight());
}
public ColorMapper getColorMapper() {
return new ColorMapperIdentity();
}
public void startUrl(Url url) {
}
public void closeAction() {
}
public SlotSet getYSlotSet() {
return yslot;
}
public void flushUg() {
}
}