79 lines
2.7 KiB
Python
79 lines
2.7 KiB
Python
from bot import loaded_modules_dict
|
|
from bot import telnet_prefixes
|
|
from os import path, pardir
|
|
import re
|
|
|
|
module_name = path.basename(path.normpath(path.join(path.abspath(__file__), pardir, pardir)))
|
|
trigger_name = path.basename(path.abspath(__file__))[:-3]
|
|
|
|
|
|
def main_function(origin_module, module, regex_result):
|
|
command = regex_result.group("command")
|
|
player_steamid = regex_result.group("player_steamid")
|
|
|
|
location_dict = None
|
|
spawn_in_place = False
|
|
result = re.match(r"^.*import\slocation\s(?P<location_identifier>\S+)(?:\s)?(?P<spawn_in_place>here)?", command)
|
|
if result:
|
|
active_dataset = module.dom.data.get("module_game_environment", {}).get("active_dataset", None)
|
|
location_identifier = result.group("location_identifier")
|
|
location_dict = (
|
|
module.dom.data
|
|
.get("module_locations", {})
|
|
.get("elements", {})
|
|
.get(active_dataset, {})
|
|
.get(player_steamid, {})
|
|
.get(location_identifier, None)
|
|
)
|
|
spawn_in_place = result.group("spawn_in_place") == "here"
|
|
|
|
if location_dict is not None:
|
|
event_data = ['bc-import', {
|
|
"location_identifier": location_identifier,
|
|
"spawn_in_place": spawn_in_place
|
|
}]
|
|
module.trigger_action_hook(origin_module.locations, event_data=event_data, dispatchers_steamid=player_steamid)
|
|
|
|
else:
|
|
event_data = ['say_to_player', {
|
|
'steamid': player_steamid,
|
|
'message': '[FFFFFF]Could not find [66FF66]{location_name} ({location_identifier})[-]'.format(
|
|
location_name="None Provided",
|
|
location_identifier="None"
|
|
)
|
|
}]
|
|
module.trigger_action_hook(origin_module.players, event_data=event_data)
|
|
|
|
|
|
triggers = {
|
|
"import location": r"\'(?P<player_name>.*)\'\:\s(?P<command>\/import location.*)"
|
|
}
|
|
|
|
|
|
trigger_meta = {
|
|
"description": "will issue the BCM mods bc-import command on the specified location",
|
|
"main_function": main_function,
|
|
"triggers": [
|
|
{
|
|
"identifier": "import location (Allocs)",
|
|
"regex": (
|
|
telnet_prefixes["telnet_log"]["timestamp"] +
|
|
telnet_prefixes["Allocs"]["chat"] +
|
|
triggers["import location"]
|
|
),
|
|
"callback": main_function
|
|
},
|
|
{
|
|
"identifier": "import location (BCM)",
|
|
"regex": (
|
|
telnet_prefixes["telnet_log"]["timestamp"] +
|
|
telnet_prefixes["BCM"]["chat"] +
|
|
triggers["import location"]
|
|
),
|
|
"callback": main_function
|
|
}
|
|
]
|
|
}
|
|
|
|
loaded_modules_dict["module_" + module_name].register_trigger(trigger_name, trigger_meta)
|