X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=roguelike-client;h=4514946f7da145f44b4cae9680f289e34e7dc9a2;hp=5d140640ac1a739ccda084f41f01aa6ae372f174;hb=08e48fa62e37ab29b6b7728db0bf78407ff22ba4;hpb=9859bec5bd856c98f8d970966d867d99f6be9bf9 diff --git a/roguelike-client b/roguelike-client index 5d14064..4514946 100755 --- a/roguelike-client +++ b/roguelike-client @@ -1,11 +1,15 @@ #!/usr/bin/python3 +# This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 +# or any later version. For details on its copyright, license, and warranties, +# see the file NOTICE in the root directory of the PlomRogue source package. + + import curses import os import signal import time - from client.config.world_data import world_data from client.config.io import io from client.config.commands import commands @@ -36,7 +40,7 @@ def read_worldstate(): read_worldstate.last_checked_mtime = mtime read_anew = True if read_anew: - # TODO: Hardcore order of necessary fields, ensure dependency order. + # TODO: Hardcode order of necessary fields, ensure order dependencies. redraw_windows = True world_data["turn"] = int(turn_string) for entry in io["worldstate_read_order"]: @@ -85,6 +89,14 @@ def read_message_queue(): redraw_windows = True elif message == "WORLD_UPDATED": query_mapcell() + elif message[:6] == "PLUGIN": + str_plugin = message[7:] + if (str_plugin.replace("_", "").isalnum() + and os.access("plugins/client/" + str_plugin + ".py", + os.F_OK)): + exec(open("plugins/client/" + str_plugin + ".py").read()) + return + raise SystemExit("Invalid plugin load path in message: " + message) read_message_queue.parse_thingshere = False