source: josm/trunk/src/com/kitfox/svg/Polygon.java@ 7253

Last change on this file since 7253 was 6002, checked in by Don-vip, 13 years ago

fix #8742 - update svgsalamander to release 0.1.18+patch (fix bug SVGSALAMANDER-26) -> allow to open more SVG files

File size: 4.9 KB
RevLine 
[4256]1/*
[6002]2 * SVG Salamander
3 * Copyright (c) 2004, Mark McKay
4 * All rights reserved.
[4256]5 *
[6002]6 * Redistribution and use in source and binary forms, with or
7 * without modification, are permitted provided that the following
8 * conditions are met:
[4256]9 *
[6002]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.
[4256]17 *
[6002]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
[4256]33 *
34 * Created on January 26, 2004, 5:25 PM
35 */
36package com.kitfox.svg;
37
38import com.kitfox.svg.xml.StyleAttribute;
39import com.kitfox.svg.xml.XMLParseUtil;
[6002]40import java.awt.Graphics2D;
41import java.awt.Shape;
42import java.awt.geom.GeneralPath;
43import java.awt.geom.Rectangle2D;
[4256]44
45/**
46 * @author Mark McKay
47 * @author <a href="mailto:mark@kitfox.com">Mark McKay</a>
48 */
[6002]49public class Polygon extends ShapeElement
50{
51 public static final String TAG_NAME = "polygon";
[4256]52
53 int fillRule = GeneralPath.WIND_NON_ZERO;
54 String pointsStrn = "";
55 GeneralPath path;
56
[6002]57 /**
58 * Creates a new instance of Rect
59 */
60 public Polygon()
61 {
[4256]62 }
[6002]63
64 public String getTagName()
[4256]65 {
[6002]66 return TAG_NAME;
67 }
[4256]68
[6002]69 protected void build() throws SVGException
[4256]70 {
[6002]71 super.build();
[4256]72
[6002]73 StyleAttribute sty = new StyleAttribute();
[4256]74
[6002]75 if (getPres(sty.setName("points")))
[4256]76 {
[6002]77 pointsStrn = sty.getStringValue();
[4256]78 }
[6002]79
[4256]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 }
[6002]85
[4256]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 }
[6002]98
[4256]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 /**
[6002]117 * Updates all attributes in this diagram associated with a time event. Ie,
118 * all attributes with track information.
119 *
[4256]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;
[6002]131
[4256]132 if (getStyle(sty.setName("fill-rule")))
133 {
[6002]134 int newVal = sty.getStringValue().equals("evenodd")
135 ? GeneralPath.WIND_EVEN_ODD
[4256]136 : GeneralPath.WIND_NON_ZERO;
137 if (newVal != fillRule)
138 {
139 fillRule = newVal;
140 shapeChange = true;
141 }
142 }
[6002]143
[4256]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 }
[6002]153
154
[4256]155 if (shapeChange)
156 {
157 build();
158// buildPath();
159// return true;
160 }
[6002]161
[4256]162 return changeState || shapeChange;
163 }
164}
Note: See TracBrowser for help on using the repository browser.