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