libpui_default_backend_la_SOURCES = \
default_backend.c \
- default_ani_listening.c \
- default_ani_speaking.c \
- default_ani_processing.c \
- default_ani_streaming.c \
- default_ani_timeout.c \
- default_ani_emergency.c \
- default_ani_system_processing.c \
- default_ani_normal.c \
- default_ani_easysetup.c \
- default_ani_swupdatedone.c \
- default_ani_micoff.c \
- default_ani_networkerror.c \
- default_ani_error.c \
- default_ani_alarm.c \
- default_ani_pairing.c \
- default_ani_connected.c
+ system/default_ani_easysetup.c \
+ system/default_ani_system_processing.c \
+ system/default_ani_swupdatedone.c \
+ system/default_ani_micoff.c \
+ voice/default_ani_listening.c \
+ voice/default_ani_streaming.c \
+ voice/default_ani_processing.c \
+ voice/default_ani_speaking.c \
+ voice/default_ani_timeout.c \
+ notification/default_ani_normal.c \
+ notification/default_ani_emergency.c \
+ notification/default_ani_networkerror.c \
+ notification/default_ani_error.c \
+ notification/default_ani_alarm.c \
+ bt/default_ani_pairing.c \
+ bt/default_ani_connected.c
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_connected_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_connected_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_connected_get_frame(default_ani_info *ani_info)
+{
+#define BLINK_FRAME 2
+ default_frame_info_t *frame, *key_frame;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ key_frame = &ani_info->frames[0];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+
+ if (ani_info->frame_idx % BLINK_FRAME == 0)
+ {
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ frame->leds[i].color = key_frame->leds[i].color;
+ }
+ }
+ else
+ {
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ frame->leds[i].color = 0x000000;
+ }
+ }
+
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= BLINK_FRAME)
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+
+static pui_bool
+_ani_backend_connected_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_connected_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_connected_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_connected_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_connected_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_connected_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_connected_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_connected_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_connected_start;
+ func->ani_stop = _ani_connected_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_pairing_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_pairing_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_pairing_get_frame(default_ani_info *ani_info)
+{
+ default_frame_info_t *frame, *key_frame;
+ int idx;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ idx = ani_info->frame_idx;
+
+ key_frame = &ani_info->frames[idx];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ frame->leds[i].color = key_frame->leds[i].color;
+ }
+
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= ani_info->num_key_frames)
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+
+static pui_bool
+_ani_backend_pairing_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_pairing_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_pairing_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_pairing_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_pairing_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_pairing_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_pairing_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_pairing_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_pairing_start;
+ func->ani_stop = _ani_pairing_stop;
+}
+
+
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_alarm_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_alarm_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_alarm_get_frame(default_ani_info *ani_info)
-{
-#define SMOOTH_FRAME 75
-#define ALARM_REPEAT 3
-#define ALARM_FRAME 10
- default_frame_info_t *frame, *key_frame;
- int idx;
- unsigned int r, g, b, r2, g2, b2;
- int r3, g3, b3;
- double div;
- int fade_out_frame;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- idx = ((int)(ani_info->frame_idx / ALARM_FRAME)) % ani_info->num_key_frames;
- key_frame = &ani_info->frames[idx];
-
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
-
- /* FIXME: calculate this data before animation start. this is not changed value */
- fade_out_frame = (ALARM_FRAME) * ani_info->num_key_frames * (ALARM_REPEAT);
-
- if (ani_info->frame_idx < fade_out_frame)
- {
- for (int i = 0; i < key_frame->num_led; i++)
- {
- frame->leds[i].color = key_frame->leds[i].color;
- }
- }
- else
- {
- key_frame = &ani_info->frames[0];
- r2 = g2 = b2 = 0x00;
- for (int i = 0; i < key_frame->num_led; i++)
- {
- div = (double)(ani_info->frame_idx - fade_out_frame) / (double)SMOOTH_FRAME;
- _ani_backend_alarm_get_led_rgb(key_frame, i, &r, &g, &b);
- r3 = (int)(r2 - r) * div + r;
- g3 = (int)(g2 - g) * div + g;
- b3 = (int)(b2 - b) * div + b;
-
- frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
- }
- }
-
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= (fade_out_frame + SMOOTH_FRAME))
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-static pui_bool
-_ani_backend_alarm_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_alarm_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_alarm_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_alarm_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_alarm_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_alarm_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_alarm_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_alarm_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_alarm_start;
- func->ani_stop = _ani_alarm_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_connected_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_connected_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_connected_get_frame(default_ani_info *ani_info)
-{
-#define BLINK_FRAME 2
- default_frame_info_t *frame, *key_frame;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- key_frame = &ani_info->frames[0];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
-
- if (ani_info->frame_idx % BLINK_FRAME == 0)
- {
- for (int i = 0; i < key_frame->num_led; i++)
- {
- frame->leds[i].color = key_frame->leds[i].color;
- }
- }
- else
- {
- for (int i = 0; i < key_frame->num_led; i++)
- {
- frame->leds[i].color = 0x000000;
- }
- }
-
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= BLINK_FRAME)
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-
-static pui_bool
-_ani_backend_connected_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_connected_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_connected_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_connected_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_connected_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_connected_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_connected_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_connected_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_connected_start;
- func->ani_stop = _ani_connected_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_easysetup_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_easysetup_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_easysetup_get_frame(default_ani_info *ani_info)
-{
-#define SMOOTH_FRAME 20
- default_frame_info_t *frame, *key_frame, *key_frame2;
- int idx, idx2;
- unsigned int r, g, b, r2, g2, b2;
- int r3, g3, b3;
- double div;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
- idx2 = (idx + 1) % ani_info->num_key_frames;
-
- key_frame = &ani_info->frames[idx];
- key_frame2 = &ani_info->frames[idx2];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
- div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
- r = g = b = r2 = g2 = b2 = 0x0;
- for (int i = 0; i < key_frame->num_led; i++)
- {
- _ani_backend_easysetup_get_led_rgb(key_frame, i, &r, &g, &b);
- _ani_backend_easysetup_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
- r3 = (int)(r2 - r) * div + r;
- g3 = (int)(g2 - g) * div + g;
- b3 = (int)(b2 - b) * div + b;
-
- frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
- }
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-static pui_bool
-_ani_backend_easysetup_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_easysetup_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_easysetup_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_easysetup_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_easysetup_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_easysetup_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_easysetup_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_easysetup_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_easysetup_start;
- func->ani_stop = _ani_easysetup_stop;
-}
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_emergency_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_emergency_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_emergency_get_frame(default_ani_info *ani_info)
-{
-#define SMOOTH_FRAME 15
- default_frame_info_t *frame, *key_frame, *key_frame2;
- int idx, idx2;
- unsigned int r, g, b, r2, g2, b2;
- int r3, g3, b3;
- double div;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
- idx2 = (idx + 1) % ani_info->num_key_frames;
-
- key_frame = &ani_info->frames[idx];
- key_frame2 = &ani_info->frames[idx2];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
- div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
- r = g = b = r2 = g2 = b2 = 0x0;
- for (int i = 0; i < key_frame->num_led; i++)
- {
- _ani_backend_emergency_get_led_rgb(key_frame, i, &r, &g, &b);
- _ani_backend_emergency_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
- r3 = (int)(r2 - r) * div + r;
- g3 = (int)(g2 - g) * div + g;
- b3 = (int)(b2 - b) * div + b;
-
- frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
- }
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-
-static pui_bool
-_ani_backend_emergency_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_emergency_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_emergency_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_emergency_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_emergency_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_emergency_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_emergency_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_emergency_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_emergency_start;
- func->ani_stop = _ani_emergency_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_error_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_error_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_error_get_frame(default_ani_info *ani_info)
-{
-#define BLINK_FRAME 2
- default_frame_info_t *frame, *key_frame;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- key_frame = &ani_info->frames[0];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
-
- if (ani_info->frame_idx % BLINK_FRAME == 0)
- {
- for (int i = 0; i < key_frame->num_led; i++)
- {
- frame->leds[i].color = key_frame->leds[i].color;
- }
- }
- else
- {
- for (int i = 0; i < key_frame->num_led; i++)
- {
- frame->leds[i].color = 0x000000;
- }
- }
-
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= BLINK_FRAME)
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-
-static pui_bool
-_ani_backend_error_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_error_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_error_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_error_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_error_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_error_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_error_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_error_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_error_start;
- func->ani_stop = _ani_error_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_listening_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_listening_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_listening_get_frame(default_ani_info *ani_info)
-{
- default_frame_info_t *frame, *key_frame;
- int division;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- key_frame = &ani_info->frames[0];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
- division = (int)(frame->num_led / 2);
- for (int i = 0; i < key_frame->num_led; i++)
- {
- int idx;
- //int idx = (i - ani_info->frame_idx + key_frame->num_led) % key_frame->num_led;
- if ((ani_info->frame_idx / division) <= 0)
- {
- if (i < division)
- {
- idx = i - ani_info->frame_idx;
- if (idx < 0) continue;
- }
- else
- {
- idx = i + ani_info->frame_idx;
- if (idx >= key_frame->num_led) continue;
- }
- }
- else
- {
- if (i < division)
- {
- idx = i - division + 1 + ani_info->frame_idx - division;
- if (idx < 0) continue;
- }
- else
- {
- idx = i + division - 1 - ani_info->frame_idx + division;
- if (idx >= key_frame->num_led) continue;
- }
- }
- frame->leds[idx] = key_frame->leds[i];
- }
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= key_frame->num_led)
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-static pui_bool
-_ani_backend_listening_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_listening_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_listening_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_listening_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_listening_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_listening_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_listening_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_listening_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_listening_start;
- func->ani_stop = _ani_listening_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_micoff_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_micoff_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_micoff_get_frame(default_ani_info *ani_info)
-{
-#define SMOOTH_FRAME 15
- default_frame_info_t *frame, *key_frame;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- key_frame = &ani_info->frames[0];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
-
- for (int i = 0; i < key_frame->num_led; i++)
- {
- frame->leds[i].color = key_frame->leds[i].color;
- }
-
- return frame;
-}
-
-
-static pui_bool
-_ani_backend_micoff_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_micoff_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_micoff_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_micoff_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_micoff_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_micoff_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_micoff_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_micoff_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_micoff_start;
- func->ani_stop = _ani_micoff_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_networkerror_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_networkerror_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_networkerror_get_frame(default_ani_info *ani_info)
-{
-#define BLINK_FRAME 40
- default_frame_info_t *frame, *key_frame;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- key_frame = &ani_info->frames[0];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
-
- if (ani_info->frame_idx % BLINK_FRAME == 0)
- {
- for (int i = 0; i < key_frame->num_led; i++)
- {
- frame->leds[i].color = key_frame->leds[i].color;
- }
- }
- else
- {
- for (int i = 0; i < key_frame->num_led; i++)
- {
- frame->leds[i].color = 0x000000;
- }
- }
-
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= BLINK_FRAME)
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-
-static pui_bool
-_ani_backend_networkerror_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_networkerror_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_networkerror_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_networkerror_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_networkerror_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_networkerror_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_networkerror_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_networkerror_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_networkerror_start;
- func->ani_stop = _ani_networkerror_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_normal_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_normal_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_normal_get_frame(default_ani_info *ani_info)
-{
-#define SMOOTH_FRAME 15
- default_frame_info_t *frame, *key_frame, *key_frame2;
- int idx, idx2;
- unsigned int r, g, b, r2, g2, b2;
- int r3, g3, b3;
- double div;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
- idx2 = (idx + 1) % ani_info->num_key_frames;
-
- key_frame = &ani_info->frames[idx];
- key_frame2 = &ani_info->frames[idx2];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
- div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
- r = g = b = r2 = g2 = b2 = 0x0;
- for (int i = 0; i < key_frame->num_led; i++)
- {
- _ani_backend_normal_get_led_rgb(key_frame, i, &r, &g, &b);
- _ani_backend_normal_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
- r3 = (int)(r2 - r) * div + r;
- g3 = (int)(g2 - g) * div + g;
- b3 = (int)(b2 - b) * div + b;
-
- frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
- }
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-
-static pui_bool
-_ani_backend_normal_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_normal_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_normal_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_normal_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_normal_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_normal_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_normal_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_normal_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_normal_start;
- func->ani_stop = _ani_normal_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_pairing_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_pairing_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_pairing_get_frame(default_ani_info *ani_info)
-{
- default_frame_info_t *frame, *key_frame;
- int idx;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- idx = ani_info->frame_idx;
-
- key_frame = &ani_info->frames[idx];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
-
- for (int i = 0; i < key_frame->num_led; i++)
- {
- frame->leds[i].color = key_frame->leds[i].color;
- }
-
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= ani_info->num_key_frames)
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-
-static pui_bool
-_ani_backend_pairing_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_pairing_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_pairing_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_pairing_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_pairing_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_pairing_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_pairing_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_pairing_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_pairing_start;
- func->ani_stop = _ani_pairing_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_processing_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_processing_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_processing_get_frame(default_ani_info *ani_info)
-{
- default_frame_info_t *frame, *key_frame;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- key_frame = &ani_info->frames[0];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
- for (int i = 0; i < key_frame->num_led; i++)
- {
- int idx = (i - ani_info->frame_idx + key_frame->num_led) % key_frame->num_led;
- frame->leds[idx] = key_frame->leds[i];
- }
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= key_frame->num_led)
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-static pui_bool
-_ani_backend_processing_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_processing_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_processing_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_processing_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_processing_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
- if (info->num_key_frames != 1)
- {
- pui_err("invalid key frames: %d\n", info->num_key_frames);
- return PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_processing_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_processing_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_processing_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_processing_start;
- func->ani_stop = _ani_processing_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_speaking_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_speaking_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_speaking_get_frame(default_ani_info *ani_info)
-{
-#define SMOOTH_FRAME 20
- default_frame_info_t *frame, *key_frame, *key_frame2;
- int idx, idx2;
- unsigned int r, g, b, r2, g2, b2;
- int r3, g3, b3;
- double div;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
- idx2 = (idx + 1) % ani_info->num_key_frames;
-
- key_frame = &ani_info->frames[idx];
- key_frame2 = &ani_info->frames[idx2];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
- div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
- r = g = b = r2 = g2 = b2 = 0x0;
- for (int i = 0; i < key_frame->num_led; i++)
- {
- _ani_backend_speaking_get_led_rgb(key_frame, i, &r, &g, &b);
- _ani_backend_speaking_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
- r3 = (int)(r2 - r) * div + r;
- g3 = (int)(g2 - g) * div + g;
- b3 = (int)(b2 - b) * div + b;
-
- frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
- }
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-static pui_bool
-_ani_backend_speaking_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_speaking_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_speaking_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_speaking_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_speaking_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_speaking_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_speaking_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_speaking_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_speaking_start;
- func->ani_stop = _ani_speaking_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_streaming_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_streaming_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_streaming_get_frame(default_ani_info *ani_info)
-{
-#define SMOOTH_FRAME 15
- default_frame_info_t *frame, *key_frame, *key_frame2;
- int idx, idx2;
- unsigned int r, g, b, r2, g2, b2;
- int r3, g3, b3;
- double div;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
- idx2 = (idx + 1) % ani_info->num_key_frames;
-
- key_frame = &ani_info->frames[idx];
- key_frame2 = &ani_info->frames[idx2];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
- div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
- r = g = b = r2 = g2 = b2 = 0x0;
- for (int i = 0; i < key_frame->num_led; i++)
- {
- _ani_backend_streaming_get_led_rgb(key_frame, i, &r, &g, &b);
- _ani_backend_streaming_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
- r3 = (int)(r2 - r) * div + r;
- g3 = (int)(g2 - g) * div + g;
- b3 = (int)(b2 - b) * div + b;
-
- frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
- }
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-static pui_bool
-_ani_backend_streaming_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_streaming_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_streaming_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_streaming_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_streaming_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_streaming_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_streaming_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_streaming_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_streaming_start;
- func->ani_stop = _ani_streaming_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_swupdatedone_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_swupdatedone_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_swupdatedone_get_frame(default_ani_info *ani_info)
-{
-#define SMOOTH_FRAME 20
- default_frame_info_t *frame, *key_frame, *key_frame2;
- int idx, idx2;
- unsigned int r, g, b, r2, g2, b2;
- int r3, g3, b3;
- double div;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
- idx2 = (idx + 1) % ani_info->num_key_frames;
-
- key_frame = &ani_info->frames[idx];
- key_frame2 = &ani_info->frames[idx2];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
- div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
- r = g = b = r2 = g2 = b2 = 0x0;
- for (int i = 0; i < key_frame->num_led; i++)
- {
- _ani_backend_swupdatedone_get_led_rgb(key_frame, i, &r, &g, &b);
- _ani_backend_swupdatedone_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
- r3 = (int)(r2 - r) * div + r;
- g3 = (int)(g2 - g) * div + g;
- b3 = (int)(b2 - b) * div + b;
-
- frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
- }
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-static pui_bool
-_ani_backend_swupdatedone_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_swupdatedone_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_swupdatedone_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_swupdatedone_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_swupdatedone_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_swupdatedone_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_swupdatedone_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_swupdatedone_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_swupdatedone_start;
- func->ani_stop = _ani_swupdatedone_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_system_processing_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_system_processing_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_system_processing_get_frame(default_ani_info *ani_info)
-{
- default_frame_info_t *frame, *key_frame;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- key_frame = &ani_info->frames[0];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
- for (int i = 0; i < key_frame->num_led; i++)
- {
- int idx = (i - ani_info->frame_idx + key_frame->num_led) % key_frame->num_led;
- frame->leds[idx] = key_frame->leds[i];
- }
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= key_frame->num_led)
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-static pui_bool
-_ani_backend_system_processing_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_system_processing_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_system_processing_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_system_processing_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_system_processing_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
- if (info->num_key_frames != 1)
- {
- pui_err("invalid key frames: %d\n", info->num_key_frames);
- return PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_system_processing_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_system_processing_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_system_processing_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_system_processing_start;
- func->ani_stop = _ani_system_processing_stop;
-}
-
-
+++ /dev/null
-/*
- * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice (including the
- * next paragraph) shall be included in all copies or substantial
- * portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
- * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
- * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
- * SOFTWARE.
- */
-
-#include "default_backend.h"
-
-static void
-_ani_backend_timeout_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
-{
- if (!frame) return;
- if (!r || !g || !b) return;
- if (led_idx > frame->num_led) return;
-
- *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
- *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
- *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
-}
-
-static void
-_ani_backend_timeout_free_frame(default_frame_info_t *frame)
-{
- if (!frame) return;
-
- if (frame->leds) free(frame->leds);
- free(frame);
-}
-
-static default_frame_info_t *
-_ani_backend_timeout_get_frame(default_ani_info *ani_info)
-{
-#define SMOOTH_FRAME 15
- default_frame_info_t *frame, *key_frame, *key_frame2;
- int idx, idx2;
- unsigned int r, g, b, r2, g2, b2;
- int r3, g3, b3;
- double div;
-
- frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
- if (!frame) return NULL;
-
- idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
- idx2 = (idx + 1) % ani_info->num_key_frames;
-
- key_frame = &ani_info->frames[idx];
- key_frame2 = &ani_info->frames[idx2];
- frame->num_led = key_frame->num_led;
- frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
- if (!frame->leds)
- {
- free(frame);
- return NULL;
- }
- div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
- r = g = b = r2 = g2 = b2 = 0x0;
- for (int i = 0; i < key_frame->num_led; i++)
- {
- _ani_backend_timeout_get_led_rgb(key_frame, i, &r, &g, &b);
- _ani_backend_timeout_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
- r3 = (int)(r2 - r) * div + r;
- g3 = (int)(g2 - g) * div + g;
- b3 = (int)(b2 - b) * div + b;
-
- frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
- }
- ani_info->frame_idx++;
- if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
- ani_info->frame_idx = 0;
-
- return frame;
-}
-
-static pui_bool
-_ani_backend_timeout_frame_cb(void *data, int serial)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_ani_t *ani = (pui_ani_t *)data;
- pui_backend_ani_data *ani_data = NULL;
- pui_ani_control_buffer *buffer = NULL;
- default_frame_info_t *frame;
- unsigned int r = 0x0, g = 0x0, b = 0x0;
- double now;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
-
- now = ecore_time_unix_get();
- pui_info("[time:%.3f] serial=%d\n", now, serial);
-
- /* TODO : make use of ani_info */
- //(void) ani_info;
-
- buffer = pui_backend_ani_get_buffer(ani);
- if (!buffer) {
- pui_err("Failed to get buffer for animation\n");
- return (pui_bool)0;
- }
-
- frame = _ani_backend_timeout_get_frame(ani_info);
- for(int i = 0; i<12; i++)
- {
- _ani_backend_timeout_get_led_rgb(frame, i, &r, &g, &b);
- buffer->ptr[4*i] = 0;
- buffer->ptr[4*i + 1] = b; /* BLUE */
- buffer->ptr[4*i + 2] = g; /* GREEN */
- buffer->ptr[4*i + 3] = r; /* RED */
- }
- _ani_backend_timeout_free_frame(frame);
-
- e = pui_backend_ani_set_buffer(ani, buffer);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- e = pui_backend_ani_update(ani);
-
- if (e != PUI_INT_ERROR_NONE)
- {
- pui_err("Failed on updating animation !(e=%d)\n", e);
- return (pui_bool)0;
- }
-
- pui_info("... update (serial=%d)\n", serial);
-
- return (pui_bool)1;
-}
-
-pui_error
-_ani_timeout_start(pui_ani_t *ani, int repeat)
-{
- pui_bool ret = 0;
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
-
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
- ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_timeout_frame_cb, info->interval / 1000.0);
-
- if (!ret)
- {
- pui_err("Failed to add frame callback !\n");
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- }
-
- return e;
-}
-
-pui_error
-_ani_timeout_stop(pui_ani_t *ani)
-{
- pui_int_error e = PUI_INT_ERROR_NONE;
- pui_backend_ani_data *ani_data = NULL;
-
- ani_data = pui_backend_ani_get_ani_data(ani);
- default_ani_info *info = (default_ani_info *)ani_data->ani_info;
-
- //TODO
- (void) info;
-
- pui_info("... info->id: %s\n", info->id);
-
- pui_backend_ani_remove_frame_cb(ani);
- pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
-
- return e;
-}
-
-
-void
-pui_default_backend_ani_timeout_func_set(pui_backend_ani_func *func)
-{
- if (!func) return;
-
- func->ani_start = _ani_timeout_start;
- func->ani_stop = _ani_timeout_stop;
-}
-
-
return NULL;
}
-static int
-_scandir_filter(const struct dirent *dirent)
+int
+_find_directory(const char *path, Eina_List **json_list)
{
- if (!strncmp(dirent->d_name, ".", sizeof(".")) ||
- !strncmp(dirent->d_name, "..", sizeof("..")))
- return 0;
- if (!strstr(dirent->d_name, ".json"))
- return 0;
+ DIR *dir;
+ struct dirent *cur;
+ int count = 0, ret_cnt = 0;
+
+ dir = opendir(path);
+ if (!dir)
+ {
+ pui_err("Failed to open %s.\n", path);
+ return count;
+ }
+
+ while ((cur = readdir(dir)) != NULL)
+ {
+ char next_path[MAX_STR] = {0, };
+ if (cur->d_type == DT_DIR)
+ {
+ if (!strncmp(cur->d_name, ".", sizeof(".")) ||
+ !strncmp(cur->d_name, "..", sizeof("..")))
+ continue;
+
+ snprintf(next_path, MAX_STR, "%s/%s", path, cur->d_name);
+ ret_cnt = _find_directory(next_path, json_list);
+ count += ret_cnt;
+ }
+ else
+ {
+ if (strstr(cur->d_name, ".json"))
+ {
+ snprintf(next_path, MAX_STR, "%s/%s", path, cur->d_name);
+ *json_list = eina_list_append(*json_list, eina_stringshare_add(next_path));
+ count++;
+ }
+ }
+ }
+ closedir(dir);
- return 1;
+ return count;
}
{
pui_int_error e = PUI_INT_ERROR_NONE;
default_ani_info *ani_info;
- struct dirent **files;
- int count, i;
- char file_path[MAX_STR] = {0, };
+ Eina_List *json_list = NULL;
+ Eina_List *l, *l_next;
+ Eina_Stringshare *path;
// load and store all of animation data
- if ((count = scandir(ANI_COLLECTION_DIR, &files, _scandir_filter, alphasort)) == -1) {
- printf("Failed to get %s directory (%s)\n", ANI_COLLECTION_DIR, strerror(errno));
- e = PUI_INT_ERROR_INVALID_RESOURCES;
- return e;
- }
-
- for (i = 0; i < count; i++) {
- snprintf(file_path, sizeof(file_path), "%s%s", ANI_COLLECTION_DIR, files[i]->d_name);
+ _find_directory(ANI_COLLECTION_DIR, &json_list);
- ani_info = _read_json(file_path);
+ EINA_LIST_FOREACH_SAFE(json_list, l, l_next, path)
+ {
+ ani_info = _read_json(path);
if (ani_info) {
eina_hash_add(_animations_hash, ani_info->id, ani_info);
- printf("Success to load %s animation\n", files[i]->d_name);
+ pui_info("Success to load %s animation (id: %s)\n", path, ani_info->id);
}
+ eina_stringshare_del(path);
+ json_list = eina_list_remove_list(json_list, l);
}
- for (i = 0; i < count; i++) {
- free(files[i]);
- }
- free(files);
-
//TODO
return e;
}
/* Assign each function pointer that corresponds to the given id if needed. */
- if (!strncmp(ani_info->id, "processing", sizeof("processing")))
+ if (!strncmp(ani_info->id, "system/easy_setup", sizeof("system/easy_setup")))
{
- pui_default_backend_ani_processing_func_set(ani_func);
+ pui_default_backend_ani_easysetup_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "listening", sizeof("listening")))
+ else if (!strncmp(ani_info->id, "system/processing", sizeof("system/processing")))
{
- pui_default_backend_ani_listening_func_set(ani_func);
+ pui_default_backend_ani_system_processing_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "speaking", sizeof("speaking")))
+ else if (!strncmp(ani_info->id, "system/sw_update_done", sizeof("system/sw_update_done")))
{
- pui_default_backend_ani_speaking_func_set(ani_func);
+ pui_default_backend_ani_swupdatedone_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "streaming", sizeof("streaming")))
+ else if (!strncmp(ani_info->id, "system/mic_off", sizeof("system/mic_off")))
{
- pui_default_backend_ani_streaming_func_set(ani_func);
+ pui_default_backend_ani_micoff_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "time_out", sizeof("time_out")))
+ else if (!strncmp(ani_info->id, "voice/listening", sizeof("voice/listening")))
{
- pui_default_backend_ani_timeout_func_set(ani_func);
+ pui_default_backend_ani_listening_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "system_processing", sizeof("system_processing")))
+ else if (!strncmp(ani_info->id, "voice/streaming", sizeof("voice/streaming")))
{
- pui_default_backend_ani_system_processing_func_set(ani_func);
+ pui_default_backend_ani_streaming_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "normal", sizeof("normal")))
+ else if (!strncmp(ani_info->id, "voice/processing", sizeof("voice/processing")))
{
- pui_default_backend_ani_normal_func_set(ani_func);
+ pui_default_backend_ani_processing_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "emergency", sizeof("emergency")))
+ else if (!strncmp(ani_info->id, "voice/speaking", sizeof("voice/speaking")))
{
- pui_default_backend_ani_emergency_func_set(ani_func);
+ pui_default_backend_ani_speaking_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "easy_setup", sizeof("easy_setup")))
+ else if (!strncmp(ani_info->id, "voice/timeout", sizeof("voice/timeout")))
{
- pui_default_backend_ani_easysetup_func_set(ani_func);
+ pui_default_backend_ani_timeout_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "sw_update_done", sizeof("sw_update_done")))
+ else if (!strncmp(ani_info->id, "notification/normal", sizeof("notification/normal")))
{
- pui_default_backend_ani_swupdatedone_func_set(ani_func);
+ pui_default_backend_ani_normal_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "mic_off", sizeof("mic_off")))
+ else if (!strncmp(ani_info->id, "notification/emergency", sizeof("notification/emergency")))
{
- pui_default_backend_ani_micoff_func_set(ani_func);
+ pui_default_backend_ani_emergency_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "network_error", sizeof("network_error")))
+ else if (!strncmp(ani_info->id, "notification/network_error", sizeof("notification/network_error")))
{
pui_default_backend_ani_networkerror_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "error", sizeof("error")))
+ else if (!strncmp(ani_info->id, "notification/error", sizeof("notification/error")))
{
pui_default_backend_ani_error_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "alarm", sizeof("alarm")))
+ else if (!strncmp(ani_info->id, "notification/alarm", sizeof("notification/alarm")))
{
pui_default_backend_ani_alarm_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "connected", sizeof("connected")))
+ else if (!strncmp(ani_info->id, "bt/pairing", sizeof("bt/pairing")))
{
- pui_default_backend_ani_connected_func_set(ani_func);
+ pui_default_backend_ani_pairing_func_set(ani_func);
}
- else if (!strncmp(ani_info->id, "pairing", sizeof("pairing")))
+ else if (!strncmp(ani_info->id, "bt/connected", sizeof("bt/connected")))
{
- pui_default_backend_ani_pairing_func_set(ani_func);
+ pui_default_backend_ani_connected_func_set(ani_func);
}
else
{
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_alarm_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_alarm_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_alarm_get_frame(default_ani_info *ani_info)
+{
+#define SMOOTH_FRAME 75
+#define ALARM_REPEAT 3
+#define ALARM_FRAME 10
+ default_frame_info_t *frame, *key_frame;
+ int idx;
+ unsigned int r, g, b, r2, g2, b2;
+ int r3, g3, b3;
+ double div;
+ int fade_out_frame;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ idx = ((int)(ani_info->frame_idx / ALARM_FRAME)) % ani_info->num_key_frames;
+ key_frame = &ani_info->frames[idx];
+
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+
+ /* FIXME: calculate this data before animation start. this is not changed value */
+ fade_out_frame = (ALARM_FRAME) * ani_info->num_key_frames * (ALARM_REPEAT);
+
+ if (ani_info->frame_idx < fade_out_frame)
+ {
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ frame->leds[i].color = key_frame->leds[i].color;
+ }
+ }
+ else
+ {
+ key_frame = &ani_info->frames[0];
+ r2 = g2 = b2 = 0x00;
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ div = (double)(ani_info->frame_idx - fade_out_frame) / (double)SMOOTH_FRAME;
+ _ani_backend_alarm_get_led_rgb(key_frame, i, &r, &g, &b);
+ r3 = (int)(r2 - r) * div + r;
+ g3 = (int)(g2 - g) * div + g;
+ b3 = (int)(b2 - b) * div + b;
+
+ frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
+ }
+ }
+
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= (fade_out_frame + SMOOTH_FRAME))
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+static pui_bool
+_ani_backend_alarm_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_alarm_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_alarm_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_alarm_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_alarm_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_alarm_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_alarm_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_alarm_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_alarm_start;
+ func->ani_stop = _ani_alarm_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_emergency_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_emergency_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_emergency_get_frame(default_ani_info *ani_info)
+{
+#define SMOOTH_FRAME 15
+ default_frame_info_t *frame, *key_frame, *key_frame2;
+ int idx, idx2;
+ unsigned int r, g, b, r2, g2, b2;
+ int r3, g3, b3;
+ double div;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
+ idx2 = (idx + 1) % ani_info->num_key_frames;
+
+ key_frame = &ani_info->frames[idx];
+ key_frame2 = &ani_info->frames[idx2];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+ div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
+ r = g = b = r2 = g2 = b2 = 0x0;
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ _ani_backend_emergency_get_led_rgb(key_frame, i, &r, &g, &b);
+ _ani_backend_emergency_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
+ r3 = (int)(r2 - r) * div + r;
+ g3 = (int)(g2 - g) * div + g;
+ b3 = (int)(b2 - b) * div + b;
+
+ frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
+ }
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+
+static pui_bool
+_ani_backend_emergency_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_emergency_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_emergency_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_emergency_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_emergency_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_emergency_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_emergency_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_emergency_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_emergency_start;
+ func->ani_stop = _ani_emergency_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_error_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_error_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_error_get_frame(default_ani_info *ani_info)
+{
+#define BLINK_FRAME 2
+ default_frame_info_t *frame, *key_frame;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ key_frame = &ani_info->frames[0];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+
+ if (ani_info->frame_idx % BLINK_FRAME == 0)
+ {
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ frame->leds[i].color = key_frame->leds[i].color;
+ }
+ }
+ else
+ {
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ frame->leds[i].color = 0x000000;
+ }
+ }
+
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= BLINK_FRAME)
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+
+static pui_bool
+_ani_backend_error_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_error_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_error_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_error_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_error_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_error_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_error_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_error_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_error_start;
+ func->ani_stop = _ani_error_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_networkerror_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_networkerror_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_networkerror_get_frame(default_ani_info *ani_info)
+{
+#define BLINK_FRAME 40
+ default_frame_info_t *frame, *key_frame;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ key_frame = &ani_info->frames[0];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+
+ if (ani_info->frame_idx % BLINK_FRAME == 0)
+ {
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ frame->leds[i].color = key_frame->leds[i].color;
+ }
+ }
+ else
+ {
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ frame->leds[i].color = 0x000000;
+ }
+ }
+
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= BLINK_FRAME)
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+
+static pui_bool
+_ani_backend_networkerror_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_networkerror_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_networkerror_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_networkerror_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_networkerror_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_networkerror_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_networkerror_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_networkerror_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_networkerror_start;
+ func->ani_stop = _ani_networkerror_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_normal_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_normal_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_normal_get_frame(default_ani_info *ani_info)
+{
+#define SMOOTH_FRAME 15
+ default_frame_info_t *frame, *key_frame, *key_frame2;
+ int idx, idx2;
+ unsigned int r, g, b, r2, g2, b2;
+ int r3, g3, b3;
+ double div;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
+ idx2 = (idx + 1) % ani_info->num_key_frames;
+
+ key_frame = &ani_info->frames[idx];
+ key_frame2 = &ani_info->frames[idx2];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+ div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
+ r = g = b = r2 = g2 = b2 = 0x0;
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ _ani_backend_normal_get_led_rgb(key_frame, i, &r, &g, &b);
+ _ani_backend_normal_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
+ r3 = (int)(r2 - r) * div + r;
+ g3 = (int)(g2 - g) * div + g;
+ b3 = (int)(b2 - b) * div + b;
+
+ frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
+ }
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+
+static pui_bool
+_ani_backend_normal_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_normal_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_normal_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_normal_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_normal_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_normal_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_normal_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_normal_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_normal_start;
+ func->ani_stop = _ani_normal_stop;
+}
+
+
+++ /dev/null
-{
- "type": "alarm",
- "interval": 40,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "FFFFFF"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "FFFFFF"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "FFFFFF"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "FFFFFF"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- },
- {
- "frame_id": 2,
- "led": [
- {"id": 1, "color": "000000"},
- {"id": 2, "color": "FFFFFF"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "FFFFFF"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "FFFFFF"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "FFFFFF"},
- {"id": 12, "color": "000000"}
- ]
- },
- {
- "frame_id": 3,
- "led": [
- {"id": 1, "color": "000000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- },
- {
- "frame_id": 4,
- "led": [
- {"id": 1, "color": "000000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "FFFFFF"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "FFFFFF"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "FFFFFF"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "FFFFFF"}
- ]
- },
- {
- "frame_id": 5,
- "led": [
- {"id": 1, "color": "FFFFFF"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "FFFFFF"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "FFFFFF"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "FFFFFF"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- },
- {
- "frame_id": 6,
- "led": [
- {"id": 1, "color": "000000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- }
- ]
-}
--- /dev/null
+{
+ "type": "bt/connected",
+ "interval": 100,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "0000FF"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ }
+ ]
+}
--- /dev/null
+{
+ "type": "bt/pairing",
+ "interval": 500,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "FF0000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ },
+ {
+ "frame_id": 2,
+ "led": [
+ {"id": 1, "color": "00FF00"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ },
+ {
+ "frame_id": 3,
+ "led": [
+ {"id": 1, "color": "0000FF"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ }
+ ]
+}
+++ /dev/null
-{
- "type": "connected",
- "interval": 100,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "0000FF"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- }
- ]
-}
+++ /dev/null
-{
- "type": "easy_setup",
- "interval": 30,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "000022"},
- {"id": 2, "color": "000022"},
- {"id": 3, "color": "000022"},
- {"id": 4, "color": "000022"},
- {"id": 5, "color": "000022"},
- {"id": 6, "color": "000022"},
- {"id": 7, "color": "000022"},
- {"id": 8, "color": "000022"},
- {"id": 9, "color": "000022"},
- {"id": 10, "color": "000022"},
- {"id": 11, "color": "000022"},
- {"id": 12, "color": "000022"}
- ]
- },
- {
- "frame_id": 2,
- "led": [
- {"id": 1, "color": "0000ee"},
- {"id": 2, "color": "0000ee"},
- {"id": 3, "color": "0000ee"},
- {"id": 4, "color": "0000ee"},
- {"id": 5, "color": "0000ee"},
- {"id": 6, "color": "0000ee"},
- {"id": 7, "color": "0000ee"},
- {"id": 8, "color": "0000ee"},
- {"id": 9, "color": "0000ee"},
- {"id": 10, "color": "0000ee"},
- {"id": 11, "color": "0000ee"},
- {"id": 12, "color": "0000ee"}
- ]
- },
- ]
-}
+++ /dev/null
-{
- "type": "emergency",
- "interval": 30,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "FF0000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "FF0000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "FF0000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- },
- {
- "frame_id": 2,
- "led": [
- {"id": 1, "color": "000000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "FF0000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "FF0000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "FF0000"},
- {"id": 12, "color": "000000"}
- ]
- }
- ]
-}
+++ /dev/null
-{
- "type": "error",
- "interval": 500,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "FF0000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- }
- ]
-}
+++ /dev/null
-{
- "type": "listening",
- "interval": 70,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "000000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "ffffff"},
- {"id": 7, "color": "ffffff"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- },
- {
- "frame_id": 2,
- "led": [
- {"id": 1, "color": "ffffff"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "ffffff"}
- ]
- },
- ]
-}
+++ /dev/null
-{
- "type": "mic_off",
- "interval": 100,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "FF0000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- }
- ]
-}
+++ /dev/null
-{
- "type": "network_error",
- "interval": 100,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "FF0000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- }
- ]
-}
+++ /dev/null
-{
- "type": "normal",
- "interval": 50,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "000000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "FFFFFF"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- },
- {
- "frame_id": 2,
- "led": [
- {"id": 1, "color": "000000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- },
- {
- "frame_id": 3,
- "led": [
- {"id": 1, "color": "000000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "FFFFFF"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- }
- ]
-}
--- /dev/null
+{
+ "type": "notification/alarm",
+ "interval": 40,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "FFFFFF"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "FFFFFF"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "FFFFFF"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "FFFFFF"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ },
+ {
+ "frame_id": 2,
+ "led": [
+ {"id": 1, "color": "000000"},
+ {"id": 2, "color": "FFFFFF"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "FFFFFF"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "FFFFFF"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "FFFFFF"},
+ {"id": 12, "color": "000000"}
+ ]
+ },
+ {
+ "frame_id": 3,
+ "led": [
+ {"id": 1, "color": "000000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ },
+ {
+ "frame_id": 4,
+ "led": [
+ {"id": 1, "color": "000000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "FFFFFF"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "FFFFFF"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "FFFFFF"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "FFFFFF"}
+ ]
+ },
+ {
+ "frame_id": 5,
+ "led": [
+ {"id": 1, "color": "FFFFFF"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "FFFFFF"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "FFFFFF"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "FFFFFF"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ },
+ {
+ "frame_id": 6,
+ "led": [
+ {"id": 1, "color": "000000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ }
+ ]
+}
--- /dev/null
+{
+ "type": "notification/emergency",
+ "interval": 30,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "FF0000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "FF0000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "FF0000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ },
+ {
+ "frame_id": 2,
+ "led": [
+ {"id": 1, "color": "000000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "FF0000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "FF0000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "FF0000"},
+ {"id": 12, "color": "000000"}
+ ]
+ }
+ ]
+}
--- /dev/null
+{
+ "type": "notification/error",
+ "interval": 500,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "FF0000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ }
+ ]
+}
--- /dev/null
+{
+ "type": "notification/network_error",
+ "interval": 100,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "FF0000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ }
+ ]
+}
--- /dev/null
+{
+ "type": "notification/normal",
+ "interval": 50,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "000000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "FFFFFF"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ },
+ {
+ "frame_id": 2,
+ "led": [
+ {"id": 1, "color": "000000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ },
+ {
+ "frame_id": 3,
+ "led": [
+ {"id": 1, "color": "000000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "FFFFFF"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ }
+ ]
+}
+++ /dev/null
-{
- "type": "pairing",
- "interval": 500,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "FF0000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- },
- {
- "frame_id": 2,
- "led": [
- {"id": 1, "color": "00FF00"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- },
- {
- "frame_id": 3,
- "led": [
- {"id": 1, "color": "0000FF"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- }
- ]
-}
+++ /dev/null
-{
- "type": "processing",
- "interval": 100,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "bbbbbb"},
- {"id": 2, "color": "a0a0a0"},
- {"id": 3, "color": "909090"},
- {"id": 4, "color": "666666"},
- {"id": 5, "color": "454545"},
- {"id": 6, "color": "202020"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"},
- ]
- },
- ]
-}
+++ /dev/null
-{
- "type": "speaking",
- "interval": 30,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "222222"},
- {"id": 2, "color": "222222"},
- {"id": 3, "color": "222222"},
- {"id": 4, "color": "222222"},
- {"id": 5, "color": "222222"},
- {"id": 6, "color": "222222"},
- {"id": 7, "color": "222222"},
- {"id": 8, "color": "222222"},
- {"id": 9, "color": "222222"},
- {"id": 10, "color": "222222"},
- {"id": 11, "color": "222222"},
- {"id": 12, "color": "222222"}
- ]
- },
- {
- "frame_id": 2,
- "led": [
- {"id": 1, "color": "eeeeee"},
- {"id": 2, "color": "eeeeee"},
- {"id": 3, "color": "eeeeee"},
- {"id": 4, "color": "eeeeee"},
- {"id": 5, "color": "eeeeee"},
- {"id": 6, "color": "eeeeee"},
- {"id": 7, "color": "eeeeee"},
- {"id": 8, "color": "eeeeee"},
- {"id": 9, "color": "eeeeee"},
- {"id": 10, "color": "eeeeee"},
- {"id": 11, "color": "eeeeee"},
- {"id": 12, "color": "eeeeee"}
- ]
- },
- ]
-}
+++ /dev/null
-{
- "type": "streaming",
- "interval": 30,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "ffffff"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "ffffff"}
- ]
- },
- {
- "frame_id": 2,
- "led": [
- {"id": 1, "color": "222222"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "222222"}
- ]
- },
- ]
-}
+++ /dev/null
-{
- "type": "sw_update_done",
- "interval": 30,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "222222"},
- {"id": 2, "color": "222222"},
- {"id": 3, "color": "222222"},
- {"id": 4, "color": "222222"},
- {"id": 5, "color": "222222"},
- {"id": 6, "color": "222222"},
- {"id": 7, "color": "222222"},
- {"id": 8, "color": "222222"},
- {"id": 9, "color": "222222"},
- {"id": 10, "color": "222222"},
- {"id": 11, "color": "222222"},
- {"id": 12, "color": "222222"}
- ]
- },
- {
- "frame_id": 2,
- "led": [
- {"id": 1, "color": "eeeeee"},
- {"id": 2, "color": "eeeeee"},
- {"id": 3, "color": "eeeeee"},
- {"id": 4, "color": "eeeeee"},
- {"id": 5, "color": "eeeeee"},
- {"id": 6, "color": "eeeeee"},
- {"id": 7, "color": "eeeeee"},
- {"id": 8, "color": "eeeeee"},
- {"id": 9, "color": "eeeeee"},
- {"id": 10, "color": "eeeeee"},
- {"id": 11, "color": "eeeeee"},
- {"id": 12, "color": "eeeeee"}
- ]
- },
- {
- "frame_id": 3,
- "led": [
- {"id": 1, "color": "000000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- },
- ]
-}
--- /dev/null
+{
+ "type": "system/easy_setup",
+ "interval": 30,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "000022"},
+ {"id": 2, "color": "000022"},
+ {"id": 3, "color": "000022"},
+ {"id": 4, "color": "000022"},
+ {"id": 5, "color": "000022"},
+ {"id": 6, "color": "000022"},
+ {"id": 7, "color": "000022"},
+ {"id": 8, "color": "000022"},
+ {"id": 9, "color": "000022"},
+ {"id": 10, "color": "000022"},
+ {"id": 11, "color": "000022"},
+ {"id": 12, "color": "000022"}
+ ]
+ },
+ {
+ "frame_id": 2,
+ "led": [
+ {"id": 1, "color": "0000ee"},
+ {"id": 2, "color": "0000ee"},
+ {"id": 3, "color": "0000ee"},
+ {"id": 4, "color": "0000ee"},
+ {"id": 5, "color": "0000ee"},
+ {"id": 6, "color": "0000ee"},
+ {"id": 7, "color": "0000ee"},
+ {"id": 8, "color": "0000ee"},
+ {"id": 9, "color": "0000ee"},
+ {"id": 10, "color": "0000ee"},
+ {"id": 11, "color": "0000ee"},
+ {"id": 12, "color": "0000ee"}
+ ]
+ },
+ ]
+}
--- /dev/null
+{
+ "type": "system/mic_off",
+ "interval": 100,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "FF0000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ }
+ ]
+}
--- /dev/null
+{
+ "type": "system/processing",
+ "interval": 100,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "bbbbbb"},
+ {"id": 2, "color": "a0a0a0"},
+ {"id": 3, "color": "909090"},
+ {"id": 4, "color": "666666"},
+ {"id": 5, "color": "454545"},
+ {"id": 6, "color": "202020"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"},
+ ]
+ },
+ ]
+}
--- /dev/null
+{
+ "type": "system/sw_update_done",
+ "interval": 30,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "222222"},
+ {"id": 2, "color": "222222"},
+ {"id": 3, "color": "222222"},
+ {"id": 4, "color": "222222"},
+ {"id": 5, "color": "222222"},
+ {"id": 6, "color": "222222"},
+ {"id": 7, "color": "222222"},
+ {"id": 8, "color": "222222"},
+ {"id": 9, "color": "222222"},
+ {"id": 10, "color": "222222"},
+ {"id": 11, "color": "222222"},
+ {"id": 12, "color": "222222"}
+ ]
+ },
+ {
+ "frame_id": 2,
+ "led": [
+ {"id": 1, "color": "eeeeee"},
+ {"id": 2, "color": "eeeeee"},
+ {"id": 3, "color": "eeeeee"},
+ {"id": 4, "color": "eeeeee"},
+ {"id": 5, "color": "eeeeee"},
+ {"id": 6, "color": "eeeeee"},
+ {"id": 7, "color": "eeeeee"},
+ {"id": 8, "color": "eeeeee"},
+ {"id": 9, "color": "eeeeee"},
+ {"id": 10, "color": "eeeeee"},
+ {"id": 11, "color": "eeeeee"},
+ {"id": 12, "color": "eeeeee"}
+ ]
+ },
+ {
+ "frame_id": 3,
+ "led": [
+ {"id": 1, "color": "000000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ },
+ ]
+}
+++ /dev/null
-{
- "type": "system_processing",
- "interval": 100,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "bbbbbb"},
- {"id": 2, "color": "a0a0a0"},
- {"id": 3, "color": "909090"},
- {"id": 4, "color": "666666"},
- {"id": 5, "color": "454545"},
- {"id": 6, "color": "202020"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"},
- ]
- },
- ]
-}
+++ /dev/null
-{
- "type": "time_out",
- "interval": 30,
- "frame": [
- {
- "frame_id": 1,
- "led": [
- {"id": 1, "color": "ffffff"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "ffffff"}
- ]
- },
- {
- "frame_id": 2,
- "led": [
- {"id": 1, "color": "444444"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "444444"}
- ]
- },
- {
- "frame_id": 3,
- "led": [
- {"id": 1, "color": "ffffff"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "ffffff"}
- ]
- },
- {
- "frame_id": 4,
- "led": [
- {"id": 1, "color": "ffffff"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "ffffff"}
- ]
- },
- {
- "frame_id": 5,
- "led": [
- {"id": 1, "color": "000000"},
- {"id": 2, "color": "000000"},
- {"id": 3, "color": "000000"},
- {"id": 4, "color": "000000"},
- {"id": 5, "color": "000000"},
- {"id": 6, "color": "000000"},
- {"id": 7, "color": "000000"},
- {"id": 8, "color": "000000"},
- {"id": 9, "color": "000000"},
- {"id": 10, "color": "000000"},
- {"id": 11, "color": "000000"},
- {"id": 12, "color": "000000"}
- ]
- }
- ]
-}
--- /dev/null
+{
+ "type": "voice/listening",
+ "interval": 70,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "000000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "ffffff"},
+ {"id": 7, "color": "ffffff"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ },
+ {
+ "frame_id": 2,
+ "led": [
+ {"id": 1, "color": "ffffff"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "ffffff"}
+ ]
+ },
+ ]
+}
--- /dev/null
+{
+ "type": "voice/processing",
+ "interval": 100,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "bbbbbb"},
+ {"id": 2, "color": "a0a0a0"},
+ {"id": 3, "color": "909090"},
+ {"id": 4, "color": "666666"},
+ {"id": 5, "color": "454545"},
+ {"id": 6, "color": "202020"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"},
+ ]
+ },
+ ]
+}
--- /dev/null
+{
+ "type": "voice/speaking",
+ "interval": 30,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "222222"},
+ {"id": 2, "color": "222222"},
+ {"id": 3, "color": "222222"},
+ {"id": 4, "color": "222222"},
+ {"id": 5, "color": "222222"},
+ {"id": 6, "color": "222222"},
+ {"id": 7, "color": "222222"},
+ {"id": 8, "color": "222222"},
+ {"id": 9, "color": "222222"},
+ {"id": 10, "color": "222222"},
+ {"id": 11, "color": "222222"},
+ {"id": 12, "color": "222222"}
+ ]
+ },
+ {
+ "frame_id": 2,
+ "led": [
+ {"id": 1, "color": "eeeeee"},
+ {"id": 2, "color": "eeeeee"},
+ {"id": 3, "color": "eeeeee"},
+ {"id": 4, "color": "eeeeee"},
+ {"id": 5, "color": "eeeeee"},
+ {"id": 6, "color": "eeeeee"},
+ {"id": 7, "color": "eeeeee"},
+ {"id": 8, "color": "eeeeee"},
+ {"id": 9, "color": "eeeeee"},
+ {"id": 10, "color": "eeeeee"},
+ {"id": 11, "color": "eeeeee"},
+ {"id": 12, "color": "eeeeee"}
+ ]
+ },
+ ]
+}
--- /dev/null
+{
+ "type": "voice/streaming",
+ "interval": 30,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "ffffff"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "ffffff"}
+ ]
+ },
+ {
+ "frame_id": 2,
+ "led": [
+ {"id": 1, "color": "222222"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "222222"}
+ ]
+ },
+ ]
+}
--- /dev/null
+{
+ "type": "voice/timeout",
+ "interval": 30,
+ "frame": [
+ {
+ "frame_id": 1,
+ "led": [
+ {"id": 1, "color": "ffffff"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "ffffff"}
+ ]
+ },
+ {
+ "frame_id": 2,
+ "led": [
+ {"id": 1, "color": "444444"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "444444"}
+ ]
+ },
+ {
+ "frame_id": 3,
+ "led": [
+ {"id": 1, "color": "ffffff"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "ffffff"}
+ ]
+ },
+ {
+ "frame_id": 4,
+ "led": [
+ {"id": 1, "color": "ffffff"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "ffffff"}
+ ]
+ },
+ {
+ "frame_id": 5,
+ "led": [
+ {"id": 1, "color": "000000"},
+ {"id": 2, "color": "000000"},
+ {"id": 3, "color": "000000"},
+ {"id": 4, "color": "000000"},
+ {"id": 5, "color": "000000"},
+ {"id": 6, "color": "000000"},
+ {"id": 7, "color": "000000"},
+ {"id": 8, "color": "000000"},
+ {"id": 9, "color": "000000"},
+ {"id": 10, "color": "000000"},
+ {"id": 11, "color": "000000"},
+ {"id": 12, "color": "000000"}
+ ]
+ }
+ ]
+}
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_easysetup_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_easysetup_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_easysetup_get_frame(default_ani_info *ani_info)
+{
+#define SMOOTH_FRAME 20
+ default_frame_info_t *frame, *key_frame, *key_frame2;
+ int idx, idx2;
+ unsigned int r, g, b, r2, g2, b2;
+ int r3, g3, b3;
+ double div;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
+ idx2 = (idx + 1) % ani_info->num_key_frames;
+
+ key_frame = &ani_info->frames[idx];
+ key_frame2 = &ani_info->frames[idx2];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+ div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
+ r = g = b = r2 = g2 = b2 = 0x0;
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ _ani_backend_easysetup_get_led_rgb(key_frame, i, &r, &g, &b);
+ _ani_backend_easysetup_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
+ r3 = (int)(r2 - r) * div + r;
+ g3 = (int)(g2 - g) * div + g;
+ b3 = (int)(b2 - b) * div + b;
+
+ frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
+ }
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+static pui_bool
+_ani_backend_easysetup_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_easysetup_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_easysetup_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_easysetup_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_easysetup_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_easysetup_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_easysetup_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_easysetup_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_easysetup_start;
+ func->ani_stop = _ani_easysetup_stop;
+}
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_micoff_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_micoff_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_micoff_get_frame(default_ani_info *ani_info)
+{
+#define SMOOTH_FRAME 15
+ default_frame_info_t *frame, *key_frame;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ key_frame = &ani_info->frames[0];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ frame->leds[i].color = key_frame->leds[i].color;
+ }
+
+ return frame;
+}
+
+
+static pui_bool
+_ani_backend_micoff_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_micoff_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_micoff_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_micoff_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_micoff_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_micoff_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_micoff_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_micoff_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_micoff_start;
+ func->ani_stop = _ani_micoff_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_swupdatedone_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_swupdatedone_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_swupdatedone_get_frame(default_ani_info *ani_info)
+{
+#define SMOOTH_FRAME 20
+ default_frame_info_t *frame, *key_frame, *key_frame2;
+ int idx, idx2;
+ unsigned int r, g, b, r2, g2, b2;
+ int r3, g3, b3;
+ double div;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
+ idx2 = (idx + 1) % ani_info->num_key_frames;
+
+ key_frame = &ani_info->frames[idx];
+ key_frame2 = &ani_info->frames[idx2];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+ div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
+ r = g = b = r2 = g2 = b2 = 0x0;
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ _ani_backend_swupdatedone_get_led_rgb(key_frame, i, &r, &g, &b);
+ _ani_backend_swupdatedone_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
+ r3 = (int)(r2 - r) * div + r;
+ g3 = (int)(g2 - g) * div + g;
+ b3 = (int)(b2 - b) * div + b;
+
+ frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
+ }
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+static pui_bool
+_ani_backend_swupdatedone_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_swupdatedone_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_swupdatedone_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_swupdatedone_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_swupdatedone_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_swupdatedone_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_swupdatedone_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_swupdatedone_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_swupdatedone_start;
+ func->ani_stop = _ani_swupdatedone_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_system_processing_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_system_processing_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_system_processing_get_frame(default_ani_info *ani_info)
+{
+ default_frame_info_t *frame, *key_frame;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ key_frame = &ani_info->frames[0];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ int idx = (i - ani_info->frame_idx + key_frame->num_led) % key_frame->num_led;
+ frame->leds[idx] = key_frame->leds[i];
+ }
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= key_frame->num_led)
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+static pui_bool
+_ani_backend_system_processing_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_system_processing_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_system_processing_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_system_processing_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_system_processing_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+ if (info->num_key_frames != 1)
+ {
+ pui_err("invalid key frames: %d\n", info->num_key_frames);
+ return PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_system_processing_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_system_processing_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_system_processing_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_system_processing_start;
+ func->ani_stop = _ani_system_processing_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_listening_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_listening_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_listening_get_frame(default_ani_info *ani_info)
+{
+ default_frame_info_t *frame, *key_frame;
+ int division;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ key_frame = &ani_info->frames[0];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+ division = (int)(frame->num_led / 2);
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ int idx;
+ //int idx = (i - ani_info->frame_idx + key_frame->num_led) % key_frame->num_led;
+ if ((ani_info->frame_idx / division) <= 0)
+ {
+ if (i < division)
+ {
+ idx = i - ani_info->frame_idx;
+ if (idx < 0) continue;
+ }
+ else
+ {
+ idx = i + ani_info->frame_idx;
+ if (idx >= key_frame->num_led) continue;
+ }
+ }
+ else
+ {
+ if (i < division)
+ {
+ idx = i - division + 1 + ani_info->frame_idx - division;
+ if (idx < 0) continue;
+ }
+ else
+ {
+ idx = i + division - 1 - ani_info->frame_idx + division;
+ if (idx >= key_frame->num_led) continue;
+ }
+ }
+ frame->leds[idx] = key_frame->leds[i];
+ }
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= key_frame->num_led)
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+static pui_bool
+_ani_backend_listening_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_listening_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_listening_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_listening_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_listening_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_listening_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_listening_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_listening_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_listening_start;
+ func->ani_stop = _ani_listening_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_processing_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_processing_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_processing_get_frame(default_ani_info *ani_info)
+{
+ default_frame_info_t *frame, *key_frame;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ key_frame = &ani_info->frames[0];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ int idx = (i - ani_info->frame_idx + key_frame->num_led) % key_frame->num_led;
+ frame->leds[idx] = key_frame->leds[i];
+ }
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= key_frame->num_led)
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+static pui_bool
+_ani_backend_processing_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_processing_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_processing_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_processing_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_processing_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+ if (info->num_key_frames != 1)
+ {
+ pui_err("invalid key frames: %d\n", info->num_key_frames);
+ return PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_processing_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_processing_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_processing_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_processing_start;
+ func->ani_stop = _ani_processing_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_speaking_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_speaking_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_speaking_get_frame(default_ani_info *ani_info)
+{
+#define SMOOTH_FRAME 20
+ default_frame_info_t *frame, *key_frame, *key_frame2;
+ int idx, idx2;
+ unsigned int r, g, b, r2, g2, b2;
+ int r3, g3, b3;
+ double div;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
+ idx2 = (idx + 1) % ani_info->num_key_frames;
+
+ key_frame = &ani_info->frames[idx];
+ key_frame2 = &ani_info->frames[idx2];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+ div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
+ r = g = b = r2 = g2 = b2 = 0x0;
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ _ani_backend_speaking_get_led_rgb(key_frame, i, &r, &g, &b);
+ _ani_backend_speaking_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
+ r3 = (int)(r2 - r) * div + r;
+ g3 = (int)(g2 - g) * div + g;
+ b3 = (int)(b2 - b) * div + b;
+
+ frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
+ }
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+static pui_bool
+_ani_backend_speaking_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_speaking_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_speaking_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_speaking_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_speaking_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_speaking_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_speaking_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_speaking_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_speaking_start;
+ func->ani_stop = _ani_speaking_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_streaming_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_streaming_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_streaming_get_frame(default_ani_info *ani_info)
+{
+#define SMOOTH_FRAME 15
+ default_frame_info_t *frame, *key_frame, *key_frame2;
+ int idx, idx2;
+ unsigned int r, g, b, r2, g2, b2;
+ int r3, g3, b3;
+ double div;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
+ idx2 = (idx + 1) % ani_info->num_key_frames;
+
+ key_frame = &ani_info->frames[idx];
+ key_frame2 = &ani_info->frames[idx2];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+ div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
+ r = g = b = r2 = g2 = b2 = 0x0;
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ _ani_backend_streaming_get_led_rgb(key_frame, i, &r, &g, &b);
+ _ani_backend_streaming_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
+ r3 = (int)(r2 - r) * div + r;
+ g3 = (int)(g2 - g) * div + g;
+ b3 = (int)(b2 - b) * div + b;
+
+ frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
+ }
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+static pui_bool
+_ani_backend_streaming_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_streaming_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_streaming_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_streaming_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_streaming_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_streaming_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_streaming_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_streaming_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_streaming_start;
+ func->ani_stop = _ani_streaming_stop;
+}
+
+
--- /dev/null
+/*
+ * Copyright © 2019 Samsung Electronics co., Ltd. All Rights Reserved.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining
+ * a copy of this software and associated documentation files (the
+ * "Software"), to deal in the Software without restriction, including
+ * without limitation the rights to use, copy, modify, merge, publish,
+ * distribute, sublicense, and/or sell copies of the Software, and to
+ * permit persons to whom the Software is furnished to do so, subject to
+ * the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the
+ * next paragraph) shall be included in all copies or substantial
+ * portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+ * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+
+#include "../default_backend.h"
+
+static void
+_ani_backend_timeout_get_led_rgb(default_frame_info_t *frame, int led_idx, unsigned int *r, unsigned int *g, unsigned int *b)
+{
+ if (!frame) return;
+ if (!r || !g || !b) return;
+ if (led_idx > frame->num_led) return;
+
+ *r = (frame->leds[led_idx].color & LED_MASK_RED) >> 16;
+ *g = (frame->leds[led_idx].color & LED_MASK_GREEN) >> 8;
+ *b = (frame->leds[led_idx].color & LED_MASK_BLUE);
+}
+
+static void
+_ani_backend_timeout_free_frame(default_frame_info_t *frame)
+{
+ if (!frame) return;
+
+ if (frame->leds) free(frame->leds);
+ free(frame);
+}
+
+static default_frame_info_t *
+_ani_backend_timeout_get_frame(default_ani_info *ani_info)
+{
+#define SMOOTH_FRAME 15
+ default_frame_info_t *frame, *key_frame, *key_frame2;
+ int idx, idx2;
+ unsigned int r, g, b, r2, g2, b2;
+ int r3, g3, b3;
+ double div;
+
+ frame = (default_frame_info_t *)calloc(sizeof(default_frame_info_t), 1);
+ if (!frame) return NULL;
+
+ idx = ((int)(ani_info->frame_idx / SMOOTH_FRAME)) % ani_info->num_key_frames;
+ idx2 = (idx + 1) % ani_info->num_key_frames;
+
+ key_frame = &ani_info->frames[idx];
+ key_frame2 = &ani_info->frames[idx2];
+ frame->num_led = key_frame->num_led;
+ frame->leds = (default_led_info_t *)calloc(sizeof(default_led_info_t), frame->num_led);
+ if (!frame->leds)
+ {
+ free(frame);
+ return NULL;
+ }
+ div = (double)(ani_info->frame_idx % SMOOTH_FRAME) / (double)SMOOTH_FRAME;
+ r = g = b = r2 = g2 = b2 = 0x0;
+ for (int i = 0; i < key_frame->num_led; i++)
+ {
+ _ani_backend_timeout_get_led_rgb(key_frame, i, &r, &g, &b);
+ _ani_backend_timeout_get_led_rgb(key_frame2, i, &r2, &g2, &b2);
+ r3 = (int)(r2 - r) * div + r;
+ g3 = (int)(g2 - g) * div + g;
+ b3 = (int)(b2 - b) * div + b;
+
+ frame->leds[i].color = (r3 << 16) + (g3 << 8) + (b3);
+ }
+ ani_info->frame_idx++;
+ if (ani_info->frame_idx >= (ani_info->num_key_frames * SMOOTH_FRAME))
+ ani_info->frame_idx = 0;
+
+ return frame;
+}
+
+static pui_bool
+_ani_backend_timeout_frame_cb(void *data, int serial)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_ani_t *ani = (pui_ani_t *)data;
+ pui_backend_ani_data *ani_data = NULL;
+ pui_ani_control_buffer *buffer = NULL;
+ default_frame_info_t *frame;
+ unsigned int r = 0x0, g = 0x0, b = 0x0;
+ double now;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *ani_info = (default_ani_info *)ani_data->ani_info;
+
+ now = ecore_time_unix_get();
+ pui_info("[time:%.3f] serial=%d\n", now, serial);
+
+ /* TODO : make use of ani_info */
+ //(void) ani_info;
+
+ buffer = pui_backend_ani_get_buffer(ani);
+ if (!buffer) {
+ pui_err("Failed to get buffer for animation\n");
+ return (pui_bool)0;
+ }
+
+ frame = _ani_backend_timeout_get_frame(ani_info);
+ for(int i = 0; i<12; i++)
+ {
+ _ani_backend_timeout_get_led_rgb(frame, i, &r, &g, &b);
+ buffer->ptr[4*i] = 0;
+ buffer->ptr[4*i + 1] = b; /* BLUE */
+ buffer->ptr[4*i + 2] = g; /* GREEN */
+ buffer->ptr[4*i + 3] = r; /* RED */
+ }
+ _ani_backend_timeout_free_frame(frame);
+
+ e = pui_backend_ani_set_buffer(ani, buffer);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on setting buffer on animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ e = pui_backend_ani_update(ani);
+
+ if (e != PUI_INT_ERROR_NONE)
+ {
+ pui_err("Failed on updating animation !(e=%d)\n", e);
+ return (pui_bool)0;
+ }
+
+ pui_info("... update (serial=%d)\n", serial);
+
+ return (pui_bool)1;
+}
+
+pui_error
+_ani_timeout_start(pui_ani_t *ani, int repeat)
+{
+ pui_bool ret = 0;
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s, repeat : %d, interval: %d\n", info->id, repeat, info->interval);
+
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STARTED);
+ ret = pui_backend_ani_add_frame_cb(ani, _ani_backend_timeout_frame_cb, info->interval / 1000.0);
+
+ if (!ret)
+ {
+ pui_err("Failed to add frame callback !\n");
+ e = PUI_INT_ERROR_INVALID_RESOURCES;
+ }
+
+ return e;
+}
+
+pui_error
+_ani_timeout_stop(pui_ani_t *ani)
+{
+ pui_int_error e = PUI_INT_ERROR_NONE;
+ pui_backend_ani_data *ani_data = NULL;
+
+ ani_data = pui_backend_ani_get_ani_data(ani);
+ default_ani_info *info = (default_ani_info *)ani_data->ani_info;
+
+ //TODO
+ (void) info;
+
+ pui_info("... info->id: %s\n", info->id);
+
+ pui_backend_ani_remove_frame_cb(ani);
+ pui_backend_ani_status_update(ani, PUI_ANI_STATUS_STOPPED);
+
+ return e;
+}
+
+
+void
+pui_default_backend_ani_timeout_func_set(pui_backend_ani_func *func)
+{
+ if (!func) return;
+
+ func->ani_start = _ani_timeout_start;
+ func->ani_stop = _ani_timeout_stop;
+}
+
+
###### libpui default backend's animation data
mkdir -p %{buildroot}/%{ANIDATA_DIR}/
-cp -f backends/res/* %{buildroot}/%{ANIDATA_DIR}/
+cp -fr backends/res/* %{buildroot}/%{ANIDATA_DIR}/
%make_install
%post -n %{name} -p /sbin/ldconfig
static Eina_Array *_ecore_event_hdls = NULL;
static animation_t ani_collection[] = {
- { "easy_setup", PUI_ANI_CMD_START, -1 },
- { "system_processing", PUI_ANI_CMD_START, -1 },
- { "sw_update_done", PUI_ANI_CMD_START, -1 },
- { "mic_off", PUI_ANI_CMD_START, -1 },
- { "listening", PUI_ANI_CMD_START, -1 },
- { "streaming", PUI_ANI_CMD_START, -1 },
- { "processing", PUI_ANI_CMD_START, -1 },
- { "speaking", PUI_ANI_CMD_START, -1 },
- { "time_out", PUI_ANI_CMD_START, -1 },
- { "normal", PUI_ANI_CMD_START, -1 },
- { "emergency", PUI_ANI_CMD_START, -1 },
- { "network_error", PUI_ANI_CMD_START, -1 },
- { "error", PUI_ANI_CMD_START, -1 },
- { "alarm", PUI_ANI_CMD_START, -1 },
- { "pairing", PUI_ANI_CMD_START, -1 },
- { "connected", PUI_ANI_CMD_START, -1 }
+ { "system/easy_setup", PUI_ANI_CMD_START, -1 },
+ { "system/processing", PUI_ANI_CMD_START, -1 },
+ { "system/sw_update_done", PUI_ANI_CMD_START, -1 },
+ { "system/mic_off", PUI_ANI_CMD_START, -1 },
+ { "voice/listening", PUI_ANI_CMD_START, -1 },
+ { "voice/streaming", PUI_ANI_CMD_START, -1 },
+ { "voice/processing", PUI_ANI_CMD_START, -1 },
+ { "voice/speaking", PUI_ANI_CMD_START, -1 },
+ { "voice/timeout", PUI_ANI_CMD_START, -1 },
+ { "notification/normal", PUI_ANI_CMD_START, -1 },
+ { "notification/emergency", PUI_ANI_CMD_START, -1 },
+ { "notification/network_error", PUI_ANI_CMD_START, -1 },
+ { "notification/error", PUI_ANI_CMD_START, -1 },
+ { "notification/alarm", PUI_ANI_CMD_START, -1 },
+ { "bt/pairing", PUI_ANI_CMD_START, -1 },
+ { "bt/connected", PUI_ANI_CMD_START, -1 }
};
pui_ani_h ani_handles[sizeof(ani_collection) / sizeof(animation_t)];