home · contact · privacy
1463c5ff1e37cb494099610aeee6a907853c2516
[plomrogue] / src / server / yx_uint8.h
1 /* src/server/yx_uint8.h
2  *
3  * Routines for comparison and movement with yx_uint8 structs.
4  */
5
6 #ifndef YX_UINT8_H_SERVER
7 #define YX_UINT8_H_SERVER
8
9 #include <stdint.h> /* uint8_t */
10 #include "../common/yx_uint8.h" /* yx_uint8 struct */
11
12
13
14 /* Return 1 if two yx_uint8 coordinates at "a" and "b" are equal, else 0. */
15 extern uint8_t yx_uint8_cmp(struct yx_uint8 * a, struct yx_uint8 * b);
16
17 /* Return yx_uint8 coordinate one step from "yx" in direction "dir" (numpad
18  * digits: north '8', east: '6', etc.) If "dir" is invalid or would wrap the
19  * move around the edge of a 2^16x2^16 cells field, "yx" remains unchanged.
20  */
21 extern struct yx_uint8 mv_yx_in_dir(char dir, struct yx_uint8 yx);
22
23
24
25 #endif