PUI & default-backend: add force argument to the control function of animation
[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 #define SMOOTH_FRAME 75
53 #define ALARM_REPEAT 3
54 #define ALARM_FRAME 10
55         default_frame_info_t *frame, *key_frame;
56         int idx;
57         unsigned int r, g, b, r2, g2, b2;
58         int r3, g3, b3;
59         double div;
60         int fade_out_frame;
61
62         frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
63         if (!frame) return NULL;
64
65         idx = ((int)(ani_info->frame_idx / ALARM_FRAME)) % ani_info->num_key_frames;
66         key_frame = &ani_info->frames[idx];
67
68         frame->num_led = key_frame->num_led;
69         frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
70         if (!frame->leds)
71         {
72                 free(frame);
73                 return NULL;
74         }
75
76         /* FIXME: calculate this data before animation start. this is not changed value */
77         fade_out_frame = (ALARM_FRAME) * ani_info->num_key_frames * (ALARM_REPEAT);
78
79         if (ani_info->frame_idx < fade_out_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                 key_frame = &ani_info->frames[0];
89                 r2 = g2 = b2 = 0x00;
90                 for (int i = 0; i < key_frame->num_led; i++)
91                 {
92                         div = (double)(ani_info->frame_idx - fade_out_frame) / (double)SMOOTH_FRAME;
93                         _ani_backend_alarm_get_led_rgb(key_frame, i, &r, &g, &b);
94                         r3 = (int)(r2 - r) * div + r;
95                         g3 = (int)(g2 - g) * div + g;
96                         b3 = (int)(b2 - b) * div + b;
97
98                         frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
99                 }
100         }
101
102         ani_info->frame_idx++;
103         if (ani_info->frame_idx >= (fade_out_frame + SMOOTH_FRAME))
104                 ani_info->frame_idx = 0;
105
106         return frame;
107 }
108
109 static pui_bool
110 _ani_backend_alarm_frame_cb(void *data, int serial)
111 {
112         pui_int_error e = PUI_INT_ERROR_NONE;
113         pui_ani_t *ani = (pui_ani_t *)data;
114         pui_backend_ani_data *ani_data = NULL;
115         pui_ani_control_buffer *buffer = NULL;
116         default_frame_info_t *frame;
117         unsigned int r = 0x0, g = 0x0, b = 0x0;
118         double now;
119
120         ani_data = pui_backend_ani_get_ani_data(ani);
121         default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
122
123         now = ecore_time_unix_get();
124         pui_info("[time:%.3f] serial=%d\n", now, serial);
125
126         /* TODO : make use of ani_info */
127         //(void) ani_info;
128
129         buffer = pui_backend_ani_get_buffer(ani);
130         if (!buffer) {
131                 pui_err("Failed to get buffer for animation\n");
132                 return (pui_bool)0;
133         }
134
135         frame = _ani_backend_alarm_get_frame(ani_info);
136         for(int i = 0; i<12; i++)
137         {
138                 _ani_backend_alarm_get_led_rgb(frame, i, &r, &g, &b);
139                 buffer->ptr[4*i] = 0;
140                 buffer->ptr[4*i + 1] = b; /* BLUE */
141                 buffer->ptr[4*i + 2] = g; /* GREEN */
142                 buffer->ptr[4*i + 3] = r; /* RED */
143         }
144         _ani_backend_alarm_free_frame(frame);
145
146         e = pui_backend_ani_set_buffer(ani, buffer);
147
148         if (e != PUI_INT_ERROR_NONE)
149         {
150                 pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
151                 return (pui_bool)0;
152         }
153
154         e = pui_backend_ani_update(ani);
155
156         if (e != PUI_INT_ERROR_NONE)
157         {
158                 pui_err("Failed on updating animation !(e=%d)\n", e);
159                 return (pui_bool)0;
160         }
161
162         pui_info("... update (serial=%d)\n", serial);
163
164         return (pui_bool)1;
165 }
166
167 pui_error
168 _ani_alarm_start(pui_ani_t *ani, int repeat)
169 {
170         pui_bool ret = 0;
171         pui_int_error e = PUI_INT_ERROR_NONE;
172         pui_backend_ani_data *ani_data = NULL;
173
174         ani_data = pui_backend_ani_get_ani_data(ani);
175         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
176
177         //TODO
178         (void) info;
179
180         pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
181
182         pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
183         ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_alarm_frame_cb, info->interval / 1000.0);
184
185         if (!ret)
186         {
187                 pui_err("Failed to add frame callback !\n");
188                 e = PUI_INT_ERROR_INVALID_RESOURCES;
189         }
190
191         return e;
192 }
193
194 pui_error
195 _ani_alarm_stop(pui_ani_t *ani, pui_bool force)
196 {
197         pui_int_error e = PUI_INT_ERROR_NONE;
198         pui_backend_ani_data *ani_data = NULL;
199
200         ani_data = pui_backend_ani_get_ani_data(ani);
201         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
202
203         //TODO
204         (void) info;
205
206         pui_info("... info->id: %s, force=%d\n", info->id, force);
207
208         pui_backend_ani_remove_frame_cb(ani);
209
210         if (force)
211                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_PAUSED);
212         else
213                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
214
215
216         return e;
217 }
218
219
220 void
221 pui_default_backend_ani_alarm_func_set(pui_backend_ani_func *func)
222 {
223         if (!func) return;
224
225         func->ani_start = _ani_alarm_start;
226         func->ani_stop = _ani_alarm_stop;
227 }
228
229