Revert "Revert "Setup before starting fps measurement""
[platform/upstream/expedite.git] / src / bin / image_map_3d_3.c
1 #undef FNAME
2 #undef NAME
3 #undef ICON
4
5 /* metadata */
6 #define FNAME image_map_3d_3_start
7 #define NAME "Image Map 3D 3"
8 #define ICON "3d.png"
9
10 #ifndef PROTO
11 # ifndef UI
12 #  include "main.h"
13
14 typedef struct _Point
15 {
16    Evas_Coord x, y, z, u, v;
17 } Point;
18
19 typedef struct _Side
20 {
21    Evas_Object *o;
22    Point pt[4];
23 } Side;
24
25 typedef struct _Cube
26 {
27    Side side[6];
28 } Cube;
29
30 /* standard var */
31 static int done = 0;
32
33 /* private data */
34 static Cube *cubes[5];
35
36 #define POINT(n, p, xx, yy, zz, uu, vv) \
37    c->side[n].pt[p].x = xx; \
38    c->side[n].pt[p].y = yy; \
39    c->side[n].pt[p].z = zz; \
40    c->side[n].pt[p].u = uu; \
41    c->side[n].pt[p].v = vv
42
43 static Cube *
44 _cube_new(Evas_Coord w, Evas_Coord h, Evas_Coord d)
45 {
46    Cube *c;
47    int i;
48
49    w -= (w / 2);
50    h -= (h / 2);
51    d -= (d / 2);
52    c = calloc(1, sizeof(Cube));
53    for (i = 0; i < 6; i++)
54      {
55         Evas_Object *o;
56         char buf[256];
57         o = efl_add(EFL_CANVAS_IMAGE_CLASS, evas);
58         c->side[i].o = o;
59         snprintf(buf, sizeof(buf), "cube%i.png", i + 1);
60         efl_file_simple_load(o, build_path(buf), NULL);
61         efl_gfx_fill_set(o, EINA_RECT(0, 0, 256, 256));
62         efl_gfx_entity_size_set(o, EINA_SIZE2D(256, 256));
63         efl_gfx_image_smooth_scale_set(o, 0);
64         efl_gfx_entity_visible_set(o, EINA_TRUE);
65      }
66    POINT(0, 0, -w, -h, -d,   0,   0);
67    POINT(0, 1,  w, -h, -d, 256,   0);
68    POINT(0, 2,  w,  h, -d, 256, 256);
69    POINT(0, 3, -w,  h, -d,   0, 256);
70
71    POINT(1, 0,  w, -h, -d,   0,   0);
72    POINT(1, 1,  w, -h,  d, 256,   0);
73    POINT(1, 2,  w,  h,  d, 256, 256);
74    POINT(1, 3,  w,  h, -d,   0, 256);
75
76    POINT(2, 0,  w, -h,  d,   0,   0);
77    POINT(2, 1, -w, -h,  d, 256,   0);
78    POINT(2, 2, -w,  h,  d, 256, 256);
79    POINT(2, 3,  w,  h,  d,   0, 256);
80
81    POINT(3, 0, -w, -h,  d,   0,   0);
82    POINT(3, 1, -w, -h, -d, 256,   0);
83    POINT(3, 2, -w,  h, -d, 256, 256);
84    POINT(3, 3, -w,  h,  d,   0, 256);
85
86    POINT(4, 0, -w, -h,  d,   0,   0);
87    POINT(4, 1,  w, -h,  d, 256,   0);
88    POINT(4, 2,  w, -h, -d, 256, 256);
89    POINT(4, 3, -w, -h, -d,   0, 256);
90
91    POINT(5, 0, -w,  h, -d,   0,   0);
92    POINT(5, 1,  w,  h, -d, 256,   0);
93    POINT(5, 2,  w,  h,  d, 256, 256);
94    POINT(5, 3, -w,  h,  d,   0, 256);
95
96    return c;
97 }
98
99 static void
100 _cube_pos(Cube *c,
101           Evas_Coord x, Evas_Coord y, Evas_Coord z,
102           double dx, double dy, double dz)
103 {
104    static Evas_Map *m = NULL;
105    int i, j, order[6], sorted;
106    Evas_Coord mz[6];
107
108    if (!m) m = evas_map_new(4);
109    evas_map_smooth_set(m, 0);
110
111    for (i = 0; i < 6; i++)
112      {
113         Evas_Coord tz[4];
114
115         for (j = 0; j < 4; j++)
116           {
117              evas_map_point_coord_set(m, j,
118                                       c->side[i].pt[j].x + x,
119                                       c->side[i].pt[j].y + y,
120                                       c->side[i].pt[j].z + z);
121              evas_map_point_image_uv_set(m, j,
122                                          c->side[i].pt[j].u,
123                                          c->side[i].pt[j].v);
124              evas_map_point_color_set(m, j, 255, 255, 255, 128);
125           }
126         evas_map_util_3d_rotate(m, dx, dy, dz, x, y, z);
127         evas_map_util_3d_lighting(m, -1000, -1000, -1000,
128                                   255, 255, 255,
129                                   20, 20, 20);
130         evas_map_util_3d_perspective(m, (win_w / 2), (win_h / 2), 0, 512);
131         evas_object_map_enable_set(c->side[i].o, 1);
132         evas_object_map_set(c->side[i].o, m);
133
134         order[i] = i;
135         for (j = 0; j < 4; j++)
136           evas_map_point_coord_get(m, j, NULL, NULL, &(tz[j]));
137         mz[i] = (tz[0] + tz[1] + tz[2] + tz[3]) / 4;
138      }
139    sorted = 0;
140    do
141      {
142         sorted = 1;
143         for (i = 0; i < 5; i++)
144           {
145              if (mz[order[i]] > mz[order[i + 1]])
146                {
147                   j = order[i];
148                   order[i] = order[i + 1];
149                   order[i + 1] = j;
150                   sorted = 0;
151                }
152           }
153      }
154    while (!sorted);
155
156    efl_gfx_stack_raise_to_top(c->side[order[0]].o);
157    for (i = 1; i < 6; i++)
158      efl_gfx_stack_below(c->side[order[i]].o, c->side[order[i - 1]].o);
159 }
160
161 static void
162 _cube_free(Cube *c)
163 {
164    int i;
165
166    for (i = 0; i < 6; i++) efl_del(c->side[i].o);
167    free(c);
168 }
169
170 /* setup */
171 static void _setup(void)
172 {
173    cubes[0] = _cube_new(128, 128, 256);
174    cubes[1] = _cube_new(256, 128, 128);
175    cubes[2] = _cube_new(256, 256, 128);
176    cubes[3] = _cube_new(128, 256, 128);
177    cubes[4] = _cube_new(256, 256, 256);
178
179    done = 0;
180 }
181
182 /* cleanup */
183 static void _cleanup(void)
184 {
185    _cube_free(cubes[0]);
186    _cube_free(cubes[1]);
187    _cube_free(cubes[2]);
188    _cube_free(cubes[3]);
189    _cube_free(cubes[4]);
190 }
191
192 /* loop - do things */
193 static void _loop(double t, int f)
194 {
195    _cube_pos(cubes[0],
196              (win_w / 2) - 640, (win_h / 2) - 256, 512,
197              f / 2.0, f, f / 3.0);
198    _cube_pos(cubes[1],
199              (win_w / 2) + 512, (win_h / 2) - 128, 384,
200              f / 3.0, f / 2.0, f / 4.0);
201    _cube_pos(cubes[2],
202              (win_w / 2) - 384, (win_h / 2) + 128, 256,
203              f / 2.0, f / 3.0, f);
204    _cube_pos(cubes[3],
205              (win_w / 2) + 256, (win_h / 2) + 64, 128,
206              f, f / 5.0, f / 2.0);
207    _cube_pos(cubes[4],
208              (win_w / 2), (win_h / 2), 0,
209              f / 4.0, f / 3.0, f / 5.0);
210    FPS_STD(NAME);
211 }
212
213 /* prepend special key handlers if interactive (before STD) */
214 static void _key(const char *key)
215 {
216    KEY_STD;
217 }
218
219
220
221
222
223
224
225
226
227
228
229
230 /* template stuff - ignore */
231 # endif
232 #endif
233
234 #ifdef UI
235 _ui_menu_item_add(ICON, NAME, FNAME);
236 #endif
237
238 #ifdef PROTO
239 void FNAME(void);
240 #endif
241
242 #ifndef PROTO
243 # ifndef UI
244 void FNAME(void)
245 {
246    _setup();
247    ui_func_set(_key, _loop);
248 }
249 # endif
250 #endif
251 #undef FNAME
252 #undef NAME
253 #undef ICON