implement rle path parts.
[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 /************************************************************************/
205 /* External Class Implementation                                        */
206 /************************************************************************/
207
208 bool shapeTransformOutline(const ShapeNode& shape, SwShape& sdata)
209 {
210     //TODO:
211     return true;
212 }
213
214
215 void shapeDelRle(const ShapeNode& shape, SwShape& sdata)
216 {
217     if (sdata.rle.spans) free(sdata.rle.spans);
218     sdata.rle.spans = nullptr;
219 }
220
221
222 bool shapeGenRle(const ShapeNode& shape, SwShape& sdata)
223 {
224     shapeDelRle(shape, sdata);
225     if (!updateBBox(sdata)) return false;
226     return rleRender(sdata);
227 }
228
229
230 void shapeDelOutline(const ShapeNode& shape, SwShape& sdata)
231 {
232     if (!sdata.outline) return;
233
234     SwOutline* outline = sdata.outline;
235     if (outline->cntrs) free(outline->cntrs);
236     if (outline->pts) free(outline->pts);
237     if (outline->tags) free(outline->tags);
238     free(outline);
239
240     sdata.outline = nullptr;
241 }
242
243
244 bool shapeGenOutline(const ShapeNode& shape, SwShape& sdata)
245 {
246     initBBox(sdata);
247
248     const PathCommand* cmds = nullptr;
249     auto cmdCnt = shape.pathCommands(&cmds);
250
251     const Point* pts = nullptr;
252     auto ptsCnt = shape.pathCoords(&pts);
253
254     //No actual shape data
255     if (cmdCnt == 0 || ptsCnt == 0) return false;
256
257     //smart reservation
258     auto outlinePtsCnt = 0;
259     auto outlineCntrsCnt = 0;
260 //    auto closed = false;
261
262     for (auto i = 0; i < cmdCnt; ++i) {
263         switch(*(cmds + i)) {
264             case PathCommand::Close: {
265                 ++outlinePtsCnt;
266                 break;
267             }
268             case PathCommand::MoveTo: {
269                 ++outlineCntrsCnt;
270                 ++outlinePtsCnt;
271                 break;
272             }
273             case PathCommand::LineTo: {
274                 ++outlinePtsCnt;
275                 break;
276             }
277             case PathCommand::CubicTo: {
278                 outlinePtsCnt += 3;
279                 break;
280             }
281         }
282     }
283
284     ++outlinePtsCnt;    //for close
285     ++outlineCntrsCnt;  //for end
286
287     SwOutline* outline = sdata.outline;
288
289     if (!outline) {
290         outline = static_cast<SwOutline*>(calloc(1, sizeof(SwOutline)));
291         assert(outline);
292     } else {
293         cout << "Outline was already allocated? How?" << endl;
294     }
295
296     //TODO: Probabry we can copy pts from shape directly.
297     growOutlinePoint(*outline, outlinePtsCnt);
298     growOutlineContour(*outline, outlineCntrsCnt);
299
300     //Generate Outlines
301     while (cmdCnt-- > 0) {
302         switch(*cmds) {
303             case PathCommand::Close: {
304                 outlineClose(*outline);
305                 break;
306             }
307             case PathCommand::MoveTo: {
308                 outlineMoveTo(*outline, pts);
309                 ++pts;
310                 break;
311             }
312             case PathCommand::LineTo: {
313                 outlineLineTo(*outline, pts);
314                 ++pts;
315                 break;
316             }
317             case PathCommand::CubicTo: {
318                 outlineCubicTo(*outline, pts, pts + 1, pts + 2);
319                 pts += 3;
320                 break;
321             }
322         }
323         ++cmds;
324     }
325
326     outlineEnd(*outline);
327
328     //FIXME:
329     //outline->flags = SwOutline::FillRule::Winding;
330
331     sdata.outline = outline;
332
333     return true;
334 }
335
336
337 #endif /* _TVG_SW_SHAPE_H_ */