120 lines
3.9 KiB
C
120 lines
3.9 KiB
C
/* source/widgets/sgl_arc.c
|
|
*
|
|
* MIT License
|
|
*
|
|
* Copyright(c) 2023-present All contributors of SGL
|
|
* Document reference link: https://sgl-docs.readthedocs.io
|
|
*
|
|
* 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 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 <sgl_core.h>
|
|
#include <sgl_draw.h>
|
|
#include <sgl_math.h>
|
|
#include <sgl_log.h>
|
|
#include <sgl_mm.h>
|
|
#include <sgl_theme.h>
|
|
#include <sgl_cfgfix.h>
|
|
#include <string.h>
|
|
#include "sgl_arc.h"
|
|
|
|
|
|
static void sgl_arc_construct_cb(sgl_surf_t *surf, sgl_obj_t* obj, sgl_event_t *evt)
|
|
{
|
|
sgl_arc_t *arc = sgl_container_of(obj, sgl_arc_t, obj);
|
|
int16_t tb_angle = 0;
|
|
|
|
if(evt->type == SGL_EVENT_DRAW_MAIN) {
|
|
arc->desc.cx = (obj->coords.x2 + obj->coords.x1) / 2;
|
|
arc->desc.cy = (obj->coords.y2 + obj->coords.y1) / 2;
|
|
|
|
if(arc->desc.start_angle == 0 && arc->desc.end_angle == 360) {
|
|
sgl_draw_fill_ring(surf, &arc->obj.area, arc->desc.cx, arc->desc.cy, arc->desc.radius_in, arc->desc.radius_out, arc->desc.color, arc->desc.alpha);
|
|
}
|
|
else {
|
|
sgl_draw_fill_arc(surf, &arc->obj.area, &arc->desc);
|
|
}
|
|
}
|
|
else if(evt->type == SGL_EVENT_PRESSED ||
|
|
evt->type == SGL_EVENT_MOVE_DOWN || evt->type == SGL_EVENT_MOVE_UP || evt->type == SGL_EVENT_MOVE_LEFT || evt->type == SGL_EVENT_MOVE_RIGHT
|
|
) {
|
|
tb_angle = sgl_atan2_angle(evt->pos.x - arc->desc.cx, evt->pos.y - arc->desc.cy);
|
|
tb_angle = 360 - tb_angle;
|
|
if ((tb_angle != arc->desc.end_angle) && tb_angle >= 0 && tb_angle <= 360) {
|
|
arc->desc.end_angle = tb_angle;
|
|
}
|
|
|
|
if(obj->event_fn) {
|
|
obj->event_fn(evt);
|
|
}
|
|
sgl_obj_set_dirty(obj);
|
|
}
|
|
else if(evt->type == SGL_EVENT_RELEASED) {
|
|
if(obj->event_fn) {
|
|
obj->event_fn(evt);
|
|
}
|
|
}
|
|
else if(SGL_EVENT_DRAW_INIT) {
|
|
if(arc->desc.radius_out < 0) {
|
|
arc->desc.radius_out = (obj->coords.x2 - obj->coords.x1) / 2;
|
|
}
|
|
|
|
if(arc->desc.radius_in < 0) {
|
|
arc->desc.radius_in = arc->desc.radius_out - 2;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @brief create an arc object
|
|
* @param parent parent object
|
|
* @return arc object
|
|
*/
|
|
sgl_obj_t* sgl_arc_create(sgl_obj_t* parent)
|
|
{
|
|
sgl_arc_t *arc = sgl_malloc(sizeof(sgl_arc_t));
|
|
if(arc == NULL) {
|
|
SGL_LOG_ERROR("sgl_arc_create: malloc failed");
|
|
return NULL;
|
|
}
|
|
|
|
/* set object all member to zero */
|
|
memset(arc, 0, sizeof(sgl_arc_t));
|
|
|
|
sgl_obj_t *obj = &arc->obj;
|
|
sgl_obj_init(&arc->obj, parent);
|
|
obj->needinit = 1;
|
|
obj->clickable = 1;
|
|
obj->movable = 1;
|
|
|
|
arc->desc.alpha = SGL_THEME_ALPHA;
|
|
arc->desc.mode = SGL_ARC_MODE_NORMAL;
|
|
arc->desc.color = SGL_THEME_BG_COLOR;
|
|
arc->desc.bg_color = SGL_THEME_COLOR;
|
|
arc->desc.start_angle = 0;
|
|
arc->desc.end_angle = 360;
|
|
arc->desc.radius_out = -1;
|
|
arc->desc.radius_in = -1;
|
|
arc->desc.cx = -1;
|
|
arc->desc.cy = -1;
|
|
|
|
obj->construct_fn = sgl_arc_construct_cb;
|
|
|
|
return obj;
|
|
}
|