-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.h
28 lines (25 loc) · 1.24 KB
/
config.h
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
#ifndef CONFIG_H
#define CONFIG_H
//颜色设置
#define CANVAS_BG_COLOR 44 //底层画布背景色(蓝色)
#define INFOBROAD_BG_COLOR 42 //信息展览板背景色(绿色)
#define TXTBTN_BG_COLOR 46 //信息现实模块背景色(青色)
#define TXTBTN_TITLE_COLOR 34 //信息显示模块标题前景色(蓝色)
#define TXTBTN_CONTENT_COLOR 33 //信息显示模块内容前景色(黄色)
#define MAZEMAP_BG_COLOR 47 //迷宫地图背景色(白色)
#define MAZEMAP_WALL_COLOR 43 //迷宫地图墙的颜色(黄色)
#define MAZEMAP_ROAD_COLOR 42 //迷宫地图路的颜色(绿色)
#define PERSON_BG_COLOR 42 //人的背景色(与迷宫路颜色一致)
#define PERSON_FT_COLOR 31 //人的前景色(红色)
//尺寸设置
#define CANVAS_WIDTH 49 //底层画布宽
#define CANVAS_HEIGHT 20 //底层画布高
#define MAZEMAP_BG_WIDTH 32 //迷宫地图背景宽
#define MAZEMAP_BG_HEIGHT 18 //迷宫地图背景高
#define MAZEMAP_WIDTH 32 //迷宫地图宽
#define MAZEMAP_HEIGHT 18 //迷宫地图高
#define INFOBROAD_BG_WIDTH 14 //信息展览板背景宽
#define INFOBROAD_BG_HEIGHT 18 //信息展览板背景高
#define TXTBTN_WIDTH 12 //信息显示模块宽
#define TXTBTN_HEIGHT 1 //信息显示模块高
#endif