gpt4 book ai didi

C++:如何在控制台中输入文本并将其保留在底部

转载 作者:太空狗 更新时间:2023-10-29 22:55:24 31 4
gpt4 key购买 nike

问题描述:

  • 我编写了一个经常打印出一些信息的程序。
  • 我想在程序运行过程中输入一些命令。
  • std::out 将清除我的输入。

例如:

>>> ./my_program
[sensorA] initial...ok
[sensorB] initial...ok
ge //!< I want to input 'get' here but the next output break it
[motorA] self-check...ok
t //!< break it into two spice

预期:

>>> ./my_program
[sensorA] initial...ok
[sensorB] initial...ok
[motorA] self-check...ok
get //!< always fixed here whenever I input

非常感谢!

最佳答案

欣赏

首先,我非常感谢Sam Varshavchik


我找到的主要结果

Sam 给了我使用 Curses Library 的提示。我阅读了文档,现在完成了基本功能。

The Result of the program

我的方法是创建到子窗口(output_win 和 input_win)。用户输入显示在input_win,而程序信息打印在output_win
让我分享我的代码:

#include <iostream>
#include <string>
#include <curses.h>
#include <thread>
#include <atomic>
#include <chrono>
#include <unistd.h>

using namespace std;

WINDOW* win;
WINDOW* output_win;
WINDOW* input_win;
int row = 0, col = 0;
std::atomic<bool> flag(false);
string buf;

void ninit()
{
win = initscr();
getmaxyx(win, row, col);

cbreak();
noecho();

nonl();
intrflush(stdscr, FALSE);
keypad(stdscr, TRUE);
refresh();
}

void nprintf(string str)
{
touchwin(win);
str += '\n';
wprintw(output_win, str.c_str());
wrefresh(output_win);
}

void nprintf(const char* fmt, ...)
{
touchwin(win);

va_list ap;
va_start(ap, fmt);
vw_printw(output_win, fmt, ap);
va_end(ap);

wrefresh(output_win);
}

void nmonitor()
{
while(1)
{
char x = getch();

if(x != '\r')
{
touchwin(win);
buf += x;
waddch(input_win, x);
}
else
{
nprintf(buf);
touchwin(input_win);
flag = true;
wclear(input_win);
}
wrefresh(input_win);
}
}

string nget()
{
while(!flag)
usleep(100);
string cmd = buf;
flag = false;
buf = "";
return cmd;
}

////////////////////////////////

void print_thread()
{
while(1)
{
static int i = 0;
nprintf("no.%d\n", i++);
usleep(100000);
}
}

int main()
{
ninit();
fflush(stdin);

output_win = subwin(win, row - 1, col, 0, 0);
scrollok(output_win, true);
input_win = subwin(win, 1, col, row - 1, 0);

std::thread pthr(print_thread);
std::thread nthr(nmonitor);

string cmd;
while(1)
{
cmd = nget();
if(cmd == "quit")
break;
else
nprintf("[info] You input: %s\n", cmd.c_str());
}

getch();

endwin();
}

环境配置与搭建

对于 Mac 操作系统:

brew install ncurses

对于 Ubuntu:

sudo apt-get install libcurses5-dev

构建:

g++ f04.cpp - f04 -lcurses  # I try for 4 times so name it f04

一些错误

其实它有一些bug,我在这里发现:

  • 当你输入backspace时,它不会删除一个字符,而是显示一个特殊的字符;
  • 在输入enter后,output_win有时会出现一些奇怪的字。

我是初学者,可能需要帮助。(也许我会尽快解决它们。)

愿它确实能帮助到其他人。

关于C++:如何在控制台中输入文本并将其保留在底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52350847/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com