efl

Форк
0
/
test_growing_balls.c 
122 строки · 3.5 Кб
1
#ifdef HAVE_CONFIG_H
2
# include <config.h>
3
#endif
4

5
#include "ephysics_test.h"
6

7
static Eina_Bool
8
_grow_cb(void *data)
9
{
10
   Test_Data *test_data = data;
11
   Evas_Object *obj;
12
   Eina_List *l;
13
   int size, i = -1;
14

15
   EINA_LIST_FOREACH(test_data->evas_objs, l, obj)
16
     {
17
        evas_object_geometry_get(obj, NULL, NULL, &size, NULL);
18
        size += i * 8;
19
        i++;
20

21
        if ((size < 20) || (size > 120))
22
          continue;
23

24
        evas_object_resize(obj, size, size);
25
     }
26

27
   return EINA_TRUE;
28
}
29

30
static void
31
_add_sphere(Test_Data *test_data, const char *group, int size, int x, int y)
32
{
33
   EPhysics_Body *sphere_body;
34
   Evas_Object *sphere;
35

36
   sphere = elm_image_add(test_data->win);
37
   elm_image_file_set(sphere, PACKAGE_DATA_DIR "/" EPHYSICS_TEST_THEME ".edj",
38
                      group);
39
   evas_object_move(sphere, x, y);
40
   evas_object_resize(sphere, size, size);
41
   evas_object_show(sphere);
42
   test_data->evas_objs = eina_list_append(test_data->evas_objs, sphere);
43

44
   sphere_body = ephysics_body_sphere_add(test_data->world);
45
   ephysics_body_evas_object_set(sphere_body, sphere, EINA_TRUE);
46
   ephysics_body_restitution_set(sphere_body, 0.5);
47
   ephysics_body_central_impulse_apply(sphere_body, 300, 0, 0);
48
   test_data->bodies = eina_list_append(test_data->bodies, sphere_body);
49
}
50

51
static void
52
_world_populate(Test_Data *test_data)
53
{
54
   _add_sphere(test_data, "big-red-ball", 60, 100, 100);
55
   _add_sphere(test_data, "big-blue-ball", 60, 150, 150);
56
   _add_sphere(test_data, "big-green-ball", 60, 200, 200);
57
   test_data->data = ecore_timer_add(1, _grow_cb, test_data);
58
}
59

60
static void
61
_win_del(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
62
{
63
   Test_Data *test_data = data;
64
   Ecore_Timer *timer = test_data->data;
65

66
   if (timer)
67
     ecore_timer_del(timer);
68

69
   test_data_del(test_data);
70
   ephysics_shutdown();
71
}
72

73
static void
74
_restart(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
75
{
76
   Test_Data *test_data = data;
77
   Ecore_Timer *timer = test_data->data;
78

79
   if (timer)
80
     ecore_timer_del(timer);
81

82
   DBG("Restart pressed");
83
   test_clean(test_data);
84
   _world_populate(test_data);
85
}
86

87
void
88
test_growing_balls(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
89
{
90
   EPhysics_Body *boundary;
91
   EPhysics_World *world;
92
   Test_Data *test_data;
93

94
   if (!ephysics_init())
95
     return;
96

97
   test_data = test_data_new();
98
   test_win_add(test_data, "Growing Balls", EINA_FALSE);
99
   evas_object_event_callback_add(test_data->win, EVAS_CALLBACK_DEL,
100
                                  _win_del, test_data);
101

102
   elm_object_signal_emit(test_data->layout, "borders,show", "ephysics_test");
103
   elm_layout_signal_callback_add(test_data->layout, "restart", "test-theme",
104
                                  _restart, test_data);
105

106
   world = ephysics_world_new();
107
   ephysics_world_render_geometry_set(world, 50, 40, -50,
108
                                      WIDTH - 100, FLOOR_Y - 40, DEPTH);
109
   test_data->world = world;
110

111
   boundary = ephysics_body_bottom_boundary_add(test_data->world);
112
   ephysics_body_restitution_set(boundary, 0.8);
113

114
   boundary = ephysics_body_top_boundary_add(test_data->world);
115
   ephysics_body_restitution_set(boundary, 0.8);
116
   boundary = ephysics_body_left_boundary_add(test_data->world);
117
   ephysics_body_restitution_set(boundary, 0.8);
118
   boundary = ephysics_body_right_boundary_add(test_data->world);
119
   ephysics_body_restitution_set(boundary, 0.8);
120

121
   _world_populate(test_data);
122
}
123

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.