![JAR search and dependency download from the Maven repository](/logo.png)
net.sourceforge.plantuml.klimt.drawing.eps.EpsGraphicsMacro Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml Show documentation
Show all versions of plantuml Show documentation
PlantUML is a component that allows to quickly write :
* sequence diagram,
* use case diagram,
* class diagram,
* activity diagram,
* component diagram,
* state diagram
* object diagram
/* ========================================================================
* PlantUML : a free UML diagram generator
* ========================================================================
*
* (C) Copyright 2009-2024, Arnaud Roques
*
* Project Info: https://plantuml.com
*
* If you like this project or if you find it useful, you can support us at:
*
* https://plantuml.com/patreon (only 1$ per month!)
* https://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.klimt.drawing.eps;
import java.awt.geom.PathIterator;
import java.util.HashMap;
import java.util.Map;
public class EpsGraphicsMacro extends EpsGraphics {
private final PostScriptData data = new PostScriptData();
private final PostScriptCommandMacro rquadto = new PostScriptCommandMacro("rquadto");
public EpsGraphicsMacro() {
super();
rquadto.add(new PostScriptCommandRaw("3 index 3 index 4 2 roll rcurveto", true));
}
@Override
protected void append(String s, boolean checkConsistence) {
if (checkConsistence && s.indexOf(" ") != -1)
throw new IllegalArgumentException(s);
data.add(new PostScriptCommandRaw(s, checkConsistence));
}
@Override
protected String getBodyString() {
final StringBuilder sb = new StringBuilder();
sb.append(rquadto.getPostStringDefinition());
for (PostScriptCommandMacro macro : macros.keySet()) {
sb.append(macro.getPostStringDefinition());
}
sb.append(data.toPostString());
return sb.toString();
}
// FONT
private double posX;
private double posY;
private int macroCpt;
private final Map macros = new HashMap();
@Override
public void newpath() {
append("0 setlinewidth", true);
append("[] 0 setdash", true);
appendColor(getColor());
append("newpath", true);
}
@Override
public void closepath() {
macroInProgress.add(new PostScriptCommandRaw("closepath", true));
closeMacro();
}
@Override
public void fill(int windingRule) {
if (macroInProgress != null)
closeMacro();
if (windingRule == PathIterator.WIND_EVEN_ODD)
append("eofill", true);
else if (windingRule == PathIterator.WIND_NON_ZERO)
append("fill", true);
}
private PostScriptCommandMacro macroInProgress = null;
@Override
public void moveto(double x1, double y1) {
data.add(new PostScriptCommandMoveTo(x1, y1));
this.posX = x1;
this.posY = y1;
openMacro();
ensureVisible(x1, y1);
}
@Override
public void lineto(double x1, double y1) {
final PostScriptCommand cmd = new PostScriptCommandLineTo(x1 - posX, y1 - posY);
macroInProgress.add(cmd);
this.posX = x1;
this.posY = y1;
ensureVisible(x1, y1);
}
@Override
public void curveto(double x1, double y1, double x2, double y2, double x3, double y3) {
final PostScriptCommandCurveTo cmd = new PostScriptCommandCurveTo(x1 - posX, y1 - posY, x2 - posX, y2 - posY,
x3 - posX, y3 - posY);
macroInProgress.add(cmd);
this.posX = x3;
this.posY = y3;
ensureVisible(x1, y1);
ensureVisible(x2, y2);
ensureVisible(x3, y3);
}
@Override
public void quadto(double x1, double y1, double x2, double y2) {
final PostScriptCommandQuadTo cmd = new PostScriptCommandQuadTo(x1 - posX, y1 - posY, x2 - posX, y2 - posY);
macroInProgress.add(cmd);
this.posX = x2;
this.posY = y2;
ensureVisible(x1, y1);
ensureVisible(x2, y2);
}
private void openMacro() {
if (macroInProgress != null)
throw new IllegalStateException();
macroInProgress = new PostScriptCommandMacro(macroName());
}
private String macroName() {
return "P$" + Integer.toString(macroCpt, 36);
}
private void closeMacro() {
if (macroInProgress == null)
throw new IllegalStateException();
final String existingName = macros.get(macroInProgress);
if (existingName == null) {
macros.put(macroInProgress, macroInProgress.getName());
append(macroName(), true);
macroCpt++;
} else {
append(existingName, true);
}
macroInProgress = null;
}
@Override
protected void epsHLine(double x, double ymin, double ymax) {
append(format(x) + " " + format(ymin) + " moveto", true);
final long diff = (long) ((ymax - ymin) * COEF);
long nb = diff / (getDashVisible() + getDashSpace());
final long lastY = (long) (ymin * COEF) + nb * (getDashVisible() + getDashSpace());
long v = (long) (ymax * COEF) - lastY;
if (v > getDashVisible()) {
nb++;
v = 0;
}
append(nb + "{", true);
append("0 " + getDashVisible() + " rlineto", true);
append("0 " + getDashSpace() + " rmoveto", true);
append("} repeat", true);
if (v > 0)
append("0 " + v + " rlineto", true);
}
@Override
protected void epsVLine(double y, double xmin, double xmax) {
append(format(xmin) + " " + format(y) + " moveto", true);
final long diff = (long) ((xmax - xmin) * COEF);
long nb = (diff / (getDashVisible() + getDashSpace()));
final long lastX = (long) (xmin * COEF) + nb * (getDashVisible() + getDashSpace());
long v = (long) (xmax * COEF) - lastX;
if (v > getDashVisible()) {
nb++;
v = 0;
}
append(nb + "{", true);
append("" + getDashVisible() + " 0 rlineto", true);
append("" + getDashSpace() + " 0 rmoveto", true);
append("} repeat", true);
if (v > 0)
append(v + " 0 rlineto", true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy