-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgui.c
331 lines (303 loc) · 7.28 KB
/
gui.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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
#include"gui.h"
//---汉字的字库头文件---//
#include"charcode.h"
//---如果要显示图片就添加这个头文件---//
#ifdef PICTURE_SHOW
#include"picture.h"
#endif
/****************************************************************************
*函数名:GUI_Dot
*输 入:x:点的X坐标
* * y:点的Y坐标
* * color:点的颜色
*输 出:
*功 能:给一块3*3像素涂上颜色。
****************************************************************************/
void GUI_Dot(uint x, uint y, uint color)
{
uchar i;
TFT_SetWindow(x - 1, y - 1, x , y ); //单个像素大小,调节这里改变
for(i=0; i<16; i++)
{
TFT_WriteData(color);
}
}
/****************************************************************************
*函数名:GUI_DrowSign
*输 入:x:标记的X坐标;
* * y:标记的Y坐标
* * color:标记的颜色
*输 出:
*功 能:画一个十字的标记
****************************************************************************/
void GUI_DrowSign(uint x, uint y, uint color)
{
uchar i;
TFT_SetWindow(x-3, y, x+3, y);
for(i=0; i<7; i++)
{
TFT_WriteData(color);
}
TFT_SetWindow(x, y-3, x, y+3);
for(i=0; i<7; i++)
{
TFT_WriteData(color);
}
}
///****************************************************************************
//*函数名:GUI_Box
//*输 入: sx, sy, ex, ey, color
//*输 出:
//*功 能:给一个区域涂上颜色。
//****************************************************************************/
//void GUI_Box(uint sx, uint sy, uchar ex, uint ey, uint color)
//{
// uint temp;
// TFT_SetWindow(sx, sy, ex, ey);
// sx = ex - sx + 1;
// sy = ey - sy + 1;
// while (sx--)
// {
// temp = sy;
// while (temp--)
// {
// TFT_WriteColorData(color);
// }
// }
//}
/****************************************************************************
*函数名:GUI_Line
*输 入:xStart:直线的起始X坐标
* * yStart:直线的其实Y坐标
* * xEnd:直线的结束X坐标
* * yEnd:直线的结束Y坐标
* * color:直线的颜色
*输 出:
*功 能:画一条直线
****************************************************************************/
void GUI_Line(uint xStart, uint yStart, uint xEnd, uint yEnd, uint color)
{
uint t;
int xerr = 0, yerr = 0, delta_x, delta_y, distance;
int incx, incy;
uint row, col;
delta_x = xEnd - xStart;//计算坐标增量
delta_y = yEnd - yStart;
col = xStart;
row = yStart;
if (delta_x > 0)
{
incx=1;//设置单步方向
}
else
{
if (delta_x == 0)
{
incx = 0;//垂直线
}
else
{
incx = -1;
delta_x = -delta_x;
}
}
if (delta_y > 0)
{
incy = 1;
}
else
{
if (delta_y == 0)
{
incy = 0;//水平线
}
else
{
incy = -1;
delta_y = -delta_y;
}
}
if (delta_x > delta_y)
{
distance = delta_x;//选取基本增量坐标轴
}
else
{
distance = delta_y;
}
for (t=0; t<=distance+1; t++)
{ //画线输出
GUI_Dot(col, row, color);
xerr += delta_x;
yerr += delta_y;
if(xerr > distance)
{
xerr -= distance;
col += incx;
}
if(yerr > distance)
{
yerr -= distance;
row += incy;
}
}
}
/****************************************************************************
*函数名:GUI_WriteCnChar
*输 入:x:汉字显示的X坐标
* * y:汉字显示的Y坐标
* * cn:要显示的汉字
* * wordColor:文字的颜色
* * backColor:背景颜色
*输 出:
*功 能:写二号楷体汉字
****************************************************************************/
#ifdef CHAR32_SHOW
void GUI_Write32CnChar(uint x, uint y, uchar *cn, uint wordColor, uint backColor)
{
uchar i, j, wordNum;
uint color;
while (*cn != '\0')
{
TFT_SetWindow(x, y, x+31, y+28);
for (wordNum=0; wordNum<20; wordNum++)
{ //wordNum扫描字库的字数
if ((CnChar32x29[wordNum].Index[0]==*cn)
&&(CnChar32x29[wordNum].Index[1]==*(cn+1)))
{
for(i=0; i<116; i++)
{ //MSK的位数
color=CnChar32x29[wordNum].Msk[i];
for(j=0;j<8;j++)
{
if((color&0x80)==0x80)
{
TFT_WriteData(wordColor);
}
else
{
TFT_WriteData(backColor);
}
color<<=1;
}//for(j=0;j<8;j++)结束
}
}
} //for (wordNum=0; wordNum<20; wordNum++)结束
cn += 2;
x += 32;
}
}
#endif
/****************************************************************************
*函数名:GUI_WriteEnChar
*输 入:x:字母显示的X坐标
* * y:字母显示的Y坐标
* * cn:要显示的字母
* * wordColor:文字的颜色
* * backColor:背景颜色
*输 出:
*功 能:写四号字字母
****************************************************************************/
#ifdef CHAR14_SHOW
void GUI_Write14CnChar(uint x,uint y,uchar *cn,uint wordColor,uint backColor)
{
uchar i, j, wordNum;
uint color;
while (*cn != '\0')
{
TFT_SetWindow(x, y, x+23, y+18);
for (wordNum=0; wordNum<20; wordNum++)
{ //wordNum扫描字库的字数
if ((CnChar19x24[wordNum].Index[0]==*cn)
&&(CnChar19x24[wordNum].Index[1]==*(cn+1)))
{
for(i=0; i<57; i++)
{ //MSK的位数
color=CnChar19x24[wordNum].Msk[i];
for(j=0;j<8;j++)
{
if((color&0x80)==0x80)
{
TFT_WriteData(wordColor);
}
else
{
TFT_WriteData(backColor);
}
color<<=1;
}//for(j=0;j<8;j++)结束
}
}
} //for (wordNum=0; wordNum<20; wordNum++)结束
cn += 2;
x += 24;
}
}
#endif
/****************************************************************************
*函数名:GUI_WriteASCII
*输 入:x:字母显示的X坐标
* * y:字母显示的Y坐标
* * cn:要显示的字母
* * wordColor:文字的颜色
* * backColor:背景颜色
*输 出:
*功 能:写16X24的ASCII字符
****************************************************************************/
#ifdef USE_ASCII
void GUI_WriteASCII(uint x, uint y, uchar *p, uint wordColor, uint backColor)
{
uchar j, wordByte,wordNum;
uint color;
while(*p != '\0')
{
wordNum = *p - 32;
TFT_SetWindow(x,y,x+15, y+23);
for (wordByte=0; wordByte<48; wordByte++)
{
color = ASCII16x24[wordNum][wordByte];
for (j=0; j<8; j++)
{
if ((color&0x80) == 0x80)
{
TFT_WriteData(wordColor);
}
else
{
TFT_WriteData(backColor);
}
color <<= 1;
}
}
p++;
x +=16;
}
}
#endif
/****************************************************************************
*函数名:GUI_ShowPicture
*输 入:x:图片显示起始X坐标
* * y:图片显示起始Y坐标
* * wide:图片的宽度
* * high:图片的高度
*输 出:
*功 能:显示一张图片(取自picture.h中的pic[]数组,换图片直接替换掉pic数组就
* * 可以了)
****************************************************************************/
#ifdef PICTURE_SHOW
void GUI_ShowPicture(uint x, uint y, uchar wide, uint high)
{
uint temp = 0, tmp = 0, num = 0;
TFT_SetWindow(x, y, x+wide-1, y+high-1);
num = wide * high * 2;
do
{
temp = pic[tmp + 1];
temp = temp << 8;
temp = temp | pic[tmp];
TFT_WriteData(temp); //逐点显示
tmp += 2;
}
while(tmp < num);
}
#endif