home · contact · privacy
Added a gameplay recording system and restructured everything to make it fit in.
[plomrogue] / roguelike.h
index 0d0ce86ab385b91f8237397f099131681a995817..26ca0a443d4b3da16943fe5283d91f051f6d347c 100644 (file)
@@ -1,4 +1,5 @@
 struct World {
+  char interactive;
   struct KeyBinding * keybindings;
   struct KeysWinData * keyswindata;
   uint32_t seed;
@@ -37,5 +38,8 @@ void map_scroll (struct Map *, char);
 void next_turn (struct World *);
 void update_log (struct World *, char *);
 char is_passable (struct World *, uint16_t, uint16_t);
+void record_action (char);
 void move_player (struct World *, char);
 void player_wait(struct World *);
+void startpos(struct World *);
+unsigned char meta_keys(int, struct World *, struct WinMeta *, struct Win *, struct Win *, struct Win *, struct Win *);