1 /*
2  * XPilot NG, a multiplayer space war game.
3  *
4  * Copyright (C) 2005 Kristian S�derblom <kps@users.sourceforge.net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20 
21 #ifndef XPMAP_H
22 #define XPMAP_H
23 
24 #define XPMAP_SPACE			' '
25 #define XPMAP_SPACE_ALT			'.'
26 #define XPMAP_BASE			'_'
27 #define XPMAP_BASE_TEAM_0		'0'
28 #define XPMAP_BASE_TEAM_1		'1'
29 #define XPMAP_BASE_TEAM_2		'2'
30 #define XPMAP_BASE_TEAM_3		'3'
31 #define XPMAP_BASE_TEAM_4		'4'
32 #define XPMAP_BASE_TEAM_5		'5'
33 #define XPMAP_BASE_TEAM_6		'6'
34 #define XPMAP_BASE_TEAM_7		'7'
35 #define XPMAP_BASE_TEAM_8		'8'
36 #define XPMAP_BASE_TEAM_9		'9'
37 #define XPMAP_BASE_ATTRACTOR		'$'
38 #define XPMAP_FILLED			'x'
39 #define XPMAP_REC_LU			's'
40 #define XPMAP_REC_LD			'w'
41 #define XPMAP_REC_RU			'a'
42 #define XPMAP_REC_RD			'q'
43 #define XPMAP_FUEL			'#'
44 #define XPMAP_CANNON_UP			'r'
45 #define XPMAP_CANNON_LEFT		'd'
46 #define XPMAP_CANNON_RIGHT		'f'
47 #define XPMAP_CANNON_DOWN		'c'
48 #define XPMAP_POS_GRAV			'+'
49 #define XPMAP_NEG_GRAV			'-'
50 #define XPMAP_CWISE_GRAV		'>'
51 #define XPMAP_ACWISE_GRAV		'<'
52 #define XPMAP_UP_GRAV			'i'
53 #define XPMAP_DOWN_GRAV			'm'
54 #define XPMAP_RIGHT_GRAV		'k'
55 #define XPMAP_LEFT_GRAV			'j'
56 #define XPMAP_WORMHOLE_NORMAL		'@'
57 #define XPMAP_WORMHOLE_IN		'('
58 #define XPMAP_WORMHOLE_OUT		')'
59 #define XPMAP_TREASURE			'*'
60 #define XPMAP_EMPTY_TREASURE		'^'
61 #define XPMAP_TARGET			'!'
62 #define XPMAP_ITEM_CONCENTRATOR		'%'
63 #define XPMAP_ASTEROID_CONCENTRATOR	'&'
64 #define XPMAP_DECOR_FILLED		'b'
65 #define XPMAP_DECOR_LU			'h'
66 #define XPMAP_DECOR_LD			'y'
67 #define XPMAP_DECOR_RU			'g'
68 #define XPMAP_DECOR_RD			't'
69 #define XPMAP_FRICTION_AREA		'z'
70 #define XPMAP_CHECK_0			'A'
71 #define XPMAP_CHECK_1			'B'
72 #define XPMAP_CHECK_2			'C'
73 #define XPMAP_CHECK_3			'D'
74 #define XPMAP_CHECK_4			'E'
75 #define XPMAP_CHECK_5			'F'
76 #define XPMAP_CHECK_6			'G'
77 #define XPMAP_CHECK_7			'H'
78 #define XPMAP_CHECK_8			'I'
79 #define XPMAP_CHECK_9			'J'
80 #define XPMAP_CHECK_10			'K'
81 #define XPMAP_CHECK_11			'L'
82 #define XPMAP_CHECK_12			'M'
83 #define XPMAP_CHECK_13			'N'
84 #define XPMAP_CHECK_14			'O'
85 #define XPMAP_CHECK_15			'P'
86 #define XPMAP_CHECK_16			'Q'
87 #define XPMAP_CHECK_17			'R'
88 #define XPMAP_CHECK_18			'S'
89 #define XPMAP_CHECK_19			'T'
90 #define XPMAP_CHECK_20			'U'
91 #define XPMAP_CHECK_21			'V'
92 #define XPMAP_CHECK_22			'W'
93 #define XPMAP_CHECK_23			'X'
94 #define XPMAP_CHECK_24			'Y'
95 #define XPMAP_CHECK_25			'Z'
96 
97 #endif
98