home · contact · privacy
Made single World struct a global variable, fitted a lot of code to this change,...
[plomrogue] / src / yx_uint16.h
1 /* yx_uint16.h
2  *
3  * Structs and routines for coordinates and movement in 2-dimensional space
4  * (such as the ncurses screen and game maps).
5  */
6
7 #ifndef YX_UINT16_H
8 #define YX_UINT16_H
9
10 #include <stdint.h> /* for uint8_t, uint16_t */
11
12
13
14 /* Coordinates for maps of max. 65536x65536 cells. */
15 struct yx_uint16
16 {
17     uint16_t y;
18     uint16_t x;
19 };
20
21
22
23 /* Directions available for movement. */
24 enum dir
25 {
26     NORTH = 1,
27     EAST,
28     SOUTH,
29     WEST
30 };
31
32
33
34 /* Return 1 if two yx_uint16 coordinates at "a" and "b" are equal, else 0. */
35 extern uint8_t yx_uint16_cmp(struct yx_uint16 * a, struct yx_uint16 * b);
36
37
38
39 /* Return yx_uint16 coordinate one step from coordinate yx in direction dir.
40  *
41  * If an invalid dir "d" is passed, "yx" remains unchanged.
42  */
43 extern struct yx_uint16 mv_yx_in_dir(enum dir d, struct yx_uint16 yx);
44
45
46
47 #endif