-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhgui_gui_xpm.c
301 lines (286 loc) · 7.11 KB
/
hgui_gui_xpm.c
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/***************************************************************
* Name: hgui_gui_xpm.c
* Purpose: 实现xpm接口
* Author: HYH (hyhsystem.cn)
* Created: 2024-11-30
* Copyright: HYH (hyhsystem.cn)
* License: MIT
**************************************************************/
#include "hgui_gui_xpm.h"
/**
* 本组件支持的XPM格式,注意:标准的XPM格式变量定义为static char* <variable_name>[],会占用过多的内存空间不利于嵌入式使用。
*const char* const <variable_name>[] = {
*<Values>
*<Colors>
*<Pixels>
*<Extensions>
*};
*/
/*
* 获取一行里以空格分割的相应字段
*/
static const char *parse_line(const char *line,size_t i,size_t *len)
{
if(line==NULL)
{
return line;
}
while(i-- > 0)
{
size_t len=0;
line=parse_line(line,0,&len);
line+=len;
}
if(line==NULL || line[0] == '\0')
{
return line;
}
while((*line)!='\0')
{
if((*line)==' ')
{
line++;
}
else
{
break;
}
}
if(len!=NULL)
{
size_t i=0;
while(((*(line+i))!='\0') && ((*(line+i))!=' '))
{
i++;
}
(*len)=i;
}
return line;
}
static size_t dec_string_to_number(const char *number_string,size_t len)
{
size_t number=0;
if(number_string!=NULL)
{
size_t start=0;
while((number_string[start]!='\0') && (start<len))
{
if((number_string[start]<'0') || (number_string[start] >'9'))
{
start++;
}
else
{
break;
}
}
size_t end=start;
while((number_string[end]!='\0') && (end<=len))
{
if((number_string[end]<'0') || (number_string[end] >'9'))
{
break;
}
else
{
end++;
}
}
for(size_t i=start; i<end; i++)
{
number*=10;
number+=(number_string[i]-'0');
}
}
return number;
}
/**
* 格式:<width> <height> <ncolors> <cpp> [<x_hotspot> <y_hotspot>] [XPMEXT]
*/
hgui_gui_xpm_header_t hgui_gui_xpm_header_get(const char *const *xpm)
{
hgui_gui_xpm_header_t header= {0};
if(xpm!=NULL && xpm[0]!=NULL)
{
const char *line=xpm[0];
{
size_t len=0;
const char *string=parse_line(line,0,&len);
header.width=dec_string_to_number(string,len);
}
{
size_t len=0;
const char *string=parse_line(line,1,&len);
header.height=dec_string_to_number(string,len);
}
{
size_t len=0;
const char *string=parse_line(line,2,&len);
header.ncolors=dec_string_to_number(string,len);
}
{
size_t len=0;
const char *string=parse_line(line,3,&len);
header.cpp=dec_string_to_number(string,len);
}
{
size_t len=0;
const char *string=parse_line(line,4,&len);
if(string!=NULL && string[0]=='\0')
{
if(string[0]=='X' || string[0]=='x' )
{
header.XPMEXT=true;
}
else
{
header.x_hotspot=dec_string_to_number(string,len);
string=parse_line(line,5,&len);
header.y_hotspot=dec_string_to_number(string,len);
string=parse_line(line,6,&len);
if(string!=NULL && string[0]=='\0')
{
if(string[0]=='X' || string[0]=='x' )
{
header.XPMEXT=true;
}
}
}
}
}
}
return header;
}
const char *hgui_gui_xpm_pixel_color_get(const char *const *xpm,size_t x,size_t y)
{
hgui_gui_xpm_header_t header=hgui_gui_xpm_header_get(xpm);
if(x<header.width && y<header.height && header.cpp!=0)
{
//像素点
const char *pixel=&xpm[1+header.ncolors+y][header.cpp*x];
for(const char *const*color=&xpm[1]; color!=&xpm[1+header.ncolors]; color++)
{
const char *color_string=(*color);
bool is_match=true;
for(size_t i=0; i<header.cpp; i++)
{
if(color_string[i]!=pixel[i])
{
is_match=false;
break;
}
}
if(is_match)
{
return &color_string[header.cpp];
}
}
}
return NULL;
}
static bool is_hex(char c)
{
return ((c>='0') && (c<='9')) || ((c>='a') && (c<='f')) || ((c>='A') && (c<='F'));
}
static uint8_t hex_to_number(char c)
{
if((c>='0') && (c<='9'))
{
return c-'0';
}
if((c>='a') && (c<='f'))
{
return c-'a'+10;
}
if((c>='A') && (c<='F'))
{
return c-'A'+10;
}
return 0;
}
static size_t hex_string_to_number(const char *number_string,size_t len)
{
size_t number=0;
if(number_string!=NULL)
{
size_t start=0;
while((number_string[start]!='\0') && (start<len))
{
if(!is_hex(number_string[start]))
{
start++;
}
else
{
break;
}
}
size_t end=start;
while((number_string[end]!='\0') && (end<=len))
{
if(!is_hex(number_string[end]))
{
break;
}
else
{
end++;
}
}
for(size_t i=start; i<end; i++)
{
number*=16;
number+= hex_to_number(number_string[i]);
}
}
return number;
}
static uint32_t decode_color_string(const char *color_string)
{
uint32_t ret=0;
{
size_t i=0;
while(true)
{
size_t len=0;
const char *string=parse_line(color_string,i,&len);
if(string==NULL || string[0]=='\0')
{
break;
}
if(string[0]=='#')
{
ret=hex_string_to_number(string,len);
break;
}
i++;
}
}
return ret;
}
bool hgui_gui_xpm_draw_color(const char *const *xpm,size_t x,size_t y,hgui_gui_xpm_draw_color_pixel_t draw_pixel,void *usr)
{
if(draw_pixel==NULL)
{
return false;
}
hgui_gui_xpm_header_t header=hgui_gui_xpm_header_get(xpm);
for(size_t i=0; i<header.width; i++)
{
for(size_t j=0; j<header.height; j++)
{
const char *color=hgui_gui_xpm_pixel_color_get(xpm,i,j);
if(color==NULL || color[0]=='\0')
{
return false;
}
if(!draw_pixel(x+i,y+j,decode_color_string(color),usr))
{
return false;
}
}
}
return true;
}
//包含一些测试图像
#include "hgui_gui_xpm_xpm.xpm"