因此,我正在使用pdcurses向控制台应用程序添加一些颜色,但是遇到了问题。如果我创建第二个窗口并尝试对其输出进行着色,则它的效果很好,但是如果我尝试将输出着色至stdscr,则什么也没有发生。

我想继续使用stdscr而不是用另一个窗口覆盖它,因为stdscr将接收我通常发送到stdout的输出,从而允许我在控制台中使用C ++风格的接口。通过将输出发送到cout,它将发送到stdscr,这是目前我所知道的唯一使用C ++接口进行pdcurses的方法。此外,其他库偶尔也会将其输出直接发送到stdout,如果我使用stdscr,则该输出不会丢失(我听说lua的print函数不在我的耳中)。

这是一些示例代码:

// This prints a red '>' in the inputLine window properly. //
wattron(inputLine, A_BOLD | COLOR_PAIR(COLOR_RED));
wprintw(inputLine, "\n> ");
wattroff(inputLine, A_BOLD | COLOR_PAIR(COLOR_RED));

// This prints a light grey "Le Testing." to stdscr.  Why isn't it red? //
wattron(stdscr, A_BOLD | COLOR_PAIR(COLOR_RED));
cout << "\nLe Testing.\n";
wattroff(stdscr, A_BOLD | COLOR_PAIR(COLOR_RED));

// This does nothing.  I have no idea why. //
wattron(stdscr, A_BOLD | COLOR_PAIR(COLOR_RED));
wprintw(stdscr, "\nLe Testing.\n");
wattroff(stdscr, A_BOLD | COLOR_PAIR(COLOR_RED));


这是我初始化pdcurses的方法:

   // Open the output log which will mimic stdout. //
   if (userPath)
   {
      string filename = string(userPath) + LOG_FILENAME;
      log.open(filename.c_str());
   }

      // Initialize the pdCurses screen. //
   initscr();

      // Resize the stdout screen and create a line for input. //
   resize_window(stdscr, LINES - 1, COLS);
   inputLine = newwin(1, COLS, LINES - 1, 0);

      // Initialize colors. //
   if (has_colors())
    {
        start_color();
        for (int i = 1; i <= COLOR_WHITE; ++i)
        {
            init_pair(i, i, COLOR_BLACK);
        }
    }
    else
   {
      cout << "Terminal cannot print colors.\n";
      if (log.is_open())
         log << "Terminal cannot print colors.\n";
   }

   scrollok(stdscr, true);
    scrollok(inputLine, true);

   leaveok(stdscr, true);
    leaveok(inputLine, true);

    nodelay(inputLine, true);
    cbreak();
    noecho();
    keypad(inputLine, true);


我究竟做错了什么?

最佳答案

您错误地假设写入标准输出将写入stdscr。实际上,这样做完全绕开了PDCurses并直接写入控制台,就像您根本没有使用PDCurses一样。您需要使用PDCurses函数写入PDCurses窗口,包括stdscr。您需要说服正在使用的任何库,然后不要将输出发送到stdout来执行此操作,因为这会使PDCurses感到困惑。

wprintw(stdstc, "\nLe Testing.\n");不起作用的明显原因是您使用了stdstc而不是stdscr。假设那只是您文章中的错字,并且您确实在程序中编写了stdscr,那么应该可以。您还记得打电话给refresh来在屏幕上实际显示对stdscr所做的更改吗?

07-24 14:57