1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-21 06:53:01 +08:00
lvgl/src/lv_draw/lv_draw_arc.c

151 lines
4.6 KiB
C
Raw Normal View History

/**
* @file lv_draw_arc.c
*
*/
/*********************
* INCLUDES
*********************/
#include "lv_draw_arc.h"
2019-09-06 12:24:15 +02:00
#include "lv_draw_mask.h"
2019-11-27 11:45:38 +01:00
#include "../lv_misc/lv_math.h"
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* STATIC PROTOTYPES
**********************/
2019-11-27 11:45:38 +01:00
static void get_rounded_area(int16_t angle, lv_coord_t radius, uint8_t tickness, lv_area_t * res_area);
/**********************
* STATIC VARIABLES
**********************/
/**********************
* MACROS
**********************/
/**********************
* GLOBAL FUNCTIONS
**********************/
/**
* Draw an arc. (Can draw pie too with great thickness.)
* @param center_x the x coordinate of the center of the arc
* @param center_y the y coordinate of the center of the arc
* @param radius the radius of the arc
2018-06-08 10:26:10 +02:00
* @param mask the arc will be drawn only in this mask
* @param start_angle the start angle of the arc (0 deg on the bottom, 90 deg on the right)
* @param end_angle the end angle of the arc
2018-06-08 10:26:10 +02:00
* @param style style of the arc (`body.thickness`, `body.main_color`, `body.opa` is used)
2018-06-14 13:08:19 +02:00
* @param opa_scale scale down all opacities by the factor
*/
2019-08-28 09:46:56 +02:00
void lv_draw_arc(lv_coord_t center_x, lv_coord_t center_y, uint16_t radius, const lv_area_t * clip_area,
2019-11-27 11:45:38 +01:00
uint16_t start_angle, uint16_t end_angle, const lv_style_t * style, lv_opa_t opa_scale)
{
2019-08-28 09:46:56 +02:00
lv_style_t circle_style;
lv_style_copy(&circle_style, style);
circle_style.body.radius = LV_RADIUS_CIRCLE;
circle_style.body.opa = LV_OPA_TRANSP;
circle_style.body.border.width = style->line.width;
circle_style.body.border.color = style->line.color;
circle_style.body.border.opa = style->line.opa;
lv_draw_mask_angle_param_t mask_angle_param;
2019-09-06 12:24:15 +02:00
lv_draw_mask_angle_init(&mask_angle_param, center_x, center_y, start_angle, end_angle);
2019-04-04 07:15:40 +02:00
2019-09-10 07:34:46 +02:00
int16_t mask_angle_id = lv_draw_mask_add(&mask_angle_param, NULL);
2019-08-28 09:46:56 +02:00
lv_area_t area;
area.x1 = center_x - radius;
area.y1 = center_y - radius;
2019-11-27 11:45:38 +01:00
area.x2 = center_x + radius - 1; /*-1 because the center already belongs to the left/bottom part*/
area.y2 = center_y + radius - 1;
2019-08-28 09:46:56 +02:00
lv_draw_rect(&area, clip_area, &circle_style, LV_OPA_COVER);
2019-09-06 12:24:15 +02:00
lv_draw_mask_remove_id(mask_angle_id);
2019-10-28 15:03:11 +01:00
if(style->line.rounded) {
2019-11-27 11:45:38 +01:00
circle_style.body.main_color = style->line.color;
circle_style.body.grad_color = style->line.color;
circle_style.body.opa = LV_OPA_COVER;
circle_style.body.border.width = 0;
lv_area_t round_area;
get_rounded_area(start_angle, radius, style->line.width, &round_area);
round_area.x1 += center_x;
round_area.x2 += center_x;
round_area.y1 += center_y;
round_area.y2 += center_y;
lv_draw_rect(&round_area, clip_area, &circle_style, opa_scale);
get_rounded_area(end_angle, radius, style->line.width, &round_area);
round_area.x1 += center_x;
round_area.x2 += center_x;
round_area.y1 += center_y;
round_area.y2 += center_y;
lv_draw_rect(&round_area, clip_area, &circle_style, opa_scale);
2019-10-28 15:03:11 +01:00
}
}
/**********************
* STATIC FUNCTIONS
**********************/
2019-11-27 11:45:38 +01:00
static void get_rounded_area(int16_t angle, lv_coord_t radius, uint8_t tickness, lv_area_t * res_area)
{
2019-11-28 13:08:56 +01:00
const uint8_t ps = 8;
const uint8_t pa = 127;
2019-11-27 11:45:38 +01:00
lv_coord_t thick_half = tickness / 2;
lv_coord_t thick_corr = tickness & 0x01 ? 0 : 1;
lv_coord_t rx_corr;
lv_coord_t ry_corr;
if(angle > 90 && angle < 270) rx_corr = 0;
else rx_corr = 0;
if(angle > 0 && angle < 180) ry_corr = 0;
else ry_corr = 0;
lv_coord_t cir_x;
lv_coord_t cir_y;
2019-11-28 13:08:56 +01:00
cir_x = ((radius - rx_corr - thick_half) * lv_trigo_sin(90 - angle)) >> (LV_TRIGO_SHIFT - ps);
cir_y = ((radius - ry_corr - thick_half) * lv_trigo_sin(angle)) >> (LV_TRIGO_SHIFT - ps);
2019-11-27 11:45:38 +01:00
/* Actually the center of the pixel need to be calculated so apply 1/2 px offset*/
if(cir_x > 0) {
2019-11-28 13:08:56 +01:00
cir_x = (cir_x - pa) >> ps;
2019-11-27 11:45:38 +01:00
res_area->x1 = cir_x - thick_half + thick_corr;
res_area->x2 = cir_x + thick_half;
}
else {
2019-11-28 13:08:56 +01:00
cir_x = (cir_x + pa) >> ps;
2019-11-27 11:45:38 +01:00
res_area->x1 = cir_x - thick_half;
res_area->x2 = cir_x + thick_half - thick_corr;
}
if(cir_y > 0) {
2019-11-28 13:08:56 +01:00
cir_y = (cir_y - pa) >> ps;
2019-11-27 11:45:38 +01:00
res_area->y1 = cir_y - thick_half + thick_corr;
res_area->y2 = cir_y + thick_half;
}
else {
2019-11-28 13:08:56 +01:00
cir_y = (cir_y + pa) >> ps;
2019-11-27 11:45:38 +01:00
res_area->y1 = cir_y - thick_half;
res_area->y2 = cir_y + thick_half - thick_corr;
}
}