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