1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/lv_objx/lv_preload.c

319 lines
8.8 KiB
C
Raw Normal View History

2018-06-09 08:47:09 +02:00
/**
* @file lv_preload.c
2018-06-19 09:49:58 +02:00
*
2018-06-09 08:47:09 +02:00
*/
/*********************
* INCLUDES
*********************/
#include "lv_preload.h"
2018-06-09 08:47:09 +02:00
#if USE_LV_PRELOAD != 0
#include "../lv_misc/lv_math.h"
#include "../lv_draw/lv_draw_rect.h"
#include "../lv_draw/lv_draw_arc.h"
/*********************
* DEFINES
*********************/
2018-06-11 10:36:36 +02:00
#ifndef LV_PRELOAD_DEF_ARC_LENGTH
2018-06-19 09:49:58 +02:00
# define LV_PRELOAD_DEF_ARC_LENGTH 60 /*[deg]*/
2018-06-11 10:36:36 +02:00
#endif
2018-06-09 08:47:09 +02:00
2018-06-11 10:36:36 +02:00
#ifndef LV_PRELOAD_DEF_SPIN_TIME
2018-06-19 09:49:58 +02:00
# define LV_PRELOAD_DEF_SPIN_TIME 1000 /*[ms]*/
2018-06-11 10:36:36 +02:00
#endif
2018-06-09 08:47:09 +02:00
/**********************
* TYPEDEFS
**********************/
/**********************
* STATIC PROTOTYPES
**********************/
static bool lv_preload_design(lv_obj_t * preload, const lv_area_t * mask, lv_design_mode_t mode);
static lv_res_t lv_preload_signal(lv_obj_t * preload, lv_signal_t sign, void * param);
/**********************
* STATIC VARIABLES
**********************/
static lv_signal_func_t ancestor_signal;
static lv_design_func_t ancestor_design;
/**********************
* MACROS
**********************/
/**********************
* GLOBAL FUNCTIONS
**********************/
/**
* Create a pre loader object
* @param par pointer to an object, it will be the parent of the new pre loader
* @param copy pointer to a pre loader object, if not NULL then the new object will be copied from it
* @return pointer to the created pre loader
*/
lv_obj_t * lv_preload_create(lv_obj_t * par, lv_obj_t * copy)
{
/*Create the ancestor of pre loader*/
lv_obj_t * new_preload = lv_arc_create(par, copy);
lv_mem_assert(new_preload);
2018-06-19 09:49:58 +02:00
2018-06-09 08:47:09 +02:00
/*Allocate the pre loader type specific extended data*/
lv_preload_ext_t * ext = lv_obj_allocate_ext_attr(new_preload, sizeof(lv_preload_ext_t));
lv_mem_assert(ext);
if(ancestor_signal == NULL) ancestor_signal = lv_obj_get_signal_func(new_preload);
if(ancestor_design == NULL) ancestor_design = lv_obj_get_design_func(new_preload);
/*Initialize the allocated 'ext' */
2018-06-11 10:36:36 +02:00
ext->arc_length = LV_PRELOAD_DEF_ARC_LENGTH;
2018-06-09 08:47:09 +02:00
/*The signal and design functions are not copied so set them here*/
lv_obj_set_signal_func(new_preload, lv_preload_signal);
lv_obj_set_design_func(new_preload, lv_preload_design);
#if USE_LV_ANIMATION
2018-06-09 08:47:09 +02:00
lv_anim_t a;
a.var = new_preload;
a.start = 0;
a.end = 360;
a.fp = (lv_anim_fp_t)lv_preload_spinner_animation;
2018-06-11 10:36:36 +02:00
a.path = lv_anim_path_ease_in_out;
2018-06-09 08:47:09 +02:00
a.end_cb = NULL;
a.act_time = 0;
2018-06-11 10:36:36 +02:00
a.time = LV_PRELOAD_DEF_SPIN_TIME;
2018-06-09 08:47:09 +02:00
a.playback = 0;
a.playback_pause = 0;
a.repeat = 1;
a.repeat_pause = 0;
lv_anim_create(&a);
#endif
2018-06-09 08:47:09 +02:00
/*Init the new pre loader pre loader*/
if(copy == NULL) {
2018-06-19 09:49:58 +02:00
lv_obj_set_style(new_preload, &lv_style_pretty_color);
2018-06-09 08:47:09 +02:00
}
/*Copy an existing pre loader*/
else {
2018-06-19 09:49:58 +02:00
lv_preload_ext_t * copy_ext = lv_obj_get_ext_attr(copy);
ext->arc_length = copy_ext->arc_length;
ext->time = copy_ext->time;
2018-06-09 08:47:09 +02:00
/*Refresh the style with new signal function*/
lv_obj_refresh_style(new_preload);
}
2018-06-19 09:49:58 +02:00
2018-06-09 08:47:09 +02:00
return new_preload;
}
/*======================
* Add/remove functions
*=====================*/
2018-06-11 10:36:36 +02:00
/**
* Set the length of the spinning arc in degrees
* @param preload pointer to a preload object
* @param deg length of the arc
*/
void lv_preload_set_arc_length(lv_obj_t * preload, uint16_t deg)
{
2018-06-19 09:49:58 +02:00
lv_preload_ext_t * ext = lv_obj_get_ext_attr(preload);
2018-06-11 10:36:36 +02:00
2018-06-19 09:49:58 +02:00
ext->arc_length = deg;
2018-06-11 10:36:36 +02:00
}
/**
* Set the spin time of the arc
* @param preload pointer to a preload object
* @param time time of one round in milliseconds
2018-06-09 08:47:09 +02:00
*/
2018-06-11 10:36:36 +02:00
void lv_preload_set_spin_time(lv_obj_t * preload, uint16_t time)
{
2018-06-19 09:49:58 +02:00
lv_preload_ext_t * ext = lv_obj_get_ext_attr(preload);
2018-06-09 08:47:09 +02:00
2018-06-19 09:49:58 +02:00
ext->time = time;
#if USE_LV_ANIMATION
2018-06-11 10:36:36 +02:00
lv_anim_t a;
a.var = preload;
a.start = 0;
a.end = 360;
a.fp = (lv_anim_fp_t)lv_preload_spinner_animation;
2018-06-11 10:36:36 +02:00
a.path = lv_anim_path_ease_in_out;
a.end_cb = NULL;
a.act_time = 0;
a.time = time;
a.playback = 0;
a.playback_pause = 0;
a.repeat = 1;
a.repeat_pause = 0;
lv_anim_create(&a);
#endif
2018-06-11 10:36:36 +02:00
}
2018-06-09 08:47:09 +02:00
/*=====================
* Setter functions
*====================*/
/**
* Set a style of a pre loader.
* @param preload pointer to pre loader object
* @param type which style should be set
* @param style pointer to a style
* */
2018-06-19 09:49:58 +02:00
void lv_preload_set_style(lv_obj_t * preload, lv_preload_style_t type, lv_style_t * style)
2018-06-09 08:47:09 +02:00
{
2018-06-19 09:49:58 +02:00
switch(type) {
2018-06-09 08:47:09 +02:00
case LV_PRELOAD_STYLE_MAIN:
2018-06-19 09:49:58 +02:00
lv_arc_set_style(preload, LV_ARC_STYLE_MAIN, style);
2018-06-09 08:47:09 +02:00
break;
}
}
/*=====================
* Getter functions
*====================*/
2018-06-11 10:36:36 +02:00
/**
* Get the arc length [degree] of the a pre loader
* @param preload pointer to a pre loader object
*/
uint16_t lv_preload_get_arc_length(lv_obj_t * preload)
{
2018-06-19 09:49:58 +02:00
lv_preload_ext_t * ext = lv_obj_get_ext_attr(preload);
return ext->arc_length;
2018-06-11 10:36:36 +02:00
}
/**
* Get the spin time of the arc
* @param preload pointer to a pre loader object [milliseconds]
2018-06-09 08:47:09 +02:00
*/
2018-06-11 10:36:36 +02:00
uint16_t lv_preload_get_spin_time(lv_obj_t * preload)
{
2018-06-19 09:49:58 +02:00
lv_preload_ext_t * ext = lv_obj_get_ext_attr(preload);
return ext->time;
2018-06-11 10:36:36 +02:00
}
2018-06-09 08:47:09 +02:00
/**
* Get style of a pre loader.
* @param preload pointer to pre loader object
* @param type which style should be get
* @return style pointer to the style
* */
lv_style_t * lv_preload_get_style(lv_obj_t * preload, lv_preload_style_t type)
{
2018-06-19 09:49:58 +02:00
switch(type) {
case LV_PRELOAD_STYLE_MAIN:
return lv_arc_get_style(preload, LV_ARC_STYLE_MAIN);
default:
return NULL;
2018-06-09 08:47:09 +02:00
}
/*To avoid warning*/
return NULL;
}
/*=====================
* Other functions
*====================*/
void lv_preload_spinner_animation(void * ptr, int32_t val)
{
2018-06-19 09:49:58 +02:00
lv_obj_t * preload = ptr;
lv_preload_ext_t * ext = lv_obj_get_ext_attr(preload);
int16_t angle_start = val - ext->arc_length / 2 + 180;
int16_t angle_end = angle_start + ext->arc_length;
2018-06-19 09:49:58 +02:00
angle_start = angle_start % 360;
angle_end = angle_end % 360;
2018-06-19 09:49:58 +02:00
lv_arc_set_angles(preload, angle_start, angle_end);
}
2018-06-09 08:47:09 +02:00
/**********************
* STATIC FUNCTIONS
**********************/
/**
* Handle the drawing related tasks of the pre loaders
* @param preload pointer to an object
* @param mask the object will be drawn only in this area
* @param mode LV_DESIGN_COVER_CHK: only check if the object fully covers the 'mask_p' area
* (return 'true' if yes)
* LV_DESIGN_DRAW: draw the object (always return 'true')
* LV_DESIGN_DRAW_POST: drawing after every children are drawn
* @param return true/false, depends on 'mode'
*/
static bool lv_preload_design(lv_obj_t * preload, const lv_area_t * mask, lv_design_mode_t mode)
{
/*Return false if the object is not covers the mask_p area*/
if(mode == LV_DESIGN_COVER_CHK) {
2018-06-19 09:49:58 +02:00
return false;
2018-06-09 08:47:09 +02:00
}
/*Draw the object*/
else if(mode == LV_DESIGN_DRAW_MAIN) {
2018-06-19 09:49:58 +02:00
/*Draw a circle as background*/
lv_style_t * style = lv_arc_get_style(preload, LV_ARC_STYLE_MAIN);
lv_coord_t r = (LV_MATH_MIN(lv_obj_get_width(preload), lv_obj_get_height(preload))) / 2;
lv_coord_t x = preload->coords.x1 + lv_obj_get_width(preload) / 2;
lv_coord_t y = preload->coords.y1 + lv_obj_get_height(preload) / 2;
lv_style_t bg_style;
lv_style_copy(&bg_style, &lv_style_plain);
bg_style.body.empty = 1;
bg_style.body.radius = LV_RADIUS_CIRCLE;
bg_style.body.border.color = style->body.aux_color;
bg_style.body.border.width = style->body.thickness;
lv_area_t bg_area;
bg_area.x1 = x - r;
bg_area.y1 = y - r;
bg_area.x2 = x + r;
bg_area.y2 = y + r;
if(style->body.empty == 0) lv_draw_rect(&bg_area, mask, &bg_style, lv_obj_get_opa_scale(preload));
/*Draw the arc above the background circle */
ancestor_design(preload, mask, mode);
2018-06-09 08:47:09 +02:00
}
/*Post draw when the children are drawn*/
else if(mode == LV_DESIGN_DRAW_POST) {
}
return true;
}
/**
* Signal function of the pre loader
* @param preload pointer to a pre loader object
* @param sign a signal type from lv_signal_t enum
* @param param pointer to a signal specific variable
* @return LV_RES_OK: the object is not deleted in the function; LV_RES_INV: the object is deleted
*/
static lv_res_t lv_preload_signal(lv_obj_t * preload, lv_signal_t sign, void * param)
{
lv_res_t res;
/* Include the ancient signal function */
res = ancestor_signal(preload, sign, param);
if(res != LV_RES_OK) return res;
if(sign == LV_SIGNAL_CLEANUP) {
/*Nothing to cleanup. (No dynamically allocated memory in 'ext')*/
2018-06-19 09:49:58 +02:00
} else if(sign == LV_SIGNAL_GET_TYPE) {
2018-06-09 08:47:09 +02:00
lv_obj_type_t * buf = param;
uint8_t i;
for(i = 0; i < LV_MAX_ANCESTOR_NUM - 1; i++) { /*Find the last set data*/
if(buf->type[i] == NULL) break;
}
buf->type[i] = "lv_preload";
}
return res;
}
#endif