使用Python,我尝试使用addstr()将光标位置写入我的curses窗口的右下角但是我收到错误。 ScreenH-2
工作正常,但是从挡风玻璃底部向上打印。 ScreenH-1
根本不起作用。我做错了什么?
import curses
ScreenH = 0
ScreenW = 0
CursorX = 1
CursorY = 1
def repaint(screen):
global ScreenH
global ScreenW
global CursorX
global CursorY
ScreenH, ScreenW = screen.getmaxyx()
cloc = ' ' + str(CursorX) + ':' + str(CursorY) + ' '
cloclen = len (cloc)
screen.addstr (ScreenH - 1, ScreenW - cloclen, cloc, curses.color_pair(1));
def Main(screen):
curses.init_pair (1, curses.COLOR_WHITE, curses.COLOR_BLUE)
repaint (screen)
while True:
ch = screen.getch()
if ch == ord('q'):
break
repaint (screen)
curses.wrapper(Main)
File "test.py", line 17, in repaint
screen.addstr (ScreenH - 1, ScreenW - cloclen, cloc, curses.color_pair(1));
_curses.error: addstr() returned ERR
答案 0 :(得分:10)
您也可以使用insstr
代替addstr
:
screen.insstr(ScreenH - 1, ScreenW - 1 - cloclen, cloc, curses.color_pair(1))
这将阻止滚动,从而允许您打印最后一行中的最后一个字符
答案 1 :(得分:2)
您需要像宽度一样从宽度中减去1。否则字符串将超出屏幕宽度。
screen.addstr(ScreenH - 1, ScreenW - 1 - cloclen, cloc, curses.color_pair(1))
^^^