home · contact · privacy
TCE: Add drinking, bladder.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 9 Mar 2016 21:57:04 +0000 (22:57 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 9 Mar 2016 21:57:04 +0000 (22:57 +0100)
confserver/TheCrawlingEater
plugins/client/TheCrawlingEater.py
plugins/server/TheCrawlingEater.py

index 0bd3cccca3adf17c7ae57607a27b2bd4978d9c26..60b33bf8996a985c6c28becd20a7f543edf3efa7 100644 (file)
@@ -12,6 +12,9 @@ TA_NAME move
 TA_ID 3
 TA_NAME drop
 
+TA_ID 4
+TA_NAME drink
+
 TT_ID 0
 TT_START_NUMBER 1
 TT_LIFEPOINTS 1
index 106fc5be707ef66ae44e4e5bc6fba096edee31e7..6996daf1ef4d25bfe611984c33cb2e4bc665bf25 100644 (file)
@@ -3,6 +3,16 @@
 # see the file NOTICE in the root directory of the PlomRogue source package.
 
 
+def win_bladder(self):
+    winmap = []
+    curses.init_pair(79, curses.COLOR_WHITE, curses.COLOR_BLUE)
+    for i in range(world_data["bladder"]):
+        winmap += [("~", curses.color_pair(79))]
+    winmap_size = [1, len(winmap)]
+    offset = [0, 0]
+    return offset, winmap_size, winmap
+
+
 def win_stomach(self):
     winmap = []
     curses.init_pair(80, curses.COLOR_YELLOW, curses.COLOR_RED)
@@ -85,17 +95,21 @@ def win_map(self):
 
 from client.config.world_data import world_data
 world_data["stomach"] = 0
+world_data["bladder"] = 0
 from client.config.io import io
 io["worldstate_read_order"] += [["stomach", "int"]]
+io["worldstate_read_order"] += [["bladder", "int"]]
 from client.config.windows import windows_config
 from client.windows import win_log
 windows_config[:] = [
     {"config": [0, -34], "func": win_map, "title": "The Crawling Eater"},
     {"config": [1, 33], "func": win_stomach, "title": "stomach"},
-    {"config": [-2, 33], "func": win_log, "title": "log"}
+    {"config": [1, 33], "func": win_bladder, "title": "bladder"},
+    {"config": [-4, 33], "func": win_log, "title": "log"}
 ]
 from client.window_management import set_windows
 set_windows()
 from client.commands import command_sender
 from client.config.commands import commands
-commands["D"] = (command_sender("drop"),)
+commands["S"] = (command_sender("drop"),)
+commands["D"] = (command_sender("drink"),)
index 355b025c846a441613b6520efc9b37679bddd242..04d36d5f8a553c5ef52a13f5bf8ac9ab96e56468 100644 (file)
@@ -6,6 +6,20 @@
 from server.config.world_data import world_db
 
 
+def play_drink():
+    if action_exists("drink") and world_db["WORLD_ACTIVE"]:
+        if ord("~") != world_db["MAP"][world_db["Things"][0]["pos"]]:
+            log("Nothing to drink here.")
+            return
+        world_db["set_command"]("drink")
+
+
+def actor_drink(t):
+    if ord("~") == world_db["MAP"][world_db["Things"][0]["pos"]]:
+        log("You DRINK.")
+        t["T_BLADDER"] += 1
+
+
 def play_drop():
     if action_exists("drop") and world_db["WORLD_ACTIVE"]:
         if world_db["Things"][0]["T_STOMACH"] < 1:
@@ -223,10 +237,12 @@ def play_wait():
 
 from server.config.io import io_db
 io_db["worldstate_write_order"] += [["T_STOMACH", "player_int"]]
+io_db["worldstate_write_order"] += [["T_BLADDER", "player_int"]]
 import server.config.world_data
 server.config.world_data.symbols_hide = "%#X"
-server.config.world_data.symbols_passable = "_.:"
+server.config.world_data.symbols_passable = "_.:~"
 server.config.world_data.thing_defaults["T_STOMACH"] = 0
+server.config.world_data.thing_defaults["T_BLADDER"] = 0
 import server.config.make_world_helpers
 server.config.make_world_helpers.make_map = make_map
 from server.config.commands import commands_db
@@ -235,15 +251,18 @@ commands_db["ai"] = (0, False, command_ai)
 commands_db["move"] = (1, False, play_move)
 commands_db["wait"] = (0, False, play_wait)
 commands_db["drop"] = (0, False, play_drop)
+commands_db["drink"] = (0, False, play_drink)
 commands_db["use"] = (1, False, lambda x: None)
 commands_db["pickup"] = (0, False, lambda: None)
 commands_db["T_STOMACH"] = (1, False, setter("Thing", "T_STOMACH", 0, 255))
+commands_db["T_BLADDER"] = (1, False, setter("Thing", "T_BLADDER", 0, 255))
 from server.actions import actor_wait
 import server.config.actions
 server.config.actions.action_db = {
     "actor_wait": actor_wait,
     "actor_move": actor_move,
-    "actor_drop": actor_drop
+    "actor_drop": actor_drop,
+    "actor_drink": actor_drink,
 }
 
 strong_write(io_db["file_out"], "PLUGIN TheCrawlingEater\n")