home · contact · privacy
Send log messages through server out file. Includes major refactoring.
[plomrogue] / src / client / world.h
index bf4394a7624fca483be8f3b24c16b66acbb1c38d..047a13dfe6f0894af59343cfbb31d17fe93ba614 100644 (file)
@@ -1,4 +1,8 @@
 /* src/client/world.h
+ *
+ * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
+ * or any later version. For details on its copyright, license, and warranties,
+ * see the file NOTICE in the root directory of the PlomRogue source package.
  *
  * Contains the World struct holding all quasi-global game data together.
  */
@@ -33,6 +37,8 @@ struct World
     char * path_commands; /* path of commands config file */
     char * player_inventory; /* one-item-per-line string list of owned items */
     char * mem_map; /* map cells of player's map memory */
+    char * queue; /* Stores un-processed messages read from the input file. */
+    uint32_t queue_size;/* Length of .queue sequence of \0-terminated strings.*/
     struct yx_uint8 player_pos; /* coordinates of player on map */
     uint16_t turn; /* world/game turn */
     uint8_t halfdelay; /* how long to wait for getch() input in io_loop() */