default_backend: do not allocate frame whenever each frames
[platform/core/uifw/libpui.git] / backends / bt / default_ani_pairing.c
1 /*
2  * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining
5  * a copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sublicense, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial
14  * portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  */
25
26 #include "../default_backend.h"
27
28 static default_frame_info_t *ani_frame = NULL;
29
30 static void
31 _ani_backend_pairing_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
32 {
33         if (!frame) return;
34         if (!r || !g || !b) return;
35         if (led_idx > frame->num_led) return;
36
37         *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
38         *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
39         *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
40 }
41
42 static default_frame_info_t *
43 _ani_backend_pairing_get_frame(default_ani_info *ani_info)
44 {
45         default_frame_info_t *key_frame;
46         int idx;
47
48         if (ani_info->frame_idx == 0)
49         {
50                 ani_info->frame_max = (unsigned int)(ani_info->frames[ani_info->key_frame_cur].frame_duration / ani_info->interval);
51         }
52
53         idx = ani_info->key_frame_cur;
54         key_frame = &ani_info->frames[idx];
55
56         for (int i = 0; i < key_frame->num_led; i++)
57         {
58                 ani_frame->leds[i].color = key_frame->leds[i].color;
59         }
60
61         ani_info->frame_idx++;
62         if (ani_info->frame_idx >= ani_info->frame_max)
63         {
64                 ani_info->frame_idx = 0;
65                 ani_info->key_frame_cur = (ani_info->key_frame_cur + 1) % ani_info->num_key_frames;
66                 if (ani_info->repeat >= 0 && ani_info->key_frame_cur == 0)
67                         ani_info->repeat_cur++;
68         }
69
70         return ani_frame;
71 }
72
73
74 static pui_bool
75 _ani_backend_pairing_frame_cb(void *data, int serial)
76 {
77         pui_int_error e = PUI_INT_ERROR_NONE;
78         pui_ani_t *ani = (pui_ani_t *)data;
79         pui_backend_ani_data *ani_data = NULL;
80         pui_ani_control_buffer *buffer = NULL;
81         default_frame_info_t *frame;
82         unsigned int r = 0x0, g = 0x0, b = 0x0;
83
84         ani_data = pui_backend_ani_get_ani_data(ani);
85         default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
86
87         /* TODO : make use of ani_info */
88         //(void) ani_info;
89
90         buffer = pui_backend_ani_get_buffer(ani);
91         if (!buffer) {
92                 pui_err("Failed to get buffer for animation\n");
93                 return (pui_bool)0;
94         }
95
96         frame = _ani_backend_pairing_get_frame(ani_info);
97         for(int i = 0; i<12; i++)
98         {
99                 _ani_backend_pairing_get_led_rgb(frame, i, &r, &g, &b);
100                 buffer->ptr[4*i] = 0;
101                 buffer->ptr[4*i + 1] = b; /* BLUE */
102                 buffer->ptr[4*i + 2] = g; /* GREEN */
103                 buffer->ptr[4*i + 3] = r; /* RED */
104         }
105         backend_util_cleanup_frame(frame);
106
107         e = pui_backend_ani_set_buffer(ani, buffer);
108
109         if (e != PUI_INT_ERROR_NONE)
110         {
111                 pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
112                 return (pui_bool)0;
113         }
114
115         e = pui_backend_ani_update(ani);
116
117         if (e != PUI_INT_ERROR_NONE)
118         {
119                 pui_err("Failed on updating animation !(e=%d)\n", e);
120                 return (pui_bool)0;
121         }
122
123         pui_info("... update (serial=%d), (repeat| cur: %d, want: %d)\n",
124                 serial, ani_info->repeat_cur, ani_info->repeat);
125
126         if (ani_info->repeat >= 0 &&
127                 ani_info->repeat_cur >= ani_info->repeat)
128         {
129                 ani_data->ani_func->ani_stop(ani, EINA_FALSE);
130         }
131
132         return (pui_bool)1;
133 }
134
135 pui_error
136 _ani_pairing_start(pui_ani_t *ani, int repeat)
137 {
138         pui_bool ret = 0;
139         pui_int_error e = PUI_INT_ERROR_NONE;
140         pui_backend_ani_data *ani_data = NULL;
141
142         ani_data = pui_backend_ani_get_ani_data(ani);
143         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
144
145         pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
146
147         pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
148         if (repeat == 0) info->repeat = 1;
149         else info->repeat = repeat;
150
151         info->key_frame_cur = 0;
152         info->frame_idx = 0;
153         info->repeat_cur = 0;
154
155         if (!ani_frame)
156                 ani_frame = backend_util_alloc_frame(info);
157         ERROR_CHECK(ani_frame, return PUI_INT_ERROR_INVALID_RESOURCES, "Failed to alloc memory for frame\n");
158
159         ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_pairing_frame_cb, info->interval / 1000.0);
160         if (!ret)
161         {
162                 pui_err("Failed to add frame callback !\n");
163                 e = PUI_INT_ERROR_INVALID_RESOURCES;
164         }
165
166         return e;
167 }
168
169 pui_error
170 _ani_pairing_stop(pui_ani_t *ani, pui_bool force)
171 {
172         pui_int_error e = PUI_INT_ERROR_NONE;
173         pui_backend_ani_data *ani_data = NULL;
174
175         ani_data = pui_backend_ani_get_ani_data(ani);
176         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
177
178         //TODO
179         (void) info;
180
181         pui_info("... info->id: %s, force=%d\n", info->id, force);
182
183         pui_backend_ani_remove_frame_cb(ani);
184
185         if (force)
186                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_PAUSED);
187         else
188                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
189
190         if (ani_frame)
191         {
192                 backend_util_free_frame(ani_frame);
193                 ani_frame = NULL;
194         }
195
196         return e;
197 }
198
199
200 void
201 pui_default_backend_ani_pairing_func_set(pui_backend_ani_func *func)
202 {
203         if (!func) return;
204
205         func->ani_start = _ani_pairing_start;
206         func->ani_stop = _ani_pairing_stop;
207 }
208
209