1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  *
21  */
22 
23 #ifndef ULTIMA8_MISC_DIRECTION_H
24 #define ULTIMA8_MISC_DIRECTION_H
25 
26 namespace Ultima {
27 namespace Ultima8 {
28 
29 /*
30  *  Directions:
31  */
32 enum Direction {
33 	dir_north = 0,
34 	dir_nne = 1,
35 	dir_northeast = 2,
36 	dir_ene = 3,
37 	dir_east = 4,
38 	dir_ese = 5,
39 	dir_southeast = 6,
40 	dir_sse = 7,
41 	dir_south = 8,
42 	dir_ssw = 9,
43 	dir_southwest = 10,
44 	dir_wsw = 11,
45 	dir_west = 12,
46 	dir_wnw = 13,
47 	dir_northwest = 14,
48 	dir_nnw = 15,
49 	dir_current = 16,
50 	dir_invalid = 100
51 };
52 
53 enum DirectionMode {
54 	dirmode_8dirs,
55 	dirmode_16dirs
56 };
57 
58 } // End of namespace Ultima8
59 } // End of namespace Ultima
60 
61 #endif
62