我无法使用终端调色板来处理curses。
import curses
def main(stdscr):
curses.use_default_colors()
for i in range(0,7):
stdscr.addstr("Hello", curses.color_pair(i))
stdscr.getch()
curses.wrapper(main)
这个python脚本产生以下屏幕:
但是,我的gnome-terminal调色板中有更多颜色。如何在curses中访问它们?
答案 0 :(得分:36)
以下我通过我自己的电脑(Ubuntu 14.04,python 3)进行了实验。
考虑以下测试代码。
将其添加到您的.bashrc
:
# Set proper $TERM if we are running gnome-terminal
if [ "$COLORTERM" == "gnome-terminal" ]
then
TERM=xterm-256color
fi
将它放在python文件中并运行它。
import curses
def main(stdscr):
curses.start_color()
curses.use_default_colors()
for i in range(0, curses.COLORS):
curses.init_pair(i + 1, i, -1)
try:
for i in range(0, 255):
stdscr.addstr(str(i), curses.color_pair(i))
except curses.ERR:
# End of screen reached
pass
stdscr.getch()
curses.wrapper(main)
运行它将产生以下输出。
如您所见,颜色对1-16是前景色的终端调色板。
答案 1 :(得分:12)
终端'调色板'由终端应用程序本身设置,以将默认的curses颜色映射到特定于应用程序的“解释”。如果您使用红色,终端可以选择将其显示为酒红色或樱桃红色,或者如果用户愿意,可以选择完全不同的东西。
换句话说,只需使用curses颜色(结合或不结合使用明亮或闪烁修饰符),就应该使用Just Work。
我认为curses.use_default_colors()
电话仅提供透明度;它是对use_default_colors()
ncurses API function的直接调用。 ncurses颜色是基于调色板的;您需要使用curses.init_pair()
calls为每对编号设置自己的颜色属性,然后从调色板中选择一个带有curses.color_pair()
的颜色对,以显示具有该特定对的文本;或直接为给定的addstr()
调用构建文本属性。
答案 2 :(得分:9)
我目前将这些行放在我的剧本前面。
curses.use_default_colors()
for i in range(0, curses.COLORS):
curses.init_pair(i, i, -1);
我不知道它是否是最佳解决方案,但至少会产生一些与终端调色板一致的颜色对。
答案 3 :(得分:4)
我没有代表提交此评论作为评论 Chiel ten Brinke的优秀答案,所以我在这里提供一个更有用的颜色脚本版本:
import curses
def main(stdscr):
curses.start_color()
curses.use_default_colors()
for i in range(0, curses.COLORS):
curses.init_pair(i + 1, i, -1)
stdscr.addstr(0, 0, '{0} colors available'.format(curses.COLORS))
maxy, maxx = stdscr.getmaxyx()
maxx = maxx - maxx % 5
x = 0
y = 1
try:
for i in range(0, curses.COLORS):
stdscr.addstr(y, x, '{0:5}'.format(i), curses.color_pair(i))
x = (x + 5) % maxx
if x == 0:
y += 1
except curses.ERR:
pass
stdscr.getch()
curses.wrapper(main)
答案 4 :(得分:1)
您可以通过以下方式使用culour
包:
pip install culour
然后你可以用它来打印颜色来诅咒:
culour.addstr(window, "colored string")
答案 5 :(得分:0)
curses.use_default_colors()
仅将默认的fg或bg颜色设置为-1,从手册页“ init_pair(x,COLOR_RED,-1)
将x对在默认背景上初始化为红色,init_pair(x,-1,COLOR_BLUE)
将x对初始化为默认前景为蓝色。”
我一直以为curses只支持8个名为“ curses.COLOR _...”的东西,通常就足够了,但是我想在我的应用程序中添加一些香料,所以一小段时间就可以在这里找到我。最有可能的是,大多数术语将支持256色,您可以使用上面的@Hristo Eftimov的代码仅打印支持的颜色。我决定制作一个备用颜色选择器,该选择器将显示x颜色数字的示例作为前景和背景。 左/右箭头键或a / d键更改要更改的属性,+ /-递增/递减色号,q或esc退出。
#!/usr/bin/python
from traceback import format_exc
import sys, os, time, re, curses
import locale
locale.setlocale(locale.LC_ALL, '')
os.environ.setdefault('ESCDELAY', '250')
os.environ["NCURSES_NO_UTF8_ACS"] = "1"
move_dirs = {curses.KEY_DOWN : (1, 0), curses.KEY_UP : (-1, 0), curses.KEY_RIGHT : (0, 1), curses.KEY_LEFT : (0, -1),
ord('s') : (1, 0), ord('w') : (-1, 0), ord('d') : (0, 1), ord('a') : (0, -1)}
colors = {'white': curses.COLOR_WHITE, 'red': curses.COLOR_RED, 'green': curses.COLOR_GREEN,
'yellow': curses.COLOR_YELLOW, 'blue': curses.COLOR_BLUE, 'magenta': curses.COLOR_MAGENTA,
'cyan': curses.COLOR_CYAN, 'black': curses.COLOR_BLACK}
class SuspendCurses():
def __enter__(self):
curses.endwin()
def __exit__(self, exc_type, exc_val, tb):
newscr = curses.initscr()
newscr.refresh()
curses.doupdate()
def cp(i):
return curses.color_pair(i)
def set_pairs(fg, bg):
curses.init_pair(1, fg, colors['black'])
curses.init_pair(2, fg, colors['yellow'])
curses.init_pair(3, fg, colors['white'])
curses.init_pair(4, fg, colors['red'])
curses.init_pair(5, colors['black'], bg)
curses.init_pair(6, colors['yellow'], bg)
curses.init_pair(7, colors['white'], bg)
curses.init_pair(8, colors['red'], bg)
def main_loop(stdscr):
ret = 0
EXIT = False
try:
curses.curs_set(1) #set curses options and variables
curses.noecho()
curses.cbreak()
maxc = curses.COLORS
maxy, maxx = stdscr.getmaxyx()
if maxy < 10 or maxx < 65:
with SuspendCurses():
print('Terminal window needs to be at least 10h by 65w')
print('Current h:{0} and w:{1}'.format(maxy, maxx))
ret = 1
EXIT = True
stdscr.refresh()
h, w = 10, 65
test_win = curses.newwin(h, w, 0, 0)
stdscr.nodelay(1)
test_win.leaveok(0)
test_win.keypad(1)
test_win.bkgd(' ', cp(0))
test_win.box()
cursor = [2, 0]
test_win.move(2, 2+cursor[1]*20)
fgcol, bgcol = 1, 1
set_pairs(fgcol, bgcol)
test_win.refresh()
cursor_bounds = ((0,0),(0,1))
teststr = '! @ # $ % ^ & * _ + - = '
k, newk = 1, 2
while not EXIT:
if k > -1:
test_win.clear()
if k in move_dirs.keys(): #move cursor left or right with wrapping
cursor[1] += move_dirs[k][1]
if cursor[1] > cursor_bounds[1][1]: cursor[1] = cursor_bounds[1][0]
if cursor[1] < cursor_bounds[1][0]: cursor[1] = cursor_bounds[1][1]
if k == 45: #decr currently selected attr
if cursor[1] == 0:
fgcol -= 1
if fgcol < 0: fgcol = maxc-1
else:
bgcol -= 1
if bgcol < 0: bgcol = maxc-1
set_pairs(fgcol, bgcol)
if k == 43: #incr currently selected attr
if cursor[1] == 0:
fgcol += 1
if fgcol > maxc-1: fgcol = 0
else:
bgcol += 1
if bgcol > maxc-1: bgcol = 0
set_pairs(fgcol, bgcol)
if k in (ord('q'), 27):
EXIT = True
test_win.addstr(1, 10, '{0} colors supported'.format(maxc), cp(0))
test_win.addstr(2, 2, 'FG: {0} '.format(fgcol), cp(0))
test_win.addstr(2, 32, 'BG: {0} '.format(bgcol), cp(0))
for i in range(1,5):
test_win.addstr(3+i, 2, teststr, cp(i))
test_win.addstr(3+i, 32,teststr, cp(i+4))
test_win.move(1, 2+cursor[1]*30)
test_win.box()
test_win.refresh()
curses.napms(10)
newk = stdscr.getch()
if newk != k:
k = newk
except KeyboardInterrupt:
pass
except:
ret = 1
with SuspendCurses():
print(format_exc())
finally:
return ret
if __name__ == '__main__':
try:
_ret = curses.wrapper(main_loop)
except Exception as e:
print(e)
finally:
print('Exit status ' + str(_ret))
sys.exit(_ret)
屏幕截图: