Revert "Revert "Setup before starting fps measurement""
[platform/upstream/expedite.git] / src / bin / proxy_image.c
1 #undef FNAME
2 #undef NAME
3 #undef ICON
4
5 /* metadata */
6 #define FNAME image_blend_unscaled_proxy_start
7 #define NAME "Image Blend Unscaled Proxy"
8 #define ICON "blend.png"
9
10 #ifndef PROTO
11 # ifndef UI
12 #  include "main.h"
13
14 /* standard var */
15 static int done = 0;
16 /* private data */
17 static Evas_Object *o_images[OBNUM];
18
19 /* setup */
20 static void _setup(void)
21 {
22    int i;
23    Evas_Object *o,*src;
24
25    o = efl_add(EFL_CANVAS_IMAGE_CLASS, evas);
26    efl_file_simple_load(o, build_path("logo.png"), NULL);
27    efl_gfx_fill_set(o, EINA_RECT(0, 0, 120, 160));
28    efl_gfx_entity_size_set(o, EINA_SIZE2D(120, 160));
29    efl_gfx_entity_visible_set(o, EINA_TRUE);
30    src = o;
31    o_images[0] = src;
32
33    for (i = 1; i < OBNUM; i++)
34      {
35         o = efl_add(EFL_CANVAS_PROXY_CLASS, evas);
36         o_images[i] = o;
37         efl_canvas_proxy_source_set(o, src);
38         efl_gfx_entity_size_set(o, EINA_SIZE2D(120, 160));
39         efl_gfx_fill_set(o, EINA_RECT(0, 0, 120, 160));
40         efl_gfx_entity_visible_set(o, EINA_TRUE);
41      }
42    done = 0;
43 }
44
45 /* cleanup */
46 static void _cleanup(void)
47 {
48    int i;
49    for (i = 0; i < OBNUM; i++) efl_del(o_images[i]);
50 }
51
52 /* loop - do things */
53 static void _loop(double t, int f)
54 {
55    int i;
56    Evas_Coord x, y, w, h;
57    for (i = 0; i < OBNUM; i++)
58      {
59         w = 120;
60         h = 160;
61         x = (win_w / 2) - (w / 2);
62         x += sin((double)(f + (i * 13)) / (36.7 * SLOW)) * (w / 2);
63         y = (win_h / 2) - (h / 2);
64         y += cos((double)(f + (i * 28)) / (43.8 * SLOW)) * (h / 2);
65         efl_gfx_entity_position_set(o_images[i], EINA_POSITION2D(x, y));
66      }
67    FPS_STD(NAME);
68 }
69
70 /* prepend special key handlers if interactive (before STD) */
71 static void _key(const char *key)
72 {
73    KEY_STD;
74 }
75
76
77
78
79
80
81
82
83
84
85
86
87 /* template stuff - ignore */
88 # endif
89 #endif
90
91 #ifdef UI
92 _ui_menu_item_add(ICON, NAME, FNAME);
93 #endif
94
95 #ifdef PROTO
96 void FNAME(void);
97 #endif
98
99 #ifndef PROTO
100 # ifndef UI
101 void FNAME(void)
102 {
103    _setup();
104    ui_func_set(_key, _loop);
105 }
106 # endif
107 #endif
108 #undef FNAME
109 #undef NAME
110 #undef ICON
111