X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=client%2Fwindow_management.py;h=a896b0207e39bb970db07572145dbf07ae69f6b0;hb=32c8b0d55c091b10ba683621d7881ef57ce8a88a;hp=141cc656b6e92fa81427b704f9c87e006eabd570;hpb=9bcbd39430580783f9ec32a30d4998fca7309a20;p=plomrogue diff --git a/client/window_management.py b/client/window_management.py index 141cc65..a896b02 100644 --- a/client/window_management.py +++ b/client/window_management.py @@ -1,3 +1,8 @@ +# 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 types @@ -90,6 +95,8 @@ def set_windows(): curses.endwin() stdscr = curses.initscr() screen_size = stdscr.getmaxyx() + global windows + windows = [] for config in windows_config: size = size_window(config["config"]) window = Window(config["title"], config["func"], size) @@ -101,14 +108,20 @@ def set_windows(): def draw_screen(): def healthy_addch(y, x, char, attr=0): - """Workaround for .""" + """Wrap Python curses' addch() weirdnesses into sane interface. + + Works around with + and enforces char to be a byte + instead of a single-char string. + """ if y == screen_size[0] - 1 and x == screen_size[1] - 1: char_before = stdscr.inch(y, x - 1) - stdscr.addch(y, x - 1, char, attr) + stdscr.addch(y, x - 1, char.encode(), attr) stdscr.insstr(y, x - 1, " ") - stdscr.addch(y, x - 1, char_before) + stdscr.addch(y, x - 1, + char_before & 0xFF, char_before & curses.A_ATTRIBUTES) else: - stdscr.addch(y, x, char, attr) + stdscr.addch(y, x, char.encode(), attr) def draw_window_border_lines(): for win in windows: