/** * @file lv_line.c * */ /********************* * INCLUDES *********************/ #include "lv_conf.h" #if USE_LV_LINE != 0 #include "lv_line.h" #include "../lv_draw/lv_draw_vbasic.h" #include "../lv_draw/lv_draw_rbasic.h" #include "../lv_draw/lv_draw.h" #include #include #include #include #include #include #include /********************* * DEFINES *********************/ /********************** * TYPEDEFS **********************/ /********************** * STATIC PROTOTYPES **********************/ static bool lv_line_design(lv_obj_t* obj_dp, const area_t * mask_p, lv_design_mode_t mode); /********************** * STATIC VARIABLES **********************/ static lv_lines_t lv_lines_def = { .width = 2 * LV_STYLE_MULT, .color = COLOR_RED, .bg_color = COLOR_BLACK, .bg_opa = 0}; static lv_lines_t lv_lines_decor = { .width = 1 * LV_STYLE_MULT, .color = COLOR_GRAY, .bg_color = COLOR_BLACK, .bg_opa = 0}; static lv_lines_t lv_lines_chart = { .width = 3 * LV_STYLE_MULT, .color = COLOR_BLUE, .bg_color = COLOR_BLACK, .bg_opa = 0}; /********************** * MACROS **********************/ /********************** * GLOBAL FUNCTIONS **********************/ /** * Create a line objects * @param par_dp pointer to an object, it will be the parent of the new line * @return pointer to the created line */ lv_obj_t* lv_line_create(lv_obj_t* par_dp, lv_obj_t * copy_dp) { /*Create a basic object*/ lv_obj_t* new_obj_dp = lv_obj_create(par_dp, copy_dp); dm_assert(new_obj_dp); /*Extend the basic object to rectangle object*/ lv_line_t *line_ext_p = lv_obj_alloc_ext(new_obj_dp, sizeof(lv_line_t)); lv_obj_set_design_f(new_obj_dp, lv_line_design); lv_obj_set_signal_f(new_obj_dp, lv_line_signal); /*Init the new rectangle*/ if(copy_dp == NULL) { line_ext_p->point_num = 0; line_ext_p->point_p = NULL; line_ext_p->auto_size = 1; line_ext_p->y_inv = 0; lv_obj_set_style(new_obj_dp, &lv_lines_def); } /*Copy 'copy_p' is not NULL*/ else { lv_line_set_auto_size(new_obj_dp,lv_line_get_auto_size(copy_dp)); lv_line_set_y_inv(new_obj_dp,lv_line_get_y_inv(copy_dp)); lv_line_set_auto_size(new_obj_dp,lv_line_get_auto_size(copy_dp)); lv_line_set_points(new_obj_dp, LV_EA(copy_dp, lv_line_t)->point_p, LV_EA(copy_dp, lv_line_t)->point_num); } return new_obj_dp; } /** * Signal function of the line * @param obj_dp pointer to a line object * @param sign a signal type from lv_signal_t enum * @param param pointer to a signal specific variable */ bool lv_line_signal(lv_obj_t* obj_dp, lv_signal_t sign, void * param) { bool valid; /* Include the ancient signal function */ valid = lv_obj_signal(obj_dp, sign, param); /* The object can be deleted so check its validity and then * make the object specific signal handling */ if(valid != false) { switch(sign) { default: break; } } return valid; } /*===================== * Setter functions *====================*/ /** * Set an array of points. The line object will connect these points. * @param obj_dp pointer to a line object * @param point_a an array of points. Only the address is saved, * so the array can be a local variable which will be destroyed * @param point_num number of points in 'point_a' */ void lv_line_set_points(lv_obj_t* obj_dp, const point_t * point_a, uint16_t point_num) { lv_line_t * line_p = lv_obj_get_ext(obj_dp); line_p->point_p = point_a; line_p->point_num = point_num; if(point_num > 0 && line_p->auto_size != 0) { uint16_t i; cord_t xmax = LV_CORD_MIN; cord_t ymax = LV_CORD_MIN; for(i = 0; i < point_num; i++) { xmax = max(point_a[i].x, xmax); ymax = max(point_a[i].y, ymax); } lv_lines_t * lines_p = lv_obj_get_style(obj_dp); lv_obj_set_size(obj_dp, xmax + lines_p->width, ymax + lines_p->width); } } /** * Enable (or disable) the auto-size option. The size of the object will fit to its points. * (set width to x max and height to y max) * @param obj_dp pointer to a line object * @param en true: auto size is enabled, false: auto size is disabled */ void lv_line_set_auto_size(lv_obj_t * obj_dp, bool en) { lv_line_t * line_p = lv_obj_get_ext(obj_dp); line_p->auto_size = en == false ? 0 : 1; /*Refresh the object*/ if(en != false) { lv_line_set_points(obj_dp, line_p->point_p, line_p->point_num); } } /** * Enable (or disable) the y coordinate inversion. * If enabled then y will be subtracted from the height of the object, * therefore the y=0 coordinate will be on the bottom. * @param obj_dp pointer to a line object * @param en true: enable the y inversion, false:disable the y inversion */ void lv_line_set_y_inv(lv_obj_t * obj_dp, bool en) { lv_line_t * line_p = lv_obj_get_ext(obj_dp); line_p->y_inv = en == false ? 0 : 1; lv_obj_inv(obj_dp); } /*===================== * Getter functions *====================*/ /** * Get the auto size attribute * @param obj_dp pointer to a line object * @return true: auto size is enabled, false: disabled */ bool lv_line_get_auto_size(lv_obj_t * obj_dp) { lv_line_t * line_p = lv_obj_get_ext(obj_dp); return line_p->auto_size == 0 ? false : true; } /** * Get the y inversion attribute * @param obj_dp pointer to a line object * @return true: y inversion is enabled, false: disabled */ bool lv_line_get_y_inv(lv_obj_t * obj_dp) { lv_line_t * line_p = lv_obj_get_ext(obj_dp); return line_p->y_inv == 0 ? false : true; } /** * Return with a pointer to a built-in style and/or copy it to a variable * @param style a style name from lv_lines_builtin_t enum * @param copy_p copy the style to this variable. (NULL if unused) * @return pointer to an lv_lines_t style */ lv_lines_t * lv_lines_get(lv_lines_builtin_t style, lv_lines_t * copy_p) { lv_lines_t *style_p; switch(style) { case LV_LINES_DEF: style_p = &lv_lines_def; break; case LV_LINES_DECOR: style_p = &lv_lines_decor; break; case LV_LINES_CHART: style_p = &lv_lines_chart; break; default: style_p = NULL; } if(copy_p != NULL) { if(style_p != NULL) memcpy(copy_p, style_p, sizeof(lv_lines_t)); else memcpy(copy_p, &lv_lines_def, sizeof(lv_lines_t)); } return style_p; } /********************** * STATIC FUNCTIONS **********************/ /** * Handle the drawing related tasks of the lines * @param obj_dp 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') * @param return true/false, depends on 'mode' */ static bool lv_line_design(lv_obj_t* obj_dp, const area_t * mask_p, lv_design_mode_t mode) { /*A line never covers an area*/ if(mode == LV_DESIGN_COVER_CHK) return false; lv_line_t * line_p = lv_obj_get_ext(obj_dp); if(line_p->point_num == 0 || line_p->point_p == NULL) return false; lv_lines_t * lines_p = lv_obj_get_style(obj_dp); if(lines_p->bg_opa != 0) { #if LV_VDB_SIZE != 0 lv_vfill(&obj_dp->cords, mask_p, lines_p->bg_color, lines_p->bg_opa * 255 / 100); #else lv_rfill(&obj_dp->cords, mask_p, lines_p->bg_color, lines_p->bg_opa * 255 / 100); #endif } opa_t opa = lv_obj_get_opa(obj_dp); area_t area; lv_obj_get_cords(obj_dp, &area); cord_t x_ofs = area.x1; cord_t y_ofs = area.y1; point_t p1; point_t p2; cord_t h = lv_obj_get_height(obj_dp); uint16_t i; /*Read all pints and draw the lines*/ for (i = 0; i < line_p->point_num - 1; i++) { p1.x = line_p->point_p[i].x + x_ofs; p2.x = line_p->point_p[i + 1].x + x_ofs; if(line_p->y_inv == 0) { p1.y = line_p->point_p[i].y + y_ofs; p2.y = line_p->point_p[i + 1].y + y_ofs; } else { p1.y = h - line_p->point_p[i].y + y_ofs; p2.y = h - line_p->point_p[i + 1].y + y_ofs; } lv_draw_line(&p1, &p2, mask_p, lines_p, opa); } return true; } #endif