about summary refs log tree commit diff homepage
path: root/torus.h
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-08-29 18:33:59 -0400
committerJune McEnroe <programble@gmail.com>2017-08-29 18:33:59 -0400
commit931289b9c11fbf1ba61442f83b3199e44bebaaf2 (patch)
tree277a960369d79e64a0b783b22b52c51220d2587a /torus.h
parentAdd respawning (diff)
downloadtorus-931289b9c11fbf1ba61442f83b3199e44bebaaf2.tar.gz
torus-931289b9c11fbf1ba61442f83b3199e44bebaaf2.zip
Add four additional spawns
Diffstat (limited to '')
-rw-r--r--torus.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/torus.h b/torus.h
index b03a1db..e337557 100644
--- a/torus.h
+++ b/torus.h
@@ -58,8 +58,18 @@ static_assert(offsetof(struct Tile, colors) == 2016, "stable colors offset");
 #define TILE_COLS (512)
 #define TILES_SIZE (sizeof(struct Tile[TILE_ROWS][TILE_COLS]))
 
-#define TILE_INIT_X (0)
-#define TILE_INIT_Y (0)
+static const struct {
+    uint32_t tileX;
+    uint32_t tileY;
+} SPAWN[] = {
+    { 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]))
 
 enum ServerMessageType {
     SERVER_TILE,
@@ -109,5 +119,8 @@ struct ClientMessage {
             uint8_t color;
             char cell;
         } p;
+        struct {
+            uint8_t spawn;
+        } s;
     } data;
 };