about summary refs log tree commit diff homepage
path: root/server.c
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2017-07-31 00:22:07 -0400
committerJune McEnroe <programble@gmail.com>2017-07-31 00:22:07 -0400
commit306b27986ce6b51499d7db83009f51093a516901 (patch)
tree638d72a9745282426e2b974ae727c2b19b95a1c1 /server.c
parentOptimize builds for chroot (diff)
downloadtorus-306b27986ce6b51499d7db83009f51093a516901.tar.gz
torus-306b27986ce6b51499d7db83009f51093a516901.zip
Handle large moves
Diffstat (limited to '')
-rwxr-xr-xserver.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/server.c b/server.c
index 8892d2d..cea66c1 100755
--- a/server.c
+++ b/server.c
@@ -129,13 +129,17 @@ static bool clientCast(struct Client *origin, const struct ServerMessage *msg) {
     return success;
 }
 
-static bool clientMove(struct Client *client, int8_t dx, uint8_t dy) {
+static bool clientMove(struct Client *client, int8_t dx, int8_t dy) {
     struct Client old = *client;
 
+    if (dx > CELL_COLS - client->cellX) dx = CELL_COLS - client->cellX;
+    if (dx < -client->cellX - 1)        dx = -client->cellX - 1;
+    if (dy > CELL_ROWS - client->cellY) dy = CELL_ROWS - client->cellY;
+    if (dy < -client->cellY - 1)        dy = -client->cellY - 1;
+
     client->cellX += dx;
     client->cellY += dy;
 
-    // TODO: Handle moves greater than 1 in either direction.
     if (client->cellX == CELL_COLS) { client->tileX++; client->cellX = 0; }
     if (client->cellX == UINT8_MAX) { client->tileX--; client->cellX = CELL_COLS - 1; }
     if (client->cellY == CELL_ROWS) { client->tileY++; client->cellY = 0; }