X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;ds=inline;f=src%2Fwindows.c;h=efba9190ecbce74ef7f2a3cf703075534689af15;hb=3b2c82991c9ab169b33248c7be840a9bcd351e6d;hp=a7bf88fc22ba063b46de8d6fc49aa6a4adf3ab83;hpb=f4ced5cf0092cc3a945d73a8950baecb23374d23;p=plomrogue diff --git a/src/windows.c b/src/windows.c index a7bf88f..efba919 100644 --- a/src/windows.c +++ b/src/windows.c @@ -365,23 +365,23 @@ static void shift_win_backward(struct WinMeta * wmeta) extern uint8_t init_win_meta(WINDOW * screen, struct WinMeta * wmeta) { wmeta->_screen = screen; - wmeta->padframe.size.y = getmaxy(screen); - wmeta->padframe.size.x = getmaxx(screen); - if ( wmeta->padframe.size.y > UINT16_MAX - || wmeta->padframe.size.x > UINT16_MAX) + uint32_t maxy_test = getmaxy(screen); + uint32_t maxx_test = getmaxx(screen); + if (maxy_test > UINT16_MAX || maxx_test > UINT16_MAX) { return 2; } + wmeta->padframe.size.y = maxy_test; + wmeta->padframe.size.x = maxx_test; wmeta->_chain_start = 0; wmeta->_chain_end = 0; wmeta->pad_offset = 0; - WINDOW * test; - test = newpad(wmeta->padframe.size.y, 1); - if (NULL == test) + WINDOW * pad_test = newpad(wmeta->padframe.size.y, 1); + if (NULL == pad_test) { return 1; } - wmeta->padframe.curses_win = test; + wmeta->padframe.curses_win = pad_test; wmeta->active = 0; return 0; } @@ -389,7 +389,7 @@ extern uint8_t init_win_meta(WINDOW * screen, struct WinMeta * wmeta) extern struct Win init_win(struct WinMeta * wmeta, char * title, - uint16_t height, uint16_t width, + int16_t height, int16_t width, void * data, void * func) { struct Win w; @@ -399,18 +399,26 @@ extern struct Win init_win(struct WinMeta * wmeta, char * title, w._title = title; w.data = data; w._draw = func; - if (width > 0) + if (0 < width) { w.frame.size.x = width; } + else if (0 > width) + { + w.frame.size.x = wmeta->padframe.size.x + width; + } else { - w.frame.size.x = 1; + w.frame.size.x = wmeta->padframe.size.x; } - if (height > 0 && height <= wmeta->padframe.size.y - 1) + if (0 < height && height <= wmeta->padframe.size.y - 1) { w.frame.size.y = height; } + else if (0 > height && wmeta->padframe.size.y + (height - 1) > 0) + { + w.frame.size.y = wmeta->padframe.size.y + (height - 1); + } else { w.frame.size.y = wmeta->padframe.size.y - 1;