default_backend: do not allocate frame whenever each frames
[platform/core/uifw/libpui.git] / backends / system / default_ani_swupdatedone.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 default_frame_info_t *ani_frame = NULL;
29
30 static void
31 _ani_backend_swupdatedone_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
32 {
33         if (!frame) return;
34         if (!r || !g || !b) return;
35         if (led_idx > frame->num_led) return;
36
37         *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
38         *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
39         *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
40 }
41
42 static default_frame_info_t *
43 _ani_backend_swupdatedone_get_frame(default_ani_info *ani_info)
44 {
45         default_frame_info_t *key_frame, *key_frame2;
46         int idx, idx2;
47         unsigned int r, g, b, r2, g2, b2;
48         int r3, g3, b3;
49         double div;
50
51         if (ani_info->frame_idx == 0)
52         {
53                 ani_info->frame_max = (unsigned int)(ani_info->frames[ani_info->key_frame_cur].frame_duration / ani_info->interval);
54         }
55
56         idx = ani_info->key_frame_cur;
57         idx2 = (idx + 1) % ani_info->num_key_frames;
58
59         key_frame = &ani_info->frames[idx];
60         key_frame2 = &ani_info->frames[idx2];
61
62         div = (double)(ani_info->frame_idx) / (double)ani_info->frame_max;
63         r = g = b = r2 = g2 = b2 = 0x0;
64
65         for (int i = 0; i < key_frame->num_led; i++)
66         {
67                 _ani_backend_swupdatedone_get_led_rgb(key_frame, i, &r, &g, &b);
68                 _ani_backend_swupdatedone_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
69                 r3 = (int)(r2 - r) * div + r;
70                 g3 = (int)(g2 - g) * div + g;
71                 b3 = (int)(b2 - b) * div + b;
72
73                 ani_frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
74         }
75
76         ani_info->frame_idx++;
77         if (ani_info->frame_idx >= ani_info->frame_max)
78         {
79                 ani_info->frame_idx = 0;
80                 ani_info->key_frame_cur = (ani_info->key_frame_cur + 1) % ani_info->num_key_frames;
81                 if (ani_info->repeat >= 0 && ani_info->key_frame_cur == 0)
82                         ani_info->repeat_cur++;
83         }
84
85         return ani_frame;
86 }
87
88 static pui_bool
89 _ani_backend_swupdatedone_frame_cb(void *data, int serial)
90 {
91         pui_int_error e = PUI_INT_ERROR_NONE;
92         pui_ani_t *ani = (pui_ani_t *)data;
93         pui_backend_ani_data *ani_data = NULL;
94         pui_ani_control_buffer *buffer = NULL;
95         default_frame_info_t *frame;
96         unsigned int r = 0x0, g = 0x0, b = 0x0;
97
98         ani_data = pui_backend_ani_get_ani_data(ani);
99         default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
100
101         /* TODO : make use of ani_info */
102         //(void) ani_info;
103
104         buffer = pui_backend_ani_get_buffer(ani);
105         if (!buffer) {
106                 pui_err("Failed to get buffer for animation\n");
107                 return (pui_bool)0;
108         }
109
110         frame = _ani_backend_swupdatedone_get_frame(ani_info);
111         for(int i = 0; i<12; i++)
112         {
113                 _ani_backend_swupdatedone_get_led_rgb(frame, i, &r, &g, &b);
114                 buffer->ptr[4*i] = 0;
115                 buffer->ptr[4*i + 1] = b; /* BLUE */
116                 buffer->ptr[4*i + 2] = g; /* GREEN */
117                 buffer->ptr[4*i + 3] = r; /* RED */
118         }
119         backend_util_cleanup_frame(frame);
120
121         e = pui_backend_ani_set_buffer(ani, buffer);
122
123         if (e != PUI_INT_ERROR_NONE)
124         {
125                 pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
126                 return (pui_bool)0;
127         }
128
129         e = pui_backend_ani_update(ani);
130
131         if (e != PUI_INT_ERROR_NONE)
132         {
133                 pui_err("Failed on updating animation !(e=%d)\n", e);
134                 return (pui_bool)0;
135         }
136
137         pui_info("... update (serial=%d), (repeat| cur: %d, want: %d)\n",
138                 serial, ani_info->repeat_cur, ani_info->repeat);
139
140         if (ani_info->repeat >= 0 &&
141                 ani_info->repeat_cur >= ani_info->repeat)
142         {
143                 ani_data->ani_func->ani_stop(ani, EINA_FALSE);
144         }
145
146         return (pui_bool)1;
147 }
148
149 pui_error
150 _ani_swupdatedone_start(pui_ani_t *ani, int repeat)
151 {
152         pui_bool ret = 0;
153         pui_int_error e = PUI_INT_ERROR_NONE;
154         pui_backend_ani_data *ani_data = NULL;
155
156         ani_data = pui_backend_ani_get_ani_data(ani);
157         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
158
159         pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
160
161         pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
162         if (repeat == 0) info->repeat = 1;
163         else info->repeat = repeat;
164
165         info->key_frame_cur = 0;
166         info->frame_idx = 0;
167         info->repeat_cur = 0;
168
169         if (!ani_frame)
170                 ani_frame = backend_util_alloc_frame(info);
171         ERROR_CHECK(ani_frame, return PUI_INT_ERROR_INVALID_RESOURCES, "Failed to alloc memory for frame\n");
172
173         ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_swupdatedone_frame_cb, info->interval / 1000.0);
174         if (!ret)
175         {
176                 pui_err("Failed to add frame callback !\n");
177                 e = PUI_INT_ERROR_INVALID_RESOURCES;
178         }
179
180         return e;
181 }
182
183 pui_error
184 _ani_swupdatedone_stop(pui_ani_t *ani, pui_bool force)
185 {
186         pui_int_error e = PUI_INT_ERROR_NONE;
187         pui_backend_ani_data *ani_data = NULL;
188
189         ani_data = pui_backend_ani_get_ani_data(ani);
190         default_ani_info *info = (default_ani_info *)ani_data->ani_info;
191
192         //TODO
193         (void) info;
194
195         pui_info("... info->id: %s, force=%d\n", info->id, force);
196
197         pui_backend_ani_remove_frame_cb(ani);
198
199         if (force)
200                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_PAUSED);
201         else
202                 pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
203
204         if (ani_frame)
205         {
206                 backend_util_free_frame(ani_frame);
207                 ani_frame = NULL;
208         }
209
210         return e;
211 }
212
213
214 void
215 pui_default_backend_ani_swupdatedone_func_set(pui_backend_ani_func *func)
216 {
217         if (!func) return;
218
219         func->ani_start = _ani_swupdatedone_start;
220         func->ani_stop = _ani_swupdatedone_stop;
221 }
222
223