home · contact · privacy
Client: Make worldstate file data reading order configurable.
[plomrogue] / client / config / io.py
index 34dcd05e6132c288e2fa8904ced20a5c98c268e3..ecf283d760eac4550307eb9a734b8cb130264f67 100644 (file)
@@ -1,5 +1,15 @@
 io = {
     "path_out": "server/in",
     "path_in": "server/out",
-    "path_worldstate": "server/worldstate"
+    "path_worldstate": "server/worldstate",
+    "worldstate_read_order": [
+        ["lifepoints", "int"],
+        ["satiation", "int"],
+        ["inventory", "lines"],
+        ["avatar_position", "int", 0],
+        ["avatar_position", "int", 1],
+        ["map_size", "int"],
+        ["fov_map", "map"],
+        ["mem_map", "map"]
+    ]
 }