home · contact · privacy
Server, plugin: Refactor actor_use plugin hooking.
[plomrogue] / plugins / server / PleaseTheIslandGod.py
index e4ca0b3ad1054073cd2ea4f5128a132f6836dfa4..060ed6311a8cd2e01bedf3e43bc0b46735fd5c29 100644 (file)
@@ -65,133 +65,75 @@ def thingprol_plugin_post_create_hook(t):
         log("The Island God SMILES upon a new-born bear baby.")
         world_db["GOD_FAVOR"] += 750
 
-def ai(t):
-    from server.ai import get_dir_to_target, get_inventory_slot_to_consume, \
-        standing_on_food
-    t["T_COMMAND"] = [id for id in world_db["ThingActions"]
-                      if world_db["ThingActions"][id]["TA_NAME"] == "wait"][0]
-    eating = len([id for id in world_db["ThingActions"]
-                  if world_db["ThingActions"][id]["TA_NAME"] == "use"]) > 0
-    picking = len([id for id in world_db["ThingActions"]
-                   if world_db["ThingActions"][id]["TA_NAME"] == "pickup"]) > 0
-    if eating and picking:
-        if get_dir_to_target(t, "f"):
-            return
-        sel = get_inventory_slot_to_consume(t)
-        if -1 != sel:
-            t["T_COMMAND"] = [id for id in world_db["ThingActions"]
-                              if world_db["ThingActions"][id]["TA_NAME"]
-                                 == "use"][0]
-            t["T_ARGUMENT"] = sel
-        elif standing_on_food(t) and (len(t["T_CARRIES"]) <
-                world_db["ThingTypes"][t["T_TYPE"]]["TT_STORAGE"]):
-                t["T_COMMAND"] = [id for id in world_db["ThingActions"]
-                                  if world_db["ThingActions"][id]["TA_NAME"]
-                                  == "pickup"][0]
-        else:
-            going_to_known_food_spot = get_dir_to_target(t, "c")
-            if not going_to_known_food_spot:
-                aiming_for_walking_food = get_dir_to_target(t, "a")
-                if not aiming_for_walking_food:
-                    get_dir_to_target(t, "s")
+def ai_hook_pickup_test(t):
+    return len(t["T_CARRIES"]) < \
+        world_db["ThingTypes"][t["T_TYPE"]]["TT_STORAGE"]
 
 def actor_pickup(t):
-    from server.ai import eat_vs_hunger_threshold
     used_slots = len(t["T_CARRIES"])
     if used_slots < world_db["ThingTypes"][t["T_TYPE"]]["TT_STORAGE"]:
-        ids = [id for id in world_db["Things"] if world_db["Things"][id] != t
-               if not world_db["Things"][id]["carried"]
-               if world_db["Things"][id]["T_POSY"] == t["T_POSY"]
-               if world_db["Things"][id]["T_POSX"] == t["T_POSX"]]
-        if len(ids):
-            lowest_tid = -1
-            eat_cost = eat_vs_hunger_threshold(t["T_TYPE"])
-            for iid in ids:
-                tid = world_db["Things"][iid]["T_TYPE"] 
-                if lowest_tid == -1 or tid < lowest_tid:
-                    if (t != world_db["Things"][0] and
-                        (world_db["ThingTypes"][tid]["TT_TOOL"] != "food"
-                         or (world_db["ThingTypes"][tid]["TT_TOOLPOWER"]
-                             <= eat_cost))):
-                        continue
-                    id = iid
-                    lowest_tid = tid
-            world_db["Things"][id]["carried"] = True
-            ty = world_db["Things"][id]["T_TYPE"]
-            if (t != world_db["Things"][0]
-                and world_db["Things"][id]["T_PLAYERDROP"]
-                and world_db["ThingTypes"][ty]["TT_TOOL"] == "food"):
-                score = int(world_db["ThingTypes"][ty]["TT_TOOLPOWER"] / 32)
+        from server.actions import actor_pickup
+        t_picked = actor_pickup(t)
+        if t_picked != None:
+            ty = world_db["ThingTypes"][t_picked["T_TYPE"]]
+            if t != world_db["Things"][0] and t_picked["T_PLAYERDROP"] \
+                    and ty["TT_TOOL"] == "food":
+                score = int(ty["TT_TOOLPOWER"] / 32)
                 world_db["GOD_FAVOR"] += score
-                world_db["Things"][id]["T_PLAYERDROP"] = 0
-            t["T_CARRIES"].append(id)
-            if t == world_db["Things"][0]:
-                log("You PICK UP an object.")
+                t_picked["T_PLAYERDROP"] = 0
     elif t == world_db["Things"][0]:
         log("CAN'T pick up object: No storage room to carry more.")
 
+def actor_pickup_test_hook(t, tid):
+    from server.ai import eat_vs_hunger_threshold
+    tt = world_db["ThingTypes"][tid]
+    return not (t != world_db["Things"][0] and (tt["TT_TOOL"] != "food" or
+            (tt["TT_TOOLPOWER"] <= eat_vs_hunger_threshold(t["T_TYPE"]))))
 
 def actor_drop(t):
-    """Make t rop Thing from inventory to ground indexed by T_ARGUMENT."""
-    if len(t["T_CARRIES"]):
-        id = t["T_CARRIES"][t["T_ARGUMENT"]]
-        t["T_CARRIES"].remove(id)
-        world_db["Things"][id]["carried"] = False
-        if t == world_db["Things"][0]:
-            log("You DROP an object.")
-            world_db["Things"][id]["T_PLAYERDROP"] = 1
+    from server.actions import actor_drop
+    dropped = actor_drop(t)
+    if dropped != None:
+        dropped["T_PLAYERDROP"] = 1
 
-
-def actor_use(t):
-    if len(t["T_CARRIES"]):
-        id = t["T_CARRIES"][t["T_ARGUMENT"]]
-        type = world_db["Things"][id]["T_TYPE"]
-        if type == world_db["SLIPPERS"]:
-            if t == world_db["Things"][0]:
-                log("You use the " + world_db["ThingTypes"][type]["TT_NAME"] +
-                    ". It glows in wondrous colors, and emits a sound as if fr"
-                    "om a dying cat. The Island God laughs.\n")
-            t["T_LIFEPOINTS"] = 1
-            from server.config.misc import decrement_lifepoints_func
-            decrement_lifepoints_func(t)
-        elif (world_db["ThingTypes"][type]["TT_TOOL"] == "carpentry"):
-            pos = t["T_POSY"] * world_db["MAP_LENGTH"] + t["T_POSX"]
-            if (world_db["MAP"][pos] == ord("X")
-                or world_db["MAP"][pos] == ord("|")):
-                return
-            for id in [id for id in world_db["Things"]
-                       if not world_db["Things"][id] == t
-                       if not world_db["Things"][id]["carried"]
-                       if world_db["Things"][id]["T_POSY"] == t["T_POSY"]
-                       if world_db["Things"][id]["T_POSX"] == t["T_POSX"]]:
-                 return
-            wood_id = None
-            for id in t["T_CARRIES"]:
-                type_material = world_db["Things"][id]["T_TYPE"]
-                if (world_db["ThingTypes"][type_material]["TT_TOOL"]
-                    == "wood"):
-                    wood_id = id
-                    break
-            if wood_id != None:
-                t["T_CARRIES"].remove(wood_id)
-                del world_db["Things"][wood_id]
-                world_db["MAP"][pos] = ord("|")
-                log("With your " + world_db["ThingTypes"][type]["TT_NAME"]
-                    + " you build a WOODEN BARRIER from your "
-                    + world_db["ThingTypes"][type_material]["TT_NAME"] + ".")
-        elif world_db["ThingTypes"][type]["TT_TOOL"] == "fertilizer":
-            pos = t["T_POSY"] * world_db["MAP_LENGTH"] + t["T_POSX"]
-            if world_db["MAP"][pos] == ord("."):
-                log("You create SOIL.")
-                world_db["MAP"][pos] = ord(":")
-        elif world_db["ThingTypes"][type]["TT_TOOL"] == "food":
-            t["T_CARRIES"].remove(id)
-            del world_db["Things"][id]
-            t["T_SATIATION"] += world_db["ThingTypes"][type]["TT_TOOLPOWER"]
-            if t == world_db["Things"][0]:
-                log("You CONSUME this thing.")
-        elif t == world_db["Things"][0]:
-            log("You try to use this object, but FAIL.")
+def actor_use_attempts_hook(t, ty):
+    if ty == world_db["SLIPPERS"]:
+        if t == world_db["Things"][0]:
+            log("You use the " + world_db["ThingTypes"][ty]["TT_NAME"] + ". " \
+                "It glows in wondrous colors, and emits a sound as if from a d"
+                "ying cat. The Island God laughs.\n")
+        t["T_LIFEPOINTS"] = 1
+        from server.config.misc import decrement_lifepoints_func
+        decrement_lifepoints_func(t)
+    elif (world_db["ThingTypes"][ty]["TT_TOOL"] == "carpentry"):
+        pos = t["T_POSY"] * world_db["MAP_LENGTH"] + t["T_POSX"]
+        if (world_db["MAP"][pos] == ord("X")
+            or world_db["MAP"][pos] == ord("|")):
+            return
+        for t_id in [t_id for t_id in world_db["Things"]
+                   if not world_db["Things"][t_id] == t
+                   if not world_db["Things"][t_id]["carried"]
+                   if world_db["Things"][t_id]["T_POSY"] == t["T_POSY"]
+                   if world_db["Things"][t_id]["T_POSX"] == t["T_POSX"]]:
+            return
+        wood_id = None
+        for t_id in t["T_CARRIES"]:
+            type_material = world_db["Things"][t_id]["T_TYPE"]
+            if (world_db["ThingTypes"][type_material]["TT_TOOL"] == "wood"):
+                wood_id = t_id
+                break
+        if wood_id != None:
+            t["T_CARRIES"].remove(wood_id)
+            del world_db["Things"][wood_id]
+            world_db["MAP"][pos] = ord("|")
+            log("With your " + world_db["ThingTypes"][ty]["TT_NAME"] + " you" \
+                " build a WOODEN BARRIER from your "
+                + world_db["ThingTypes"][type_material]["TT_NAME"] + ".")
+    elif world_db["ThingTypes"][ty]["TT_TOOL"] == "fertilizer":
+        pos = t["T_POSY"] * world_db["MAP_LENGTH"] + t["T_POSX"]
+        if world_db["MAP"][pos] == ord("."):
+            log("You create SOIL.")
+            world_db["MAP"][pos] = ord(":")
 
 def decrement_lifepoints(t):
     t["T_LIFEPOINTS"] -= 1
@@ -702,8 +644,8 @@ import server.config.actions
 server.config.actions.action_db["actor_move"] = actor_move
 server.config.actions.action_db["actor_pickup"] = actor_pickup
 server.config.actions.action_db["actor_drop"] = actor_drop
-server.config.actions.action_db["actor_use"] = actor_use
-server.config.actions.ai_func = ai
+server.config.actions.actor_pickup_test_hook = actor_pickup_test_hook
+server.config.actions.actor_use_attempts_hook = actor_use_attempts_hook
 
 from server.config.commands import commands_db
 commands_db["TT_ID"] = (1, False, command_ttid)
@@ -741,3 +683,6 @@ server.config.thingproliferation.thingprol_plugin_conditions = \
     thingprol_plugin_conditions
 server.config.thingproliferation.thingprol_plugin_post_create_hook = \
     thingprol_plugin_post_create_hook
+
+import server.config.ai
+server.config.ai.ai_hook_pickup = ai_hook_pickup_test