linux 上的 C/C++ 中如何在没有外部库的情况下获得插入符位置?

How to get caret position without external libraries in C/C++ on linux?

我正在尝试获取插入符号(控制台光标)在 ubuntu 中的位置。我找到了一个使用 ANSI 代码的解决方案(此处:https://thoughtsordiscoveries.wordpress.com/2017/04/26/set-and-read-cursor-position-in-terminal-windows-and-linux/),如下所示:

printf("3[6n");
scanf("3[%d;%dR", &x, &y); // in x and y I save the position

这个问题是 printf("3[6n"); 在终端中打印了一些东西,这不是我想要的。我试图使用 ANSI 代码 3[8m 隐藏 printf("3[6n"); 的输出,但这只会使字符不可见,这不是我想要的。我想完全摆脱输出。我知道如果我没记错的话你可以将输出重定向到 /dev/null,但我不知道那样会不会弄乱光标位置,我还没有尝试过。

因此,两个选项之一:

1. 如何隐藏 printf 的输出而不弄乱任何东西?

2.有没有不用外部库获取光标位置的其他方法?我相信 <termios.h> 是可行的,但我找不到有关其工作原理的解释。

在我的终端上禁用 ECHO 和规范模式,但将终端设置为 RAW 可能会更好。以下代码遗漏了很多错误处理:

#include <stdio.h>
#include <termios.h>
#include <unistd.h>
#include <fcntl.h>    
int main() {
    int x, y;
    int t = STDOUT_FILENO;
    struct termios sav;
    tcgetattr(t, &sav);
    struct termios opt = sav;
    opt.c_lflag &= ~(ECHO | ICANON);
    // but better just cfmakeraw(&opt);
    tcsetattr(t, TCSANOW, &opt);
    printf("3[6n");
    fflush(stdout);
    scanf("3[%d;%dR", &x, &y);
    tcsetattr(t, TCSANOW, &sav);
    printf("Cursor pos is %d %d\n", x, y);
}