/src/xpdf-4.06/splash/SplashPath.cc
Line | Count | Source |
1 | | //======================================================================== |
2 | | // |
3 | | // SplashPath.cc |
4 | | // |
5 | | // Copyright 2003-2013 Glyph & Cog, LLC |
6 | | // |
7 | | //======================================================================== |
8 | | |
9 | | #include <aconf.h> |
10 | | |
11 | | #include <string.h> |
12 | | #include "gmem.h" |
13 | | #include "gmempp.h" |
14 | | #include "SplashErrorCodes.h" |
15 | | #include "SplashPath.h" |
16 | | |
17 | | //------------------------------------------------------------------------ |
18 | | // SplashPath |
19 | | //------------------------------------------------------------------------ |
20 | | |
21 | | // A path can be in three possible states: |
22 | | // |
23 | | // 1. no current point -- zero or more finished subpaths |
24 | | // [curSubpath == length] |
25 | | // |
26 | | // 2. one point in subpath |
27 | | // [curSubpath == length - 1] |
28 | | // |
29 | | // 3. open subpath with two or more points |
30 | | // [curSubpath < length - 1] |
31 | | |
32 | 2.54M | SplashPath::SplashPath() { |
33 | 2.54M | pts = NULL; |
34 | 2.54M | flags = NULL; |
35 | 2.54M | length = size = 0; |
36 | 2.54M | curSubpath = 0; |
37 | 2.54M | hints = NULL; |
38 | 2.54M | hintsLength = hintsSize = 0; |
39 | 2.54M | } |
40 | | |
41 | 0 | SplashPath::SplashPath(SplashPath *path) { |
42 | 0 | length = path->length; |
43 | 0 | size = path->size; |
44 | 0 | pts = (SplashPathPoint *)gmallocn(size, sizeof(SplashPathPoint)); |
45 | 0 | flags = (Guchar *)gmallocn(size, sizeof(Guchar)); |
46 | 0 | memcpy(pts, path->pts, length * sizeof(SplashPathPoint)); |
47 | 0 | memcpy(flags, path->flags, length * sizeof(Guchar)); |
48 | 0 | curSubpath = path->curSubpath; |
49 | 0 | if (path->hints) { |
50 | 0 | hintsLength = hintsSize = path->hintsLength; |
51 | 0 | hints = (SplashPathHint *)gmallocn(hintsSize, sizeof(SplashPathHint)); |
52 | 0 | memcpy(hints, path->hints, hintsLength * sizeof(SplashPathHint)); |
53 | 0 | } else { |
54 | 0 | hints = NULL; |
55 | 0 | hintsLength = hintsSize = 0; |
56 | 0 | } |
57 | 0 | } |
58 | | |
59 | 2.54M | SplashPath::~SplashPath() { |
60 | 2.54M | gfree(pts); |
61 | 2.54M | gfree(flags); |
62 | 2.54M | gfree(hints); |
63 | 2.54M | } |
64 | | |
65 | | // Add space for <nPts> more points. |
66 | 125M | void SplashPath::grow(int nPts) { |
67 | 125M | if (length + nPts > size) { |
68 | 2.21M | if (size == 0) { |
69 | 2.07M | size = 32; |
70 | 2.07M | } |
71 | 2.34M | while (size < length + nPts) { |
72 | 132k | size *= 2; |
73 | 132k | } |
74 | 2.21M | pts = (SplashPathPoint *)greallocn(pts, size, sizeof(SplashPathPoint)); |
75 | 2.21M | flags = (Guchar *)greallocn(flags, size, sizeof(Guchar)); |
76 | 2.21M | } |
77 | 125M | } |
78 | | |
79 | 825k | void SplashPath::append(SplashPath *path) { |
80 | 825k | int i; |
81 | | |
82 | 825k | curSubpath = length + path->curSubpath; |
83 | 825k | grow(path->length); |
84 | 9.63M | for (i = 0; i < path->length; ++i) { |
85 | 8.80M | pts[length] = path->pts[i]; |
86 | 8.80M | flags[length] = path->flags[i]; |
87 | 8.80M | ++length; |
88 | 8.80M | } |
89 | 825k | } |
90 | | |
91 | 26.0M | SplashError SplashPath::moveTo(SplashCoord x, SplashCoord y) { |
92 | 26.0M | if (onePointSubpath()) { |
93 | 0 | return splashErrBogusPath; |
94 | 0 | } |
95 | 26.0M | grow(1); |
96 | 26.0M | pts[length].x = x; |
97 | 26.0M | pts[length].y = y; |
98 | 26.0M | flags[length] = splashPathFirst | splashPathLast; |
99 | 26.0M | curSubpath = length++; |
100 | 26.0M | return splashOk; |
101 | 26.0M | } |
102 | | |
103 | 90.1M | SplashError SplashPath::lineTo(SplashCoord x, SplashCoord y) { |
104 | 90.1M | if (noCurrentPoint()) { |
105 | 0 | return splashErrNoCurPt; |
106 | 0 | } |
107 | 90.1M | flags[length-1] &= (Guchar)~splashPathLast; |
108 | 90.1M | grow(1); |
109 | 90.1M | pts[length].x = x; |
110 | 90.1M | pts[length].y = y; |
111 | 90.1M | flags[length] = splashPathLast; |
112 | 90.1M | ++length; |
113 | 90.1M | return splashOk; |
114 | 90.1M | } |
115 | | |
116 | | SplashError SplashPath::curveTo(SplashCoord x1, SplashCoord y1, |
117 | | SplashCoord x2, SplashCoord y2, |
118 | 8.11M | SplashCoord x3, SplashCoord y3) { |
119 | 8.11M | if (noCurrentPoint()) { |
120 | 0 | return splashErrNoCurPt; |
121 | 0 | } |
122 | 8.11M | flags[length-1] &= (Guchar)~splashPathLast; |
123 | 8.11M | grow(3); |
124 | 8.11M | pts[length].x = x1; |
125 | 8.11M | pts[length].y = y1; |
126 | 8.11M | flags[length] = splashPathCurve; |
127 | 8.11M | ++length; |
128 | 8.11M | pts[length].x = x2; |
129 | 8.11M | pts[length].y = y2; |
130 | 8.11M | flags[length] = splashPathCurve; |
131 | 8.11M | ++length; |
132 | 8.11M | pts[length].x = x3; |
133 | 8.11M | pts[length].y = y3; |
134 | 8.11M | flags[length] = splashPathLast; |
135 | 8.11M | ++length; |
136 | 8.11M | return splashOk; |
137 | 8.11M | } |
138 | | |
139 | 22.1M | SplashError SplashPath::close(GBool force) { |
140 | 22.1M | if (noCurrentPoint()) { |
141 | 118 | return splashErrNoCurPt; |
142 | 118 | } |
143 | 22.1M | if (force || |
144 | 11.2M | curSubpath == length - 1 || |
145 | 11.2M | pts[length - 1].x != pts[curSubpath].x || |
146 | 18.2M | pts[length - 1].y != pts[curSubpath].y) { |
147 | 18.2M | lineTo(pts[curSubpath].x, pts[curSubpath].y); |
148 | 18.2M | } |
149 | 22.1M | flags[curSubpath] |= splashPathClosed; |
150 | 22.1M | flags[length - 1] |= splashPathClosed; |
151 | 22.1M | curSubpath = length; |
152 | 22.1M | return splashOk; |
153 | 22.1M | } |
154 | | |
155 | | void SplashPath::addStrokeAdjustHint(int ctrl0, int ctrl1, |
156 | | int firstPt, int lastPt, |
157 | 29.6M | GBool projectingCap) { |
158 | 29.6M | if (hintsLength == hintsSize) { |
159 | 80.3k | hintsSize = hintsLength ? 2 * hintsLength : 8; |
160 | 80.3k | hints = (SplashPathHint *)greallocn(hints, hintsSize, |
161 | 80.3k | sizeof(SplashPathHint)); |
162 | 80.3k | } |
163 | 29.6M | hints[hintsLength].ctrl0 = ctrl0; |
164 | 29.6M | hints[hintsLength].ctrl1 = ctrl1; |
165 | 29.6M | hints[hintsLength].firstPt = firstPt; |
166 | 29.6M | hints[hintsLength].lastPt = lastPt; |
167 | 29.6M | hints[hintsLength].projectingCap = projectingCap; |
168 | 29.6M | ++hintsLength; |
169 | 29.6M | } |
170 | | |
171 | 839k | void SplashPath::offset(SplashCoord dx, SplashCoord dy) { |
172 | 839k | int i; |
173 | | |
174 | 9.67M | for (i = 0; i < length; ++i) { |
175 | 8.83M | pts[i].x += dx; |
176 | 8.83M | pts[i].y += dy; |
177 | 8.83M | } |
178 | 839k | } |
179 | | |
180 | 795k | GBool SplashPath::getCurPt(SplashCoord *x, SplashCoord *y) { |
181 | 795k | if (noCurrentPoint()) { |
182 | 0 | return gFalse; |
183 | 0 | } |
184 | 795k | *x = pts[length - 1].x; |
185 | 795k | *y = pts[length - 1].y; |
186 | 795k | return gTrue; |
187 | 795k | } |
188 | | |
189 | 0 | GBool SplashPath::containsZeroLengthSubpaths() { |
190 | 0 | GBool zeroLength; |
191 | 0 | int i; |
192 | |
|
193 | 0 | zeroLength = gTrue; // make gcc happy |
194 | 0 | for (i = 0; i < length; ++i) { |
195 | 0 | if (flags[i] & splashPathFirst) { |
196 | 0 | zeroLength = gTrue; |
197 | 0 | } else { |
198 | 0 | if (pts[i].x != pts[i-1].x || pts[i].y != pts[i-1].y) { |
199 | 0 | zeroLength = gFalse; |
200 | 0 | } |
201 | 0 | if (flags[i] & splashPathLast) { |
202 | 0 | if (zeroLength) { |
203 | 0 | return gTrue; |
204 | 0 | } |
205 | 0 | } |
206 | 0 | } |
207 | 0 | } |
208 | 0 | return gFalse; |
209 | 0 | } |