summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2018-12-31 16:35:48 -0800
committerVito Caputo <vcaputo@pengaru.com>2018-12-31 16:35:48 -0800
commit6a643daad79440988845f9242acf50055fa17c52 (patch)
treea38fbf6aa2ecdd6f8397979ba87fb581e4b1d8a4 /src
parent3b9deff98e7bb49fdc56e0fc0aa428fc25fe9044 (diff)
libs/grid: fix grid_ops_t.taken player type
Just making things consistent, also dropping unnecessary player assert from submit module. Future libs/grid may explore using the "unassigned" zero player in taken calls for unassigning cells like in simultaneously taken collision scenarios.
Diffstat (limited to 'src')
-rw-r--r--src/libs/grid/grid.h2
-rw-r--r--src/modules/submit/submit.c5
2 files changed, 2 insertions, 5 deletions
diff --git a/src/libs/grid/grid.h b/src/libs/grid/grid.h
index e17989f..3dae534 100644
--- a/src/libs/grid/grid.h
+++ b/src/libs/grid/grid.h
@@ -35,7 +35,7 @@ typedef struct grid_ops_t {
void (*planned)(void *ctx, uint32_t move); /* the specified move has been planned */
void (*executed)(void *ctx, uint32_t move, grid_ops_move_result_t result);/* the specified move has been executed, removed from plan */
void (*canceled)(void *ctx, uint32_t move); /* the specified move has been canceled, removed from plan */
- void (*taken)(void *ctx, uint32_t x, uint32_t y, unsigned player); /* the specified cell has been taken by the specified player */
+ void (*taken)(void *ctx, uint32_t x, uint32_t y, uint32_t player); /* the specified cell has been taken by the specified player */
void (*won)(void *ctx, uint32_t player); /* the game has been won by the specified player */
} grid_ops_t;
diff --git a/src/modules/submit/submit.c b/src/modules/submit/submit.c
index 9f26dc8..18886d8 100644
--- a/src/modules/submit/submit.c
+++ b/src/modules/submit/submit.c
@@ -14,7 +14,6 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
@@ -75,12 +74,10 @@ static void draw_grid(submit_context_t *ctxt, fb_fragment_t *fragment)
}
-static void taken(void *ctx, uint32_t x, uint32_t y, unsigned player)
+static void taken(void *ctx, uint32_t x, uint32_t y, uint32_t player)
{
submit_context_t *c = ctx;
- assert(player);
-
c->cells[y * GRID_SIZE + x] = player;
}
© All Rights Reserved