default_backend: do not allocate frame whenever each frames
[platform/core/uifw/libpui.git] / backends / voice / default_ani_listening.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_listening_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_listening_get_frame(default_ani_info *ani_info)
44 {
45         default_frame_info_t *key_frame;
46         int division;
47
48         key_frame = &ani_info->frames[0];
49
50         division = (int)(key_frame->num_led / 2);
51         for (int i = 0; i < key_frame->num_led; i++)
52         {
53                 int idx;
54                 //int idx = (i - ani_info->frame_idx + key_frame->num_led) % key_frame->num_led;
55                 if ((ani_info->frame_idx / division) <= 0)
56                 {
57                         if (i < division)
58                         {
59                                 idx = i - ani_info->frame_idx;
60                                 if (idx < 0) continue;
61                         }
62                         else
63                         {
64                                 idx = i + ani_info->frame_idx;
65                                 if (idx >= key_frame->num_led) continue;
66                         }
67                 }
68                 else
69                 {
70                         if (i < division)
71                         {
72                                 idx = i - division + 1 + ani_info->frame_idx - division;
73                                 if (idx < 0) continue;
74                         }
75                         else
76                         {
77                                 idx = i + division - 1 - ani_info->frame_idx + division;
78                                 if (idx >= key_frame->num_led) continue;
79                         }
80                 }
81                 ani_frame->leds[idx] = key_frame->leds[i];
82         }
83         ani_info->frame_idx++;
84         if (ani_info->frame_idx >= key_frame->num_led)
85         {
86                 if (ani_info->repeat >= 0)
87                         ani_info->repeat_cur++;
88                 ani_info->frame_idx = 0;
89         }
90
91         return ani_frame;
92 }
93
94 static pui_bool
95 _ani_backend_listening_frame_cb(void *data, int serial)
96 {
97         pui_int_error e = PUI_INT_ERROR_NONE;
98         pui_ani_t *ani = (pui_ani_t *)data;
99         pui_backend_ani_data *ani_data = NULL;
100         pui_ani_control_buffer *buffer = NULL;
101         default_frame_info_t *frame;
102         unsigned int r = 0x0, g = 0x0, b = 0x0;
103
104         ani_data = pui_backend_ani_get_ani_data(ani);
105         default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
106
107         /* TODO : make use of ani_info */
108         //(void) ani_info;
109
110         buffer = pui_backend_ani_get_buffer(ani);
111         if (!buffer) {
112                 pui_err("Failed to get buffer for animation\n");
113                 return (pui_bool)0;
114         }
115
116         frame = _ani_backend_listening_get_frame(ani_info);
117         for(int i = 0; i<12; i++)
118         {
119                 _ani_backend_listening_get_led_rgb(frame, i, &r, &g, &b);
120                 buffer->ptr[4*i] = 0;
121                 buffer->ptr[4*i + 1] = b; /* BLUE */
122                 buffer->ptr[4*i + 2] = g; /* GREEN */
123                 buffer->ptr[4*i + 3] = r; /* RED */
124         }
125         backend_util_cleanup_frame(frame);
126
127         e = pui_backend_ani_set_buffer(ani, buffer);
128
129         if (e != PUI_INT_ERROR_NONE)
130         {
131                 pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
132                 return (pui_bool)0;
133         }
134
135         e = pui_backend_ani_update(ani);
136
137         if (e != PUI_INT_ERROR_NONE)
138         {
139                 pui_err("Failed on updating animation !(e=%d)\n", e);
140                 return (pui_bool)0;
141         }
142
143         pui_info("... update (serial=%d), (repeat| cur: %d, want: %d)\n",
144                 serial, ani_info->repeat_cur, ani_info->repeat);
145
146         if (ani_info->repeat >= 0 &&
147                 ani_info->repeat_cur >= ani_info->repeat)
148         {
149                 ani_data->ani_func->ani_stop(ani, EINA_FALSE);
150         }
151
152         return (pui_bool)1;
153 }
154
155 pui_error
156 _ani_listening_start(pui_ani_t *ani, int repeat)
157 {
158         pui_bool ret = 0;
159         pui_int_error e = PUI_INT_ERROR_NONE;
160         pui_backend_ani_data *ani_data = NULL;
161
162         ani_data = pui_backend_ani_get_ani_data(ani);
163         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
164
165         pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
166
167         pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
168         if (repeat == 0) info->repeat = 1;
169         else info->repeat = repeat;
170
171         info->key_frame_cur = 0;
172         info->frame_idx = 0;
173         info->repeat_cur = 0;
174
175         if (!ani_frame)
176                 ani_frame = backend_util_alloc_frame(info);
177         ERROR_CHECK(ani_frame, return PUI_INT_ERROR_INVALID_RESOURCES, "Failed to alloc memory for frame\n");
178
179         ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_listening_frame_cb, info->interval / 1000.0);
180         if (!ret)
181         {
182                 pui_err("Failed to add frame callback !\n");
183                 e = PUI_INT_ERROR_INVALID_RESOURCES;
184         }
185
186         return e;
187 }
188
189 pui_error
190 _ani_listening_stop(pui_ani_t *ani, pui_bool force)
191 {
192         pui_int_error e = PUI_INT_ERROR_NONE;
193         pui_backend_ani_data *ani_data = NULL;
194
195         ani_data = pui_backend_ani_get_ani_data(ani);
196         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
197
198         //TODO
199         (void) info;
200
201         pui_info("... info->id: %s, force=%d\n", info->id, force);
202
203         pui_backend_ani_remove_frame_cb(ani);
204
205         if (force)
206                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_PAUSED);
207         else
208                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
209
210         if (ani_frame)
211         {
212                 backend_util_free_frame(ani_frame);
213                 ani_frame = NULL;
214         }
215
216         return e;
217 }
218
219
220 void
221 pui_default_backend_ani_listening_func_set(pui_backend_ani_func *func)
222 {
223         if (!func) return;
224
225         func->ani_start = _ani_listening_start;
226         func->ani_stop = _ani_listening_stop;
227 }
228
229