X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=roguelike-client;h=d527a904f061e1552210a196286d73dc4c56cd19;hp=55fb9789d2a33585bc678b6e53eabf047566c7a5;hb=c94c0575b191d0162d8a1cbbbe4e59cca2e40324;hpb=0a56367e8396b2ece4c1bce8a25e93ceabd901c1 diff --git a/roguelike-client b/roguelike-client index 55fb978..d527a90 100755 --- a/roguelike-client +++ b/roguelike-client @@ -40,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"]: @@ -89,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 @@ -123,10 +131,13 @@ def cursed_main(stdscr): if new_open_end: message_queue["open_end"] = True + def set_and_redraw_windows(*ignore): + set_windows() + draw_screen() + curses.noecho() curses.curs_set(False) - signal.signal(signal.SIGWINCH, - lambda ignore_1, ignore_2: set_windows()) + signal.signal(signal.SIGWINCH, set_and_redraw_windows) set_windows() delay = 1 while True: