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