| 1 | /*
|
|---|
| 2 | * SVG Salamander
|
|---|
| 3 | * Copyright (c) 2004, Mark McKay
|
|---|
| 4 | * All rights reserved.
|
|---|
| 5 | *
|
|---|
| 6 | * Redistribution and use in source and binary forms, with or
|
|---|
| 7 | * without modification, are permitted provided that the following
|
|---|
| 8 | * conditions are met:
|
|---|
| 9 | *
|
|---|
| 10 | * - Redistributions of source code must retain the above
|
|---|
| 11 | * copyright notice, this list of conditions and the following
|
|---|
| 12 | * disclaimer.
|
|---|
| 13 | * - Redistributions in binary form must reproduce the above
|
|---|
| 14 | * copyright notice, this list of conditions and the following
|
|---|
| 15 | * disclaimer in the documentation and/or other materials
|
|---|
| 16 | * provided with the distribution.
|
|---|
| 17 | *
|
|---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|---|
| 19 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|---|
| 20 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|---|
| 21 | * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|---|
| 22 | * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|---|
| 23 | * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|---|
| 24 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|---|
| 25 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|---|
| 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|---|
| 27 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|---|
| 28 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|---|
| 29 | * OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 30 | *
|
|---|
| 31 | * Mark McKay can be contacted at mark@kitfox.com. Salamander and other
|
|---|
| 32 | * projects can be found at http://www.kitfox.com
|
|---|
| 33 | *
|
|---|
| 34 | * Created on January 26, 2004, 5:25 PM
|
|---|
| 35 | */
|
|---|
| 36 | package com.kitfox.svg;
|
|---|
| 37 |
|
|---|
| 38 | import com.kitfox.svg.xml.StyleAttribute;
|
|---|
| 39 | import com.kitfox.svg.xml.XMLParseUtil;
|
|---|
| 40 | import java.awt.Graphics2D;
|
|---|
| 41 | import java.awt.Shape;
|
|---|
| 42 | import java.awt.geom.GeneralPath;
|
|---|
| 43 | import java.awt.geom.Rectangle2D;
|
|---|
| 44 |
|
|---|
| 45 | /**
|
|---|
| 46 | * @author Mark McKay
|
|---|
| 47 | * @author <a href="mailto:mark@kitfox.com">Mark McKay</a>
|
|---|
| 48 | */
|
|---|
| 49 | public class Polygon extends ShapeElement
|
|---|
| 50 | {
|
|---|
| 51 | public static final String TAG_NAME = "polygon";
|
|---|
| 52 |
|
|---|
| 53 | int fillRule = GeneralPath.WIND_NON_ZERO;
|
|---|
| 54 | String pointsStrn = "";
|
|---|
| 55 | GeneralPath path;
|
|---|
| 56 |
|
|---|
| 57 | /**
|
|---|
| 58 | * Creates a new instance of Rect
|
|---|
| 59 | */
|
|---|
| 60 | public Polygon()
|
|---|
| 61 | {
|
|---|
| 62 | }
|
|---|
| 63 |
|
|---|
| 64 | public String getTagName()
|
|---|
| 65 | {
|
|---|
| 66 | return TAG_NAME;
|
|---|
| 67 | }
|
|---|
| 68 |
|
|---|
| 69 | protected void build() throws SVGException
|
|---|
| 70 | {
|
|---|
| 71 | super.build();
|
|---|
| 72 |
|
|---|
| 73 | StyleAttribute sty = new StyleAttribute();
|
|---|
| 74 |
|
|---|
| 75 | if (getPres(sty.setName("points")))
|
|---|
| 76 | {
|
|---|
| 77 | pointsStrn = sty.getStringValue();
|
|---|
| 78 | }
|
|---|
| 79 |
|
|---|
| 80 | String fillRuleStrn = getStyle(sty.setName("fill-rule")) ? sty.getStringValue() : "nonzero";
|
|---|
| 81 | fillRule = fillRuleStrn.equals("evenodd") ? GeneralPath.WIND_EVEN_ODD : GeneralPath.WIND_NON_ZERO;
|
|---|
| 82 |
|
|---|
| 83 | buildPath();
|
|---|
| 84 | }
|
|---|
| 85 |
|
|---|
| 86 | protected void buildPath()
|
|---|
| 87 | {
|
|---|
| 88 | float[] points = XMLParseUtil.parseFloatList(pointsStrn);
|
|---|
| 89 | path = new GeneralPath(fillRule, points.length / 2);
|
|---|
| 90 |
|
|---|
| 91 | path.moveTo(points[0], points[1]);
|
|---|
| 92 | for (int i = 2; i < points.length; i += 2)
|
|---|
| 93 | {
|
|---|
| 94 | path.lineTo(points[i], points[i + 1]);
|
|---|
| 95 | }
|
|---|
| 96 | path.closePath();
|
|---|
| 97 | }
|
|---|
| 98 |
|
|---|
| 99 | public void render(Graphics2D g) throws SVGException
|
|---|
| 100 | {
|
|---|
| 101 | beginLayer(g);
|
|---|
| 102 | renderShape(g, path);
|
|---|
| 103 | finishLayer(g);
|
|---|
| 104 | }
|
|---|
| 105 |
|
|---|
| 106 | public Shape getShape()
|
|---|
| 107 | {
|
|---|
| 108 | return shapeToParent(path);
|
|---|
| 109 | }
|
|---|
| 110 |
|
|---|
| 111 | public Rectangle2D getBoundingBox() throws SVGException
|
|---|
| 112 | {
|
|---|
| 113 | return boundsToParent(includeStrokeInBounds(path.getBounds2D()));
|
|---|
| 114 | }
|
|---|
| 115 |
|
|---|
| 116 | /**
|
|---|
| 117 | * Updates all attributes in this diagram associated with a time event. Ie,
|
|---|
| 118 | * all attributes with track information.
|
|---|
| 119 | *
|
|---|
| 120 | * @return - true if this node has changed state as a result of the time
|
|---|
| 121 | * update
|
|---|
| 122 | */
|
|---|
| 123 | public boolean updateTime(double curTime) throws SVGException
|
|---|
| 124 | {
|
|---|
| 125 | // if (trackManager.getNumTracks() == 0) return false;
|
|---|
| 126 | boolean changeState = super.updateTime(curTime);
|
|---|
| 127 |
|
|---|
| 128 | //Get current values for parameters
|
|---|
| 129 | StyleAttribute sty = new StyleAttribute();
|
|---|
| 130 | boolean shapeChange = false;
|
|---|
| 131 |
|
|---|
| 132 | if (getStyle(sty.setName("fill-rule")))
|
|---|
| 133 | {
|
|---|
| 134 | int newVal = sty.getStringValue().equals("evenodd")
|
|---|
| 135 | ? GeneralPath.WIND_EVEN_ODD
|
|---|
| 136 | : GeneralPath.WIND_NON_ZERO;
|
|---|
| 137 | if (newVal != fillRule)
|
|---|
| 138 | {
|
|---|
| 139 | fillRule = newVal;
|
|---|
| 140 | shapeChange = true;
|
|---|
| 141 | }
|
|---|
| 142 | }
|
|---|
| 143 |
|
|---|
| 144 | if (getPres(sty.setName("points")))
|
|---|
| 145 | {
|
|---|
| 146 | String newVal = sty.getStringValue();
|
|---|
| 147 | if (!newVal.equals(pointsStrn))
|
|---|
| 148 | {
|
|---|
| 149 | pointsStrn = newVal;
|
|---|
| 150 | shapeChange = true;
|
|---|
| 151 | }
|
|---|
| 152 | }
|
|---|
| 153 |
|
|---|
| 154 |
|
|---|
| 155 | if (shapeChange)
|
|---|
| 156 | {
|
|---|
| 157 | build();
|
|---|
| 158 | // buildPath();
|
|---|
| 159 | // return true;
|
|---|
| 160 | }
|
|---|
| 161 |
|
|---|
| 162 | return changeState || shapeChange;
|
|---|
| 163 | }
|
|---|
| 164 | }
|
|---|