X-Git-Url: https://plomlompom.com/repos/?p=plomrogue;a=blobdiff_plain;f=roguelike-client;h=fb6c070f804d926bcc1e39346be6befe709e8103;hp=4514946f7da145f44b4cae9680f289e34e7dc9a2;hb=4baa56d0423a8d59f794e10f7e5f65747613265a;hpb=fad0798fc0212ad2b4b93443f7c8de970f3d760d diff --git a/roguelike-client b/roguelike-client index 4514946..fb6c070 100755 --- a/roguelike-client +++ b/roguelike-client @@ -42,6 +42,7 @@ def read_worldstate(): if read_anew: # TODO: Hardcode order of necessary fields, ensure order dependencies. redraw_windows = True + old_inventory_size = len(world_data["inventory"]) world_data["turn"] = int(turn_string) for entry in io["worldstate_read_order"]: if entry[1] == "int": @@ -64,6 +65,9 @@ def read_worldstate(): world_data[entry[0]] += line if not world_data["look_mode"]: world_data["map_center"] = world_data["avatar_position"][:] + if world_data["inventory_selection"] > 0 and \ + len(world_data["inventory"]) < old_inventory_size: + world_data["inventory_selection"] -= 1 worldstate_file.close() read_worldstate.last_checked_mtime = -1 @@ -131,10 +135,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: