From f706a6a0546400cb6a1925f25dc010ffce2afd49 Mon Sep 17 00:00:00 2001 From: tslil Date: Sun, 27 Dec 2020 23:21:44 -0500 Subject: Changed representation, implemented most basic things for tak.h --- src/ctaklm.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/ctaklm.c b/src/ctaklm.c index 8330012..bbf815c 100644 --- a/src/ctaklm.c +++ b/src/ctaklm.c @@ -1,8 +1,18 @@ #include #include + #include int main(int argc, char **argv) { - cell_t x = CELL_EMPTY_VALUE; - printf("Test %d\n",x); + init_game(); + + enum ACTION_RESULT res = try_place(0, 0x0001, STONE_FLAT); + res = try_place(1, 0x0001, STONE_FLAT); + const uint8_t drops[1] = {1}; + res = try_move(1, M_LEFT, 1, drops); + + printf("Result: %d\n",res); + printf("%o %o \n",colours[0],celldat[0]); + + free_game(); } -- cgit v1.3.1