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