diff options
author | June McEnroe <june@causal.agency> | 2017-07-31 00:22:07 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-07-31 00:22:07 -0400 |
commit | ca448f3dc88b8737e641cb9019664695eab80e51 (patch) | |
tree | 8df60f0f86c900b541cb78e110e7a7b797b6dd59 /server.c | |
parent | Optimize builds for chroot (diff) | |
download | torus-ca448f3dc88b8737e641cb9019664695eab80e51.tar.gz torus-ca448f3dc88b8737e641cb9019664695eab80e51.zip |
Handle large moves
Diffstat (limited to '')
-rwxr-xr-x | server.c | 8 |
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; } |