-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdraw.cpp
198 lines (182 loc) · 4.4 KB
/
draw.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#include "draw.h"
#include "RGB16DisplayAdaptor.h"
void draw_circle_filled(
class RGB16DisplayAdaptor* disp,
uint16_t cx, uint16_t cy, // center
uint16_t ra, // radius
uint16_t color // fill color
)
{
uint16_t y = ra;
int16_t E = -1 - ra / 4;
disp->vline(cx, cy - y, 2*y + 1, color);
for (uint16_t x = 1; x <= ra; ++x)
{
E += 2*x - 1;
while (E > 0) {
E -= 2*y - 1;
--y;
}
disp->vline(cx + x, cy - y, 2*y + 1, color);
disp->vline(cx - x, cy - y, 2*y + 1, color);
}
}
static void draw_circle_segments(
class RGB16DisplayAdaptor* disp,
uint16_t x0, uint16_t y0,
uint16_t x1, uint16_t y1,
uint16_t ra, // radius
uint16_t color // fill color
)
{
uint16_t y = ra;
int16_t E = -1 - ra / 4;
for (uint16_t x = 1; x <= ra; ++x)
{
E += 2*x - 1;
while (E > 0) {
E -= 2*y - 1;
--y;
}
disp->vline(x1 + x, y0 - y, y, color);
disp->vline(x0 - x, y0 - y, y, color);
disp->vline(x1 + x, y1 + 1, y, color);
disp->vline(x0 - x, y1 + 1, y, color);
}
}
void draw_circle_thin(
class RGB16DisplayAdaptor* disp,
uint16_t cx, uint16_t cy, // center
uint16_t ra, // radius
uint16_t color // border color
)
{
uint16_t y = ra, last_y = ra;
int16_t E = -1 - ra / 4;
uint16_t l, r, u, d, len;
for (uint16_t x = 1; x <= ra; ++x)
{
E += 2*x - 1;
while (E > 0) {
E -= 2*y - 1;
--y;
}
len = last_y - y;
if (!len) len = 1;
l = cx - x + 1;
r = cx + x - 1;
u = cy - last_y;
d = cy + last_y - len + 1;
disp->vline(l, u, len, color);
disp->vline(l, d, len, color);
disp->vline(r, u, len, color);
disp->vline(r, d, len, color);
last_y = y;
}
u = cy - y;
len = 2*y + 1;
disp->vline(cx + ra, u, len, color);
disp->vline(cx - ra, u, len, color);
}
void draw_circle_thick(
class RGB16DisplayAdaptor* disp,
uint16_t cx, uint16_t cy, // center
uint16_t ra, // radius
uint16_t b, // border thickness
uint16_t color // border color
)
{
uint16_t y = ra;
int16_t yi = ra - b;
int16_t E = -1 - ra / 4;
int16_t Ei = -yi / 4;
uint16_t l, r, u, d, len;
disp->vline(cx, cy - ra, b, color);
disp->vline(cx, cy + ra - b + 1, b, color);
for (uint16_t x = 1; x <= ra; ++x)
{
E += 2*x - 1;
Ei += 2*x - 1;
while (E > 0) {
E -= 2*y - 1;
--y;
}
while (Ei > 0 && yi >= 0) {
Ei -= 2*yi - 1;
--yi;
}
l = cx - x;
r = cx + x;
if (yi >= 0) {
len = y - yi;
u = cy - y;
d = cy + y - len + 1;
disp->vline(l, u, len, color);
disp->vline(l, d, len, color);
disp->vline(r, u, len, color);
disp->vline(r, d, len, color);
} else {
len = 2*y + 1;
u = cy - y;
disp->vline(l, u, len, color);
disp->vline(r, u, len, color);
}
}
}
void draw_circle(
class RGB16DisplayAdaptor* disp,
uint16_t cx, uint16_t cy, // center
uint16_t ra, // radius
uint16_t b, // border thickness, 0 means completely filled
uint16_t color // border color
)
{
if (!b || b > ra) {
draw_circle_filled(disp, cx, cy, ra, color);
} else if (b == 1) {
draw_circle_thin(disp, cx, cy, ra, color);
} else {
draw_circle_thick(disp, cx, cy, ra, b, color);
}
}
void draw_rect(
class RGB16DisplayAdaptor* disp,
uint16_t x0, uint16_t y0, // top left corner
uint16_t x1, uint16_t y1, // bottom right corner
uint16_t b, // border thickness, 0 means completely filled
uint16_t color // color
)
{
if (!b || b > x1 - x0 || b > y1 - y0) {
disp->fill_rect(x0, y0, x1, y1, color);
} else {
uint16_t b_ = b - 1;
disp->fill_rect(x0, y0, x1, y0 + b_, color);
disp->fill_rect(x0, y0, x0 + b_, y1, color);
disp->fill_rect(x1 - b_, y0, x1, y1, color);
disp->fill_rect(x0, y1 - b_, x1, y1, color);
}
}
void draw_rect_rounded(
class RGB16DisplayAdaptor* disp,
uint16_t x0, uint16_t y0, // top left corner
uint16_t x1, uint16_t y1, // bottom right corner
uint16_t ra, // the corner radius
uint16_t color // fill color
)
{
if (!ra) {
disp->fill_rect(x0, y0, x1, y1, color);
} else {
if (2*ra > x1 - x0) {
ra = (x1 - x0) / 2;
} else if (2*ra > y1 - y0) {
ra = (y1 - y0) / 2;
}
uint16_t ra_ = ra - 1;
disp->fill_rect(x0, y0 + ra, x1, y1 - ra, color);
disp->fill_rect(x0 + ra, y0, x1 - ra, y0 + ra_, color);
disp->fill_rect(x0 + ra, y1 - ra_, x1 - ra, y1, color);
draw_circle_segments(disp, x0 + ra, y0 + ra, x1 - ra, y1 - ra, ra, color);
}
}