default_backend: implements frame_duration to proceed each frame at a different speed
[platform/core/uifw/libpui.git] / backends / notification / default_ani_normal.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_normal_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_normal_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_normal_get_frame(default_ani_info *ani_info)
51 {
52         default_frame_info_t *frame, *key_frame, *key_frame2;
53         int idx, idx2;
54         unsigned int r, g, b, r2, g2, b2;
55         int r3, g3, b3;
56         double div;
57
58         frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
59         if (!frame) return NULL;
60
61         if (ani_info->frame_idx == 0)
62         {
63                 ani_info->frame_max = (unsigned int)(ani_info->frames[ani_info->key_frame_cur].frame_duration / ani_info->interval);
64         }
65
66         idx = ani_info->key_frame_cur;
67         idx2 = (idx + 1) % ani_info->num_key_frames;
68
69         key_frame = &ani_info->frames[idx];
70         key_frame2 = &ani_info->frames[idx2];
71         frame->num_led = key_frame->num_led;
72         frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
73         if (!frame->leds)
74         {
75                 free(frame);
76                 return NULL;
77         }
78         div = (double)(ani_info->frame_idx) / (double)ani_info->frame_max;
79         r = g = b = r2 = g2 = b2 = 0x0;
80         for (int i = 0; i < key_frame->num_led; i++)
81         {
82                 _ani_backend_normal_get_led_rgb(key_frame, i, &r, &g, &b);
83                 _ani_backend_normal_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
84                 r3 = (int)(r2 - r) * div + r;
85                 g3 = (int)(g2 - g) * div + g;
86                 b3 = (int)(b2 - b) * div + b;
87
88                 frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
89         }
90         ani_info->frame_idx++;
91         if (ani_info->frame_idx >= ani_info->frame_max)
92         {
93                 ani_info->frame_idx = 0;
94                 ani_info->key_frame_cur = (ani_info->key_frame_cur + 1) % ani_info->num_key_frames;
95                 if (ani_info->repeat >= 0 && ani_info->key_frame_cur == 0)
96                         ani_info->repeat_cur++;
97         }
98
99         return frame;
100 }
101
102
103 static pui_bool
104 _ani_backend_normal_frame_cb(void *data, int serial)
105 {
106         pui_int_error e = PUI_INT_ERROR_NONE;
107         pui_ani_t *ani = (pui_ani_t *)data;
108         pui_backend_ani_data *ani_data = NULL;
109         pui_ani_control_buffer *buffer = NULL;
110         default_frame_info_t *frame;
111         unsigned int r = 0x0, g = 0x0, b = 0x0;
112         double now;
113
114         ani_data = pui_backend_ani_get_ani_data(ani);
115         default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
116
117         now = ecore_time_unix_get();
118         pui_info("[time:%.3f] serial=%d\n", now, serial);
119
120         /* TODO : make use of ani_info */
121         //(void) ani_info;
122
123         buffer = pui_backend_ani_get_buffer(ani);
124         if (!buffer) {
125                 pui_err("Failed to get buffer for animation\n");
126                 return (pui_bool)0;
127         }
128
129         frame = _ani_backend_normal_get_frame(ani_info);
130         for(int i = 0; i<12; i++)
131         {
132                 _ani_backend_normal_get_led_rgb(frame, i, &r, &g, &b);
133                 buffer->ptr[4*i] = 0;
134                 buffer->ptr[4*i + 1] = b; /* BLUE */
135                 buffer->ptr[4*i + 2] = g; /* GREEN */
136                 buffer->ptr[4*i + 3] = r; /* RED */
137         }
138         _ani_backend_normal_free_frame(frame);
139
140         e = pui_backend_ani_set_buffer(ani, buffer);
141
142         if (e != PUI_INT_ERROR_NONE)
143         {
144                 pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
145                 return (pui_bool)0;
146         }
147
148         e = pui_backend_ani_update(ani);
149
150         if (e != PUI_INT_ERROR_NONE)
151         {
152                 pui_err("Failed on updating animation !(e=%d)\n", e);
153                 return (pui_bool)0;
154         }
155
156         pui_info("... update (serial=%d), (repeat| cur: %d, want: %d)\n",
157                 serial, ani_info->repeat_cur, ani_info->repeat);
158
159         if (ani_info->repeat >= 0 &&
160                 ani_info->repeat_cur >= ani_info->repeat)
161         {
162                 ani_data->ani_func->ani_stop(ani, EINA_FALSE);
163         }
164
165         return (pui_bool)1;
166 }
167
168 pui_error
169 _ani_normal_start(pui_ani_t *ani, int repeat)
170 {
171         pui_bool ret = 0;
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         pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
179
180         pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
181         if (repeat == 0) info->repeat = 1;
182         else info->repeat = repeat;
183
184         info->key_frame_cur = 0;
185         info->frame_idx = 0;
186         info->repeat_cur = 0;
187
188         ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_normal_frame_cb, info->interval / 1000.0);
189         if (!ret)
190         {
191                 pui_err("Failed to add frame callback !\n");
192                 e = PUI_INT_ERROR_INVALID_RESOURCES;
193         }
194
195         return e;
196 }
197
198 pui_error
199 _ani_normal_stop(pui_ani_t *ani, pui_bool force)
200 {
201         pui_int_error e = PUI_INT_ERROR_NONE;
202         pui_backend_ani_data *ani_data = NULL;
203
204         ani_data = pui_backend_ani_get_ani_data(ani);
205         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
206
207         //TODO
208         (void) info;
209
210         pui_info("... info->id: %s, force=%d\n", info->id, force);
211
212         pui_backend_ani_remove_frame_cb(ani);
213
214         if (force)
215                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_PAUSED);
216         else
217                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
218
219
220         return e;
221 }
222
223
224 void
225 pui_default_backend_ani_normal_func_set(pui_backend_ani_func *func)
226 {
227         if (!func) return;
228
229         func->ani_start = _ani_normal_start;
230         func->ani_stop = _ani_normal_stop;
231 }
232
233