renamed project name tizenvg => thorvg
[platform/core/graphics/tizenvg.git] / test / testCustomTransform.cpp
1 #include <thorvg.h>
2 #include <Elementary.h>
3
4 using namespace std;
5
6 #define WIDTH 800
7 #define HEIGHT 800
8
9 static uint32_t buffer[WIDTH * HEIGHT];
10 unique_ptr<tvg::SwCanvas> canvas = nullptr;
11 tvg::Shape* pShape = nullptr;
12
13 void tvgtest()
14 {
15     //Create a Canvas
16     canvas = tvg::SwCanvas::gen();
17     canvas->target(buffer, WIDTH, WIDTH, HEIGHT);
18
19     //Shape1
20     auto shape = tvg::Shape::gen();
21
22     /* Acquire shape pointer to access it again.
23        instead, you should consider not to interrupt this pointer life-cycle. */
24     pShape = shape.get();
25
26     shape->moveTo(0, -114.5);
27     shape->lineTo(54, -5.5);
28     shape->lineTo(175, 11.5);
29     shape->lineTo(88, 95.5);
30     shape->lineTo(108, 216.5);
31     shape->lineTo(0, 160.5);
32     shape->lineTo(-102, 216.5);
33     shape->lineTo(-87, 96.5);
34     shape->lineTo(-173, 12.5);
35     shape->lineTo(-53, -5.5);
36     shape->close();
37     shape->fill(0, 0, 255, 255);
38     canvas->push(move(shape));
39
40     //Draw first frame
41     canvas->draw();
42     canvas->sync();
43 }
44
45 void transit_cb(Elm_Transit_Effect *effect, Elm_Transit* transit, double progress)
46 {
47     /* Update shape directly.
48        You can update only necessary properties of this shape,
49        while retaining other properties. */
50
51     //Transform Matrix
52     tvg::Matrix m = {1, 0, 0, 0, 1, 0, 0, 0, 1};
53
54     //scale x
55     m.e11 = 1 - (progress * 0.5f);
56
57     //scale y
58     m.e22 = 1 + (progress * 2.0f);
59
60     //rotation
61     constexpr auto PI = 3.141592f;
62     auto degree = 45.0f;
63     auto radian = degree / 180.0f * PI;
64     auto cosVal = cosf(radian);
65     auto sinVal = sinf(radian);
66
67     auto t11 = m.e11 * cosVal + m.e12 * sinVal;
68     auto t12 = m.e11 * -sinVal + m.e12 * cosVal;
69     auto t21 = m.e21 * cosVal + m.e22 * sinVal;
70     auto t22 = m.e21 * -sinVal + m.e22 * cosVal;
71     auto t31 = m.e31 * cosVal + m.e32 * sinVal;
72     auto t32 = m.e31 * -sinVal + m.e32 * cosVal;
73
74     m.e11 = t11;
75     m.e12 = t12;
76     m.e21 = t21;
77     m.e22 = t22;
78     m.e31 = t31;
79     m.e32 = t32;
80
81     //translate
82     m.e31 = progress * 300.0f + 300.0f;
83     m.e32 = progress * -100.0f + 300.0f;
84
85     pShape->transform(m);
86
87     //Update shape for drawing (this may work asynchronously)
88     canvas->update(pShape);
89
90     //Draw Next frames
91     canvas->draw();
92     canvas->sync();
93
94     //Update Efl Canvas
95     Eo* img = (Eo*) effect;
96     evas_object_image_data_update_add(img, 0, 0, WIDTH, HEIGHT);
97 }
98
99 void win_del(void *data, Evas_Object *o, void *ev)
100 {
101     elm_exit();
102 }
103
104 int main(int argc, char **argv)
105 {
106     //Initialize ThorVG Engine
107     tvg::Initializer::init(tvg::CanvasEngine::Sw);
108
109     tvgtest();
110
111     //Show the result using EFL...
112     elm_init(argc, argv);
113
114     Eo* win = elm_win_util_standard_add(NULL, "ThorVG Test");
115     evas_object_smart_callback_add(win, "delete,request", win_del, 0);
116
117     Eo* img = evas_object_image_filled_add(evas_object_evas_get(win));
118     evas_object_image_size_set(img, WIDTH, HEIGHT);
119     evas_object_image_data_set(img, buffer);
120     evas_object_size_hint_weight_set(img, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
121     evas_object_show(img);
122
123     elm_win_resize_object_add(win, img);
124     evas_object_geometry_set(win, 0, 0, WIDTH, HEIGHT);
125     evas_object_show(win);
126
127     Elm_Transit *transit = elm_transit_add();
128     elm_transit_effect_add(transit, transit_cb, img, nullptr);
129     elm_transit_duration_set(transit, 2);
130     elm_transit_repeat_times_set(transit, -1);
131     elm_transit_auto_reverse_set(transit, EINA_TRUE);
132     elm_transit_go(transit);
133
134     elm_run();
135     elm_shutdown();
136
137     //Terminate ThorVG Engine
138     tvg::Initializer::term(tvg::CanvasEngine::Sw);
139 }