binary optimization
[platform/core/graphics/tizenvg.git] / src / lib / tvgPaint.h
1 /*
2  * Copyright (c) 2020-2021 Samsung Electronics Co., Ltd. All rights reserved.
3
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10
11  * The above copyright notice and this permission notice shall be included in all
12  * copies or substantial portions of the Software.
13
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20  * SOFTWARE.
21  */
22 #ifndef _TVG_PAINT_H_
23 #define _TVG_PAINT_H_
24
25 #include "tvgRender.h"
26
27
28 namespace tvg
29 {
30     enum class PaintType { Shape = 0, Scene, Picture };
31
32     struct StrategyMethod
33     {
34         virtual ~StrategyMethod() {}
35
36         virtual bool dispose(RenderMethod& renderer) = 0;
37         virtual void* update(RenderMethod& renderer, const RenderTransform* transform, uint32_t opacity, Array<RenderData>& clips, RenderUpdateFlag pFlag) = 0;   //Return engine data if it has.
38         virtual bool render(RenderMethod& renderer) = 0;
39         virtual bool bounds(float* x, float* y, float* w, float* h) const = 0;
40         virtual RenderRegion bounds(RenderMethod& renderer) const = 0;
41         virtual Paint* duplicate() = 0;
42     };
43
44     struct Paint::Impl
45     {
46         StrategyMethod* smethod = nullptr;
47         RenderTransform *rTransform = nullptr;
48         uint32_t flag = RenderUpdateFlag::None;
49         Paint* cmpTarget = nullptr;
50         CompositeMethod cmpMethod = CompositeMethod::None;
51         uint8_t opacity = 255;
52         PaintType type;
53
54         ~Impl() {
55             if (cmpTarget) delete(cmpTarget);
56             if (smethod) delete(smethod);
57             if (rTransform) delete(rTransform);
58         }
59
60         void method(StrategyMethod* method)
61         {
62             smethod = method;
63         }
64
65         bool transform(const Matrix& m)
66         {
67             if (!rTransform) {
68                 rTransform = new RenderTransform();
69                 if (!rTransform) return false;
70             }
71             rTransform->override(m);
72             flag |= RenderUpdateFlag::Transform;
73
74             return true;
75         }
76
77         bool bounds(float* x, float* y, float* w, float* h) const
78         {
79             return smethod->bounds(x, y, w, h);
80         }
81
82         RenderRegion bounds(RenderMethod& renderer) const
83         {
84             return smethod->bounds(renderer);
85         }
86
87         bool dispose(RenderMethod& renderer)
88         {
89             if (cmpTarget) cmpTarget->pImpl->dispose(renderer);
90             return smethod->dispose(renderer);
91         }
92
93         bool composite(Paint* target, CompositeMethod method)
94         {
95             if ((!target && method != CompositeMethod::None) || (target && method == CompositeMethod::None)) return false;
96             if (cmpTarget) delete(cmpTarget);
97             cmpTarget = target;
98             cmpMethod = method;
99             return true;
100         }
101
102         bool rotate(float degree);
103         bool scale(float factor);
104         bool translate(float x, float y);
105         void* update(RenderMethod& renderer, const RenderTransform* pTransform, uint32_t opacity, Array<RenderData>& clips, uint32_t pFlag);
106         bool render(RenderMethod& renderer);
107         Paint* duplicate();
108     };
109
110
111     template<class T>
112     struct PaintMethod : StrategyMethod
113     {
114         T* inst = nullptr;
115
116         PaintMethod(T* _inst) : inst(_inst) {}
117         ~PaintMethod() {}
118
119         bool bounds(float* x, float* y, float* w, float* h) const override
120         {
121             return inst->bounds(x, y, w, h);
122         }
123
124         RenderRegion bounds(RenderMethod& renderer) const override
125         {
126             return inst->bounds(renderer);
127         }
128
129         bool dispose(RenderMethod& renderer) override
130         {
131             return inst->dispose(renderer);
132         }
133
134         void* update(RenderMethod& renderer, const RenderTransform* transform, uint32_t opacity, Array<RenderData>& clips, RenderUpdateFlag flag) override
135         {
136             return inst->update(renderer, transform, opacity, clips, flag);
137         }
138
139         bool render(RenderMethod& renderer) override
140         {
141             return inst->render(renderer);
142         }
143
144         Paint* duplicate() override
145         {
146             return inst->duplicate();
147         }
148     };
149 }
150
151 #endif //_TVG_PAINT_H_