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