X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=src%2Fclient%2Fdraw_wins.c;h=69278e8393631a351326ae725e682a304a267ab7;hb=0438f2fc5df337e4264103a86c1765ace9c6565a;hp=b55b998bb403ba359ca373d2a12808ef7a922689;hpb=c53b42dfc7e4de104f9189428dd5b9a0d431c00a;p=plomrogue diff --git a/src/client/draw_wins.c b/src/client/draw_wins.c index b55b998..69278e8 100644 --- a/src/client/draw_wins.c +++ b/src/client/draw_wins.c @@ -10,9 +10,8 @@ #include /* memset(), strchr(), strdup/(), strlen() */ #include "../common/rexit.h" /* exit_err() */ #include "../common/try_malloc.h" /* try_malloc() */ -#include "../common/yx_uint16.h" /* struct yx_uint16 */ #include "keybindings.h" /* struct KeyBindingDB, get_keyname_to_keycode() */ -#include "windows.h" /* struct Win, get_win_by_id() */ +#include "windows.h" /* yx_uint16, Win, get_win_by_id() */ #include "world.h" /* global world */ @@ -186,7 +185,8 @@ static void add_line_compact(struct Win * win, char * line, attr_t attri, uint32_t len_line_new = len_line + strlen(separator); char line_new[len_line_new]; sprintf(line_new, "%s%s", line, separator); - uint16_t x, y; + uint16_t x = 0; + uint16_t y; uint32_t z; for (z = 0, y = y_start; z < len_line_new; y++) { @@ -204,7 +204,7 @@ static void add_line_compact(struct Win * win, char * line, attr_t attri, try_resize_winmap(win, y + 1 + 1, win->winmap_size.x); } } - * offset = x; + *offset = x; } @@ -338,14 +338,14 @@ extern void draw_win_log(struct Win * win) extern void draw_win_map(struct Win * win) { - try_resize_winmap(win, world.map.size.y, world.map.size.x); + try_resize_winmap(win, world.map.length, world.map.length * 2); uint16_t z = 0; uint16_t x, y; - for (y = 0; y < world.map.size.y; y++) + for (y = 0; y < world.map.length; y++) { - for (x = 0; x < world.map.size.x; x++) + for (x = 0; x < world.map.length; x++) { - set_ch_on_yx(win, y, x, world.map.cells[z]); + set_ch_on_yx(win, y, x * 2 + (y % 2), world.map.cells[z]); z++; } } @@ -398,13 +398,9 @@ extern void draw_win_inventory(struct Win * win) extern void draw_win_available_keybindings(struct Win * win) { char * title = "Active window's keys:"; - struct KeyBindingDB * kbdb; struct Win * win_active = get_win_by_id(world.winDB.active); - if (0 == win_active->view) - { - kbdb = &win_active->kb; - } - else if (1 == win_active->view) + struct KeyBindingDB * kbdb = &win_active->kb; + if (1 == win_active->view) { kbdb = &world.kb_wingeom; }