common: support Scene Transform
[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.types);
56         outline.types = 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.types = static_cast<uint8_t*>(realloc(outline.types, n * sizeof(uint8_t)));
69     assert(outline.types);
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.types[outline.ptsCnt] = SW_CURVE_TYPE_POINT;
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.types[outline.ptsCnt] = SW_CURVE_TYPE_POINT;
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.types[outline.ptsCnt] = SW_CURVE_TYPE_CUBIC;
123     ++outline.ptsCnt;
124
125     outline.pts[outline.ptsCnt] = TO_SWPOINT(ctrl2);
126     outline.types[outline.ptsCnt] = SW_CURVE_TYPE_CUBIC;
127     ++outline.ptsCnt;
128
129     outline.pts[outline.ptsCnt] = TO_SWPOINT(to);
130     outline.types[outline.ptsCnt] = SW_CURVE_TYPE_POINT;
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.types[outline.ptsCnt] = SW_CURVE_TYPE_POINT;
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 /************************************************************************/
215 /* External Class Implementation                                        */
216 /************************************************************************/
217
218 void shapeTransformOutline(const Shape& shape, SwShape& sdata, const RenderMatrix& transform)
219 {
220     auto outline = sdata.outline;
221     assert(outline);
222
223     for(size_t i = 0; i < outline->ptsCnt; ++i) {
224         auto dx = static_cast<float>(outline->pts[i].x >> 6);
225         auto dy = static_cast<float>(outline->pts[i].y >> 6);
226         auto tx = dx * transform.e11 + dy * transform.e12 + transform.e13;
227         auto ty = dx * transform.e21 + dy * transform.e22 + transform.e23;
228         auto pt = Point{tx + transform.e31, ty + transform.e32};
229         outline->pts[i] = TO_SWPOINT(&pt);
230     }
231 }
232
233
234 bool shapeGenRle(const Shape& shape, SwShape& sdata, const SwSize& clip)
235 {
236     if (sdata.outline->ptsCnt == 0 || sdata.outline->cntrsCnt <= 0) goto end;
237     if (!_updateBBox(sdata)) goto end;
238
239     //Check boundary
240     if ((sdata.bbox.min.x > clip.w || sdata.bbox.min.y > clip.h) ||
241         (sdata.bbox.min.x + sdata.bbox.max.x < 0) ||
242         (sdata.bbox.min.y + sdata.bbox.max.y < 0)) goto end;
243
244     sdata.rle = rleRender(sdata, clip);
245
246 end:
247     if (sdata.rle) return true;
248     return false;
249 }
250
251
252 void shapeDelOutline(SwShape& sdata)
253 {
254     if (!sdata.outline) return;
255
256     SwOutline* outline = sdata.outline;
257     if (outline->cntrs) free(outline->cntrs);
258     if (outline->pts) free(outline->pts);
259     if (outline->types) free(outline->types);
260     free(outline);
261
262     sdata.outline = nullptr;
263 }
264
265
266 void shapeReset(SwShape& sdata)
267 {
268     shapeDelOutline(sdata);
269     _deleteRle(sdata);
270     _initBBox(sdata);
271 }
272
273
274 bool shapeGenOutline(const Shape& shape, SwShape& sdata)
275 {
276     const PathCommand* cmds = nullptr;
277     auto cmdCnt = shape.pathCommands(&cmds);
278
279     const Point* pts = nullptr;
280     auto ptsCnt = shape.pathCoords(&pts);
281
282     //No actual shape data
283     if (cmdCnt == 0 || ptsCnt == 0) return false;
284
285     //smart reservation
286     auto outlinePtsCnt = 0;
287     auto outlineCntrsCnt = 0;
288
289     for (size_t i = 0; i < cmdCnt; ++i) {
290         switch(*(cmds + i)) {
291             case PathCommand::Close: {
292                 ++outlinePtsCnt;
293                 break;
294             }
295             case PathCommand::MoveTo: {
296                 ++outlineCntrsCnt;
297                 ++outlinePtsCnt;
298                 break;
299             }
300             case PathCommand::LineTo: {
301                 ++outlinePtsCnt;
302                 break;
303             }
304             case PathCommand::CubicTo: {
305                 outlinePtsCnt += 3;
306                 break;
307             }
308         }
309     }
310
311     ++outlinePtsCnt;    //for close
312     ++outlineCntrsCnt;  //for end
313
314     SwOutline* outline = sdata.outline;
315
316     if (!outline) {
317         outline = static_cast<SwOutline*>(calloc(1, sizeof(SwOutline)));
318         assert(outline);
319     } else {
320         cout << "Outline was already allocated? How?" << endl;
321     }
322
323     _growOutlinePoint(*outline, outlinePtsCnt);
324     _growOutlineContour(*outline, outlineCntrsCnt);
325
326     //Generate Outlines
327     while (cmdCnt-- > 0) {
328         switch(*cmds) {
329             case PathCommand::Close: {
330                 _outlineClose(*outline);
331                 break;
332             }
333             case PathCommand::MoveTo: {
334                 _outlineMoveTo(*outline, pts);
335                 ++pts;
336                 break;
337             }
338             case PathCommand::LineTo: {
339                 _outlineLineTo(*outline, pts);
340                 ++pts;
341                 break;
342             }
343             case PathCommand::CubicTo: {
344                 _outlineCubicTo(*outline, pts, pts + 1, pts + 2);
345                 pts += 3;
346                 break;
347             }
348         }
349         ++cmds;
350     }
351
352     _outlineEnd(*outline);
353
354     //FIXME:
355     //outline->flags = SwOutline::FillRule::Winding;
356
357     sdata.outline = outline;
358
359     return true;
360 }
361
362
363 #endif /* _TVG_SW_SHAPE_H_ */