问题
我想为 ncurses 程序添加持久性:在退出时将最后显示的屏幕写入磁盘,在进入时从磁盘读取最后显示的屏幕。如果可能,包括背景和前景色。
问题
- 有没有办法从出现在 NWindow 或 NPanel 中的 ncurses 读取整个文本块,还是我必须维护自己的缓冲区并基本上写入/读取两次(到我的缓冲区和 ncurses)?
- COLOR_PAIR 信息的相同问题。
回答
Rici 在下面的回答是完美的,但我必须进行一些试验才能正确地获得呼叫订单。
用法
下面的代码实际上非常适合保存和恢复颜色。
- 不带参数运行一次以写出屏幕转储文件
/tmp/scr.dump
。 read
使用从文件中读取的参数再次运行它。
代码
#include <ncurses.h>
#include <string.h>
void print_in_middle(WINDOW *win, int starty, int startx, int width, char *string);
int main(int argc, char *argv[])
{
bool read_mode = ( argc>1 && !strcmp( argv[1], "read" ));
initscr(); /* Start curses mode */
if(has_colors() == FALSE)
{
endwin();
printf("Your terminal does not support color\n");
return 1;
}
start_color(); /* Start color */
use_default_colors(); // allow for -1 to mean default color
init_pair(1, COLOR_RED, -1);
if ( read_mode )
{
refresh();
if ( scr_restore( "/tmp/scr.dump" )!=OK )
{
fprintf( stderr, "ERROR DURING RESTORE\n" );
return 1;
}
doupdate();
attron(COLOR_PAIR(1));
print_in_middle(stdscr, LINES / 2 + 9, 0, 0, "Read from /tmp/scr.dump" );
attroff(COLOR_PAIR(1));
} else {
attron(COLOR_PAIR(1));
print_in_middle(stdscr, LINES / 2, 0, 0, "Viola !!! In color ...");
attroff(COLOR_PAIR(1));
if ( scr_dump( "/tmp/scr.dump" )!=OK )
{
fprintf( stderr, "ERROR WHILE DUMPING" );
return 1;
}
}
getch();
endwin();
}
void print_in_middle(WINDOW *win, int starty, int startx, int width, char *string)
{ int length, x, y;
float temp;
if(win == NULL)
win = stdscr;
getyx(win, y, x);
if(startx != 0)
x = startx;
if(starty != 0)
y = starty;
if(width == 0)
width = 80;
length = strlen(string);
temp = (width - length)/ 2;
x = startx + (int)temp;
mvwprintw(win, y, x, "%s", string);
refresh();
}