X-Git-Url: https://plomlompom.com/repos/test.html?a=blobdiff_plain;f=roguelike.h;h=668d52ca8f1cecf6f1eea2c337a17cde0d63d253;hb=cff3e45e2913b44b88bb75ed10a4931a224a943e;hp=da80489859921bee7795925f798573a15e7ced02;hpb=28319f97a6f827f5c8ca79ed7d5eb95f22c2cb98;p=plomrogue diff --git a/roguelike.h b/roguelike.h index da80489..668d52c 100644 --- a/roguelike.h +++ b/roguelike.h @@ -1,26 +1,26 @@ struct World { struct KeyBinding * keybindings; struct KeysWinData * keyswindata; - int turn; + uint16_t turn; char * log; struct Map * map; struct Monster * monster; struct Player * player; }; struct Map { - int width; - int height; - int offset_x; - int offset_y; + uint16_t width; + uint16_t height; + uint16_t offset_x; + uint16_t offset_y; char * cells; }; struct Player { - int y; - int x; }; + uint16_t y; + uint16_t x; }; struct Monster { - int y; - int x; }; + uint16_t y; + uint16_t x; }; void toggle_window (struct WinMeta *, struct Win *); void growshrink_active_window (struct WinMeta *, char); @@ -28,6 +28,6 @@ struct Map init_map (); void map_scroll (struct Map *, char); void next_turn (struct World *); void update_log (struct World *, char *); -char is_passable (struct World *, int, int); +char is_passable (struct World *, uint16_t, uint16_t); void move_player (struct World *, char); void player_wait(struct World *);