1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-26 03:42:36 +00:00
plantuml/src/net/sourceforge/plantuml/ugraphic/UGraphicCompress.java

89 lines
3.0 KiB
Java
Raw Normal View History

2013-12-10 19:36:50 +00:00
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
2015-04-07 18:18:37 +00:00
* (C) Copyright 2009-2014, Arnaud Roques
2013-12-10 19:36:50 +00:00
*
* Project Info: http://plantuml.sourceforge.net
*
* 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.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* Original Author: Arnaud Roques
*
* Revision $Revision: 5183 $
*
*/
package net.sourceforge.plantuml.ugraphic;
import net.sourceforge.plantuml.graphic.UGraphicDelegator;
public class UGraphicCompress extends UGraphicDelegator {
public UGraphic apply(UChange change) {
if (change instanceof UTranslate) {
return new UGraphicCompress(getUg(), compressionTransform, translate.compose((UTranslate) change));
} else if (change instanceof UStroke || change instanceof UChangeBackColor || change instanceof UChangeColor) {
return new UGraphicCompress(getUg().apply(change), compressionTransform, translate);
}
throw new UnsupportedOperationException();
}
private final CompressionTransform compressionTransform;
private final UTranslate translate;
public UGraphicCompress(UGraphic ug, CompressionTransform compressionTransform) {
this(ug, compressionTransform, new UTranslate());
}
private UGraphicCompress(UGraphic ug, CompressionTransform compressionTransform, UTranslate translate) {
super(ug);
this.compressionTransform = compressionTransform;
this.translate = translate;
}
public void draw(UShape shape) {
final double x = translate.getDx();
final double y = translate.getDy();
if (shape instanceof ULine) {
drawLine(x, y, (ULine) shape);
} else {
getUg().apply(new UTranslate(x, ct(y))).draw(shape);
}
}
private void drawLine(double x, double y, ULine shape) {
drawLine(x, ct(y), x + shape.getDX(), ct(y + shape.getDY()));
}
private double ct(double v) {
return compressionTransform.transform(v);
}
private void drawLine(double x1, double y1, double x2, double y2) {
final double xmin = Math.min(x1, x2);
final double xmax = Math.max(x1, x2);
final double ymin = Math.min(y1, y2);
final double ymax = Math.max(y1, y2);
getUg().apply(new UTranslate(xmin, ymin)).draw(new ULine(xmax - xmin, ymax - ymin));
}
}