502ec968cfb2ca852a8bcc1c37147293f9175d80
[platform/core/uifw/libpui.git] / backends / voice / default_ani_streaming.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 void
29 _ani_backend_streaming_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
30 {
31         if (!frame) return;
32         if (!r || !g || !b) return;
33         if (led_idx > frame->num_led) return;
34
35         *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
36         *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
37         *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
38 }
39
40 static void
41 _ani_backend_streaming_free_frame(default_frame_info_t *frame)
42 {
43         if (!frame) return;
44
45         if (frame->leds) free(frame->leds);
46         free(frame);
47 }
48
49 static default_frame_info_t *
50 _ani_backend_streaming_get_frame(default_ani_info *ani_info)
51 {
52 #define SMOOTH_FRAME 15
53         default_frame_info_t *frame, *key_frame, *key_frame2;
54         int idx, idx2;
55         unsigned int r, g, b, r2, g2, b2;
56         int r3, g3, b3;
57         double div;
58
59         frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
60         if (!frame) return NULL;
61
62         idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
63         idx2 = (idx + 1) % ani_info->num_key_frames;
64
65         key_frame = &ani_info->frames[idx];
66         key_frame2 = &ani_info->frames[idx2];
67         frame->num_led = key_frame->num_led;
68         frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
69         if (!frame->leds)
70         {
71                 free(frame);
72                 return NULL;
73         }
74         div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
75         r = g = b = r2 = g2 = b2 = 0x0;
76         for (int i = 0; i < key_frame->num_led; i++)
77         {
78                 _ani_backend_streaming_get_led_rgb(key_frame, i, &r, &g, &b);
79                 _ani_backend_streaming_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
80                 r3 = (int)(r2 - r) * div + r;
81                 g3 = (int)(g2 - g) * div + g;
82                 b3 = (int)(b2 - b) * div + b;
83
84                 frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
85         }
86         ani_info->frame_idx++;
87         if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
88         {
89                 if (ani_info->repeat >= 0)
90                         ani_info->repeat_cur++;
91                 ani_info->frame_idx = 0;
92         }
93
94         return frame;
95 }
96
97 static pui_bool
98 _ani_backend_streaming_frame_cb(void *data, int serial)
99 {
100         pui_int_error e = PUI_INT_ERROR_NONE;
101         pui_ani_t *ani = (pui_ani_t *)data;
102         pui_backend_ani_data *ani_data = NULL;
103         pui_ani_control_buffer *buffer = NULL;
104         default_frame_info_t *frame;
105         unsigned int r = 0x0, g = 0x0, b = 0x0;
106         double now;
107
108         ani_data = pui_backend_ani_get_ani_data(ani);
109         default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
110
111         now = ecore_time_unix_get();
112         pui_info("[time:%.3f] serial=%d\n", now, serial);
113
114         /* TODO : make use of ani_info */
115         //(void) ani_info;
116
117         buffer = pui_backend_ani_get_buffer(ani);
118         if (!buffer) {
119                 pui_err("Failed to get buffer for animation\n");
120                 return (pui_bool)0;
121         }
122
123         frame = _ani_backend_streaming_get_frame(ani_info);
124         for(int i = 0; i<12; i++)
125         {
126                 _ani_backend_streaming_get_led_rgb(frame, i, &r, &g, &b);
127                 buffer->ptr[4*i] = 0;
128                 buffer->ptr[4*i + 1] = b; /* BLUE */
129                 buffer->ptr[4*i + 2] = g; /* GREEN */
130                 buffer->ptr[4*i + 3] = r; /* RED */
131         }
132         _ani_backend_streaming_free_frame(frame);
133
134         e = pui_backend_ani_set_buffer(ani, buffer);
135
136         if (e != PUI_INT_ERROR_NONE)
137         {
138                 pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
139                 return (pui_bool)0;
140         }
141
142         e = pui_backend_ani_update(ani);
143
144         if (e != PUI_INT_ERROR_NONE)
145         {
146                 pui_err("Failed on updating animation !(e=%d)\n", e);
147                 return (pui_bool)0;
148         }
149
150         pui_info("... update (serial=%d), (repeat| cur: %d, want: %d)\n",
151                 serial, ani_info->repeat_cur, ani_info->repeat);
152
153         if (ani_info->repeat >= 0 &&
154                 ani_info->repeat_cur >= ani_info->repeat)
155         {
156                 ani_data->ani_func->ani_stop(ani, EINA_FALSE);
157         }
158
159         return (pui_bool)1;
160 }
161
162 pui_error
163 _ani_streaming_start(pui_ani_t *ani, int repeat)
164 {
165         pui_bool ret = 0;
166         pui_int_error e = PUI_INT_ERROR_NONE;
167         pui_backend_ani_data *ani_data = NULL;
168
169         ani_data = pui_backend_ani_get_ani_data(ani);
170         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
171
172         pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
173
174         pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
175         if (repeat == 0) info->repeat = 1;
176         else info->repeat = repeat;
177
178         ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_streaming_frame_cb, info->interval / 1000.0);
179         if (!ret)
180         {
181                 pui_err("Failed to add frame callback !\n");
182                 e = PUI_INT_ERROR_INVALID_RESOURCES;
183         }
184
185         return e;
186 }
187
188 pui_error
189 _ani_streaming_stop(pui_ani_t *ani, pui_bool force)
190 {
191         pui_int_error e = PUI_INT_ERROR_NONE;
192         pui_backend_ani_data *ani_data = NULL;
193
194         ani_data = pui_backend_ani_get_ani_data(ani);
195         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
196
197         //TODO
198         (void) info;
199
200         pui_info("... info->id: %s, force=%d\n", info->id, force);
201
202         pui_backend_ani_remove_frame_cb(ani);
203
204         if (force)
205                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_PAUSED);
206         else
207                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
208
209
210         return e;
211 }
212
213
214 void
215 pui_default_backend_ani_streaming_func_set(pui_backend_ani_func *func)
216 {
217         if (!func) return;
218
219         func->ani_start = _ani_streaming_start;
220         func->ani_stop = _ani_streaming_stop;
221 }
222
223