如何使用ANSI代码在C中获取光标位置

时间:2018-06-16 03:25:36

标签: c ansi

我试图从一个小c程序中获取光标位置,所以在谷歌搜索后我找到了这个ANSI代码\x1b[6n。它应该返回光标的x和y位置(如果我没有错) 所以 printf("\x1b[6n"); 给我输出:;1R 我无法理解x和y位置的输出。

编辑: 平台是Linux(xterm)

2 个答案:

答案 0 :(得分:4)

某些终端上,例如DEC VT102及更高版本的VT,以及许多终端模拟器,特别​​是XTerm及其许多模仿,发送 Esc [ 6 n 将使终端响应 Esc [ ; R ,其中是十进制的 text 游标位置的表示。

所以你的终端模拟器回复;1R;它正确回复,但readline例程正在吃 Esc [和十进制数字直到; (并闪烁屏幕或发出哔哔声,取决于配置)。

这是一个很好的Bash命令来说明:

out=''; \
echo $'\e[6n'; \
while read -n 1 -s -t 1; do out="$out$REPLY"; done < /dev/tty; \
echo -n "$out" | od -A x -t x1z -v

运行此命令:

$ out=''; \
> echo $'\e[6n'; \
> while read -n 1 -s -t 1; do out="$out$REPLY"; done < /dev/tty; \
> echo -n "$out" | od -A x -t x1z -v

000000 1b 5b 31 36 3b 31 52                             >.[16;1R<
000007

请注意,答案必然会出现在标准输入上:即使重定向标准输入,答案也会来自终端

在查询者的请求中,这是一个小的C程序,它部分地复制了上面的scriptlet的功能。请注意,该程序不处理在原始模式下设置终端并返回熟化模式;这必须在程序之外处理,如下所示。

#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>

int main (void)

{
  int ttyfd = open ("/dev/tty", O_RDWR);
  if (ttyfd < 0)
    {
      printf ("Cannot open /devv/tty: errno = %d, %s\r\n",
        errno, strerror (errno));
      exit (EXIT_FAILURE);
    }

  write (ttyfd, "\x1B[6n\n", 5);

  unsigned char answer[16];
  size_t answerlen = 0;
  while (answerlen < sizeof (answer) - 1 &&
         read (ttyfd, answer + answerlen, 1) == 1)
    if (answer [answerlen ++] == 'R') break;
  answer [answerlen] = '\0';

  printf ("Answerback = \"");
  for (size_t i = 0; i < answerlen; ++ i)
    if (answer [i] < ' ' || '~' < answer [i])
      printf ("\\x%02X", (unsigned char) answer [i]);
    else
      printf ("%c", answer [i]);
  printf ("\"\r\n");

  return EXIT_SUCCESS;
}

假设这个小程序是answerback.c

$ gcc -Wall -Wextra answerback.c -o answerback
$ stty raw -echo; ./answerback; stty sane

Answerback = "\x1B[24;1R"
$ _

答案 1 :(得分:2)

#include <stdio.h>
#include <termios.h>

int
main() {
 int x = 0, y = 0;
 get_pos(&y, &x);
 printf("x:%d, y:%d\n", x, y);
 return 0;
}

int
get_pos(int *y, int *x) {

 char buf[30]={0};
 int ret, i, pow;
 char ch;

*y = 0; *x = 0;

 struct termios term, restore;

 tcgetattr(0, &term);
 tcgetattr(0, &restore);
 term.c_lflag &= ~(ICANON|ECHO);
 tcsetattr(0, TCSANOW, &term);

 write(1, "\033[6n", 4);

 for( i = 0, ch = 0; ch != 'R'; i++ )
 {
    ret = read(0, &ch, 1);
    if ( !ret ) {
       fprintf(stderr, "getpos: error reading response!\n");
       return 1;
    }
    buf[i] = ch;
    printf("buf[%d]: \t%c \t%d\n", i, ch, ch);
 }

 if (i < 2) {
    printf("i < 2\n");
    return(1);
    }

    for( i -= 2, pow = 1; buf[i] != ';'; i--, pow *= 10)
       *x = *x + ( buf[i] - '0' ) * pow;

    for( i-- , pow = 1; buf[i] != '['; i--, pow *= 10)
       *y = *y + ( buf[i] - '0' ) * pow;

 tcsetattr(0, TCSANOW, &restore);
 return 0;
}