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