sw_engine: implement line and curve raster
[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)
239 {
240     if (!_updateBBox(sdata)) goto end;
241     sdata.rle = rleRender(sdata);
242     _deleteOutline(sdata);
243 end:
244     if (sdata.rle) return true;
245     return false;
246 }
247
248
249 void shapeReset(SwShape& sdata)
250 {
251     _deleteOutline(sdata);
252     _deleteRle(sdata);
253     _initBBox(sdata);
254 }
255
256
257 bool shapeGenOutline(const ShapeNode& shape, SwShape& sdata)
258 {
259     const PathCommand* cmds = nullptr;
260     auto cmdCnt = shape.pathCommands(&cmds);
261
262     const Point* pts = nullptr;
263     auto ptsCnt = shape.pathCoords(&pts);
264
265     //No actual shape data
266     if (cmdCnt == 0 || ptsCnt == 0) return false;
267
268     //smart reservation
269     auto outlinePtsCnt = 0;
270     auto outlineCntrsCnt = 0;
271
272     for (auto i = 0; i < cmdCnt; ++i) {
273         switch(*(cmds + i)) {
274             case PathCommand::Close: {
275                 ++outlinePtsCnt;
276                 break;
277             }
278             case PathCommand::MoveTo: {
279                 ++outlineCntrsCnt;
280                 ++outlinePtsCnt;
281                 break;
282             }
283             case PathCommand::LineTo: {
284                 ++outlinePtsCnt;
285                 break;
286             }
287             case PathCommand::CubicTo: {
288                 outlinePtsCnt += 3;
289                 break;
290             }
291         }
292     }
293
294     ++outlinePtsCnt;    //for close
295     ++outlineCntrsCnt;  //for end
296
297     SwOutline* outline = sdata.outline;
298
299     if (!outline) {
300         outline = static_cast<SwOutline*>(calloc(1, sizeof(SwOutline)));
301         assert(outline);
302     } else {
303         cout << "Outline was already allocated? How?" << endl;
304     }
305
306     //TODO: Probabry we can copy pts from shape directly.
307     _growOutlinePoint(*outline, outlinePtsCnt);
308     _growOutlineContour(*outline, outlineCntrsCnt);
309
310     //Generate Outlines
311     while (cmdCnt-- > 0) {
312         switch(*cmds) {
313             case PathCommand::Close: {
314                 _outlineClose(*outline);
315                 break;
316             }
317             case PathCommand::MoveTo: {
318                 _outlineMoveTo(*outline, pts);
319                 ++pts;
320                 break;
321             }
322             case PathCommand::LineTo: {
323                 _outlineLineTo(*outline, pts);
324                 ++pts;
325                 break;
326             }
327             case PathCommand::CubicTo: {
328                 _outlineCubicTo(*outline, pts, pts + 1, pts + 2);
329                 pts += 3;
330                 break;
331             }
332         }
333         ++cmds;
334     }
335
336     _outlineEnd(*outline);
337
338     //FIXME:
339     //outline->flags = SwOutline::FillRule::Winding;
340
341     sdata.outline = outline;
342
343     return true;
344 }
345
346
347 #endif /* _TVG_SW_SHAPE_H_ */