sw_engine: case cover out of surface boundary.
[platform/core/graphics/tizenvg.git] / src / lib / sw_engine / tvgSwShape.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *               http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  */
17 #ifndef _TVG_SW_SHAPE_H_
18 #define _TVG_SW_SHAPE_H_
19
20 #include "tvgSwCommon.h"
21
22 /************************************************************************/
23 /* Internal Class Implementation                                        */
24 /************************************************************************/
25
26 static inline SwPoint TO_SWPOINT(const Point* pt)
27 {
28     return {SwCoord(pt->x * 64), SwCoord(pt->y * 64)};
29 }
30
31
32 static void _growOutlineContour(SwOutline& outline, size_t n)
33 {
34     if (n == 0) {
35         free(outline.cntrs);
36         outline.cntrs = nullptr;
37         outline.cntrsCnt = 0;
38         outline.reservedCntrsCnt = 0;
39         return;
40     }
41     if (outline.reservedCntrsCnt >= outline.cntrsCnt + n) return;
42
43     //cout << "Grow Cntrs: " << outline.reservedCntrsCnt << " -> " << outline.cntrsCnt + n << endl;;
44     outline.reservedCntrsCnt = n;
45     outline.cntrs = static_cast<size_t*>(realloc(outline.cntrs, n * sizeof(size_t)));
46     assert(outline.cntrs);
47 }
48
49
50 static void _growOutlinePoint(SwOutline& outline, size_t n)
51 {
52     if (n == 0) {
53         free(outline.pts);
54         outline.pts = nullptr;
55         free(outline.tags);
56         outline.tags = nullptr;
57         outline.reservedPtsCnt = 0;
58         outline.ptsCnt = 0;
59         return;
60     }
61
62     if (outline.reservedPtsCnt >= outline.ptsCnt + n) return;
63
64     //cout << "Grow Pts: " << outline.reservedPtsCnt << " -> " << outline.ptsCnt + n << endl;
65     outline.reservedPtsCnt = n;
66     outline.pts = static_cast<SwPoint*>(realloc(outline.pts, n * sizeof(SwPoint)));
67     assert(outline.pts);
68     outline.tags = static_cast<char*>(realloc(outline.tags, n * sizeof(char)));
69     assert(outline.tags);
70 }
71
72
73 static void _outlineEnd(SwOutline& outline)
74 {
75     _growOutlineContour(outline, 1);
76     if (outline.ptsCnt > 0) {
77         outline.cntrs[outline.cntrsCnt] = outline.ptsCnt - 1;
78         ++outline.cntrsCnt;
79     }
80 }
81
82
83 static void _outlineMoveTo(SwOutline& outline, const Point* to)
84 {
85     assert(to);
86
87     _growOutlinePoint(outline, 1);
88
89     outline.pts[outline.ptsCnt] = TO_SWPOINT(to);
90     outline.tags[outline.ptsCnt] = SW_CURVE_TAG_ON;
91
92     if (outline.ptsCnt > 0) {
93         _growOutlineContour(outline, 1);
94         outline.cntrs[outline.cntrsCnt] = outline.ptsCnt - 1;
95         ++outline.cntrsCnt;
96     }
97
98     ++outline.ptsCnt;
99 }
100
101
102 static void _outlineLineTo(SwOutline& outline, const Point* to)
103 {
104     assert(to);
105
106     _growOutlinePoint(outline, 1);
107
108     outline.pts[outline.ptsCnt] = TO_SWPOINT(to);
109     outline.tags[outline.ptsCnt] = SW_CURVE_TAG_ON;
110
111     ++outline.ptsCnt;
112 }
113
114
115 static void _outlineCubicTo(SwOutline& outline, const Point* ctrl1, const Point* ctrl2, const Point* to)
116 {
117     assert(ctrl1 && ctrl2 && to);
118
119     _growOutlinePoint(outline, 3);
120
121     outline.pts[outline.ptsCnt] = TO_SWPOINT(ctrl1);
122     outline.tags[outline.ptsCnt] = SW_CURVE_TAG_CUBIC;
123     ++outline.ptsCnt;
124
125     outline.pts[outline.ptsCnt] = TO_SWPOINT(ctrl2);
126     outline.tags[outline.ptsCnt] = SW_CURVE_TAG_CUBIC;
127     ++outline.ptsCnt;
128
129     outline.pts[outline.ptsCnt] = TO_SWPOINT(to);
130     outline.tags[outline.ptsCnt] = SW_CURVE_TAG_ON;
131     ++outline.ptsCnt;
132 }
133
134
135 static bool _outlineClose(SwOutline& outline)
136 {
137     size_t i = 0;
138
139     if (outline.cntrsCnt > 0) {
140         i = outline.cntrs[outline.cntrsCnt - 1] + 1;
141     } else {
142         i = 0;   //First Path
143     }
144
145     //Make sure there is at least one point in the current path
146     if (outline.ptsCnt == i) return false;
147
148     //Close the path
149     _growOutlinePoint(outline, 1);
150
151     outline.pts[outline.ptsCnt] = outline.pts[i];
152     outline.tags[outline.ptsCnt] = SW_CURVE_TAG_ON;
153     ++outline.ptsCnt;
154
155     return true;
156 }
157
158
159 static void _initBBox(SwShape& sdata)
160 {
161     sdata.bbox.min.x = sdata.bbox.min.y = 0;
162     sdata.bbox.max.x = sdata.bbox.max.y = 0;
163 }
164
165
166 static bool _updateBBox(SwShape& sdata)
167 {
168     auto outline = sdata.outline;
169     assert(outline);
170
171     auto pt = outline->pts;
172     assert(pt);
173
174     if (outline->ptsCnt <= 0) {
175         _initBBox(sdata);
176         return false;
177     }
178
179     auto xMin = pt->x;
180     auto xMax = pt->x;
181     auto yMin = pt->y;
182     auto yMax = pt->y;
183
184     ++pt;
185
186     for(size_t i = 1; i < outline->ptsCnt; ++i, ++pt) {
187         assert(pt);
188         if (xMin > pt->x) xMin = pt->x;
189         if (xMax < pt->x) xMax = pt->x;
190         if (yMin > pt->y) yMin = pt->y;
191         if (yMax < pt->y) yMax = pt->y;
192     }
193     sdata.bbox.min.x = xMin >> 6;
194     sdata.bbox.max.x = (xMax + 63) >> 6;
195     sdata.bbox.min.y = yMin >> 6;
196     sdata.bbox.max.y = (yMax + 63) >> 6;
197
198     if (xMax - xMin < 1 || yMax - yMin < 1) return false;
199
200     return true;
201 }
202
203
204 void _deleteRle(SwShape& sdata)
205 {
206     if (sdata.rle) {
207         if (sdata.rle->spans) free(sdata.rle->spans);
208         free(sdata.rle);
209     }
210     sdata.rle = nullptr;
211 }
212
213
214 void _deleteOutline(SwShape& sdata)
215 {
216     if (!sdata.outline) return;
217
218     SwOutline* outline = sdata.outline;
219     if (outline->cntrs) free(outline->cntrs);
220     if (outline->pts) free(outline->pts);
221     if (outline->tags) free(outline->tags);
222     free(outline);
223
224     sdata.outline = nullptr;
225 }
226
227 /************************************************************************/
228 /* External Class Implementation                                        */
229 /************************************************************************/
230
231 bool shapeTransformOutline(const ShapeNode& shape, SwShape& sdata)
232 {
233     //TODO:
234     return true;
235 }
236
237
238 bool shapeGenRle(const ShapeNode& shape, SwShape& sdata, const SwSize& clip)
239 {
240     if (sdata.outline->ptsCnt == 0 || sdata.outline->cntrsCnt <= 0) goto end;
241     if (!_updateBBox(sdata)) goto end;
242
243     //Check boundary
244     if ((sdata.bbox.min.x > clip.w || sdata.bbox.min.y > clip.h) ||
245         (sdata.bbox.min.x + sdata.bbox.max.x < 0) ||
246         (sdata.bbox.min.y + sdata.bbox.max.y < 0)) goto end;
247
248     sdata.rle = rleRender(sdata, clip);
249     _deleteOutline(sdata);
250
251 end:
252     if (sdata.rle) return true;
253     return false;
254 }
255
256
257 void shapeReset(SwShape& sdata)
258 {
259     _deleteOutline(sdata);
260     _deleteRle(sdata);
261     _initBBox(sdata);
262 }
263
264
265 bool shapeGenOutline(const ShapeNode& shape, SwShape& sdata)
266 {
267     const PathCommand* cmds = nullptr;
268     auto cmdCnt = shape.pathCommands(&cmds);
269
270     const Point* pts = nullptr;
271     auto ptsCnt = shape.pathCoords(&pts);
272
273     //No actual shape data
274     if (cmdCnt == 0 || ptsCnt == 0) return false;
275
276     //smart reservation
277     auto outlinePtsCnt = 0;
278     auto outlineCntrsCnt = 0;
279
280     for (auto i = 0; i < cmdCnt; ++i) {
281         switch(*(cmds + i)) {
282             case PathCommand::Close: {
283                 ++outlinePtsCnt;
284                 break;
285             }
286             case PathCommand::MoveTo: {
287                 ++outlineCntrsCnt;
288                 ++outlinePtsCnt;
289                 break;
290             }
291             case PathCommand::LineTo: {
292                 ++outlinePtsCnt;
293                 break;
294             }
295             case PathCommand::CubicTo: {
296                 outlinePtsCnt += 3;
297                 break;
298             }
299         }
300     }
301
302     ++outlinePtsCnt;    //for close
303     ++outlineCntrsCnt;  //for end
304
305     SwOutline* outline = sdata.outline;
306
307     if (!outline) {
308         outline = static_cast<SwOutline*>(calloc(1, sizeof(SwOutline)));
309         assert(outline);
310     } else {
311         cout << "Outline was already allocated? How?" << endl;
312     }
313
314     //TODO: Probabry we can copy pts from shape directly.
315     _growOutlinePoint(*outline, outlinePtsCnt);
316     _growOutlineContour(*outline, outlineCntrsCnt);
317
318     //Generate Outlines
319     while (cmdCnt-- > 0) {
320         switch(*cmds) {
321             case PathCommand::Close: {
322                 _outlineClose(*outline);
323                 break;
324             }
325             case PathCommand::MoveTo: {
326                 _outlineMoveTo(*outline, pts);
327                 ++pts;
328                 break;
329             }
330             case PathCommand::LineTo: {
331                 _outlineLineTo(*outline, pts);
332                 ++pts;
333                 break;
334             }
335             case PathCommand::CubicTo: {
336                 _outlineCubicTo(*outline, pts, pts + 1, pts + 2);
337                 pts += 3;
338                 break;
339             }
340         }
341         ++cmds;
342     }
343
344     _outlineEnd(*outline);
345
346     //FIXME:
347     //outline->flags = SwOutline::FillRule::Winding;
348
349     sdata.outline = outline;
350
351     return true;
352 }
353
354
355 #endif /* _TVG_SW_SHAPE_H_ */