Skip to content
Snippets Groups Projects

Resolve "Hooks"

Merged Florian Schröder requested to merge 78-hooks into main
Files
3
from collections import defaultdict
from functools import partial
from typing import Callable
# TODO add player_id as kwarg to all hooks -> pass player id to all methods
@@ -109,3 +110,34 @@ class Hooks:
def print_hook_callback(text, env, **kwargs):
print(env.env_time, text)
def add_dummy_callbacks(env):
env.register_callback_for_hook(
SERVE_NOT_ORDERED_MEAL,
partial(
print_hook_callback,
text="You tried to served a meal that was not ordered!",
),
)
env.register_callback_for_hook(
SINK_START_INTERACT,
partial(
print_hook_callback,
text="You started to use the Sink!",
),
)
env.register_callback_for_hook(
COMPLETED_ORDER,
partial(
print_hook_callback,
text="You completed an order!",
),
)
env.register_callback_for_hook(
TRASHCAN_USAGE,
partial(
print_hook_callback,
text="You used the trashcan!",
),
)
Loading