home · contact · privacy
Server: Add terrain description to things_here command.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 24 Feb 2016 21:45:30 +0000 (22:45 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 24 Feb 2016 21:45:30 +0000 (22:45 +0100)
server/commands.py
server/config/world_data.py

index 3717202e38354c7b38eb585ac2d948870dae5b69..d002ab3210b35100c2b63cb2784251f2abefc2ca 100644 (file)
@@ -49,6 +49,9 @@ def command_thingshere(str_y, str_x):
         if None != y and None != x and y < length and x < length:
             pos = (y * world_db["MAP_LENGTH"]) + x
             strong_write(io_db["file_out"], "THINGS_HERE START\n")
+            terrain = chr(world_db["Things"][0]["T_MEMMAP"][pos])
+            terrain_name = world_db["terrain_names"][terrain]
+            strong_write(io_db["file_out"], "terrain: " + terrain_name + "\n")
             if "v" == chr(world_db["Things"][0]["fovmap"][pos]):
                 for id in [id for tid in sorted(list(world_db["ThingTypes"]))
                               for id in world_db["Things"]
index 97725a3a1fe2f157d9543d33682b0f0cef4041b0..ec1e9b15c7d52a24c88b1c99e2a59dec32296a9e 100644 (file)
@@ -13,7 +13,13 @@ world_db = {
     "PLUGIN": [],
     "ThingActions": {},
     "ThingTypes": {},
-    "Things": {}
+    "Things": {},
+    "terrain_names": {
+        " ": "UNKNOWN",
+        "X": "TREE",
+        "~": "SEA",
+        ".": "EARTH"
+    }
 }
 
 """Mapping of direction names to internal direction chars."""