diff options
author | June McEnroe <june@causal.agency> | 2018-03-05 12:55:18 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2018-03-05 12:55:18 -0500 |
commit | e2033ccf64792e0f78363981ffcd56c78c41de9a (patch) | |
tree | 84fa1292ffedbefdb5d749c85b9bbe6e6312af74 /torus.h | |
parent | Rename Tile timestamps {create,modify,access}Time (diff) | |
download | torus-e2033ccf64792e0f78363981ffcd56c78c41de9a.tar.gz torus-e2033ccf64792e0f78363981ffcd56c78c41de9a.zip |
Clean up spawn constants
Diffstat (limited to '')
-rw-r--r-- | torus.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/torus.h b/torus.h index 26395a7..a1a085a 100644 --- a/torus.h +++ b/torus.h @@ -68,18 +68,20 @@ static_assert(2016 == offsetof(struct Tile, colors), "stable colors offset"); #define TILE_COLS (512) #define TILES_SIZE (sizeof(struct Tile[TILE_ROWS][TILE_COLS])) +#define TILE_VOID_X UINT32_MAX +#define TILE_VOID_Y UINT32_MAX + static const struct { uint32_t tileX; uint32_t tileY; -} SPAWN[] = { +} SPAWNS[] = { { 0, 0 }, { TILE_COLS * 3 / 4, TILE_ROWS * 3 / 4 }, // NW { TILE_COLS * 1 / 4, TILE_ROWS * 3 / 4 }, // NE { TILE_COLS * 1 / 4, TILE_ROWS * 1 / 4 }, // SE { TILE_COLS * 3 / 4, TILE_ROWS * 1 / 4 }, // SW }; - -#define SPAWN_COUNT (sizeof(SPAWN) / sizeof(SPAWN[0])) +#define SPAWNS_LEN (sizeof(SPAWNS) / sizeof(SPAWNS[0])) struct ServerMessage { enum PACKED { |