X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=client%2Fconfig%2Fio.py;h=45021f307e9524b8f6f0866c0e6fad020bdc0d39;hb=HEAD;hp=34dcd05e6132c288e2fa8904ced20a5c98c268e3;hpb=3d4ef72a869787ade399af85a42ab0aef9d73766;p=plomrogue diff --git a/client/config/io.py b/client/config/io.py index 34dcd05..45021f3 100644 --- a/client/config/io.py +++ b/client/config/io.py @@ -1,5 +1,20 @@ +# 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. + + io = { - "path_out": "server/in", - "path_in": "server/out", - "path_worldstate": "server/worldstate" + "path_out": "server_run/in", + "path_in": "server_run/out", + "path_worldstate": "server_run/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"] + ] }