将ncurses光标位置存储为变量

时间:2018-08-28 08:15:24

标签: c ncurses

我正在(10, 10)位置打印文本。

  • 等待输入,
  • 清除屏幕,
  • 再做一次。

当我打印文本时,它将光标移动到行尾。如何获得该X,Y位置并将其存储为变量?

我想这样做,以便可以在文本周围绘制一个动画框。

我知道有getyx(window, y, x),但是它有void的回报。

我尝试使用它,但是它不会更改xy的值,它仍会打印在0, 0上。 我不明白如何使用这种方法来做任何事情。

x = y = 0;
getyx(screen, y, x);
move(y, x);
printw("YX TEST"); // prints at 0,0 (bad)

我想做类似的事情:

yPos = getY(screen);
xPos = getX(screen);

然后我可以在哪里根据这些信息处理坐标?

谢谢您的帮助。

3 个答案:

答案 0 :(得分:2)

您创建了第二个窗口,并在仍在stdscr上绘制时使用了该第二个窗口。 我可以重现您的问题与:

WINDOW *w1 = initscr();
WINDOW *w2 = newwin(LINES, COLS, 0, 0);
move(10, 10); // this moves the cursor on w1 or stdscr to (10, 10)
printw("YX TEST"); // this draws on w1, ie. stdscr the default screen
// now the cursor on w1 is on (10, 15) and cursor on w2 is on (0,0)
int x, y;
getxy(w2, x, y); // this gets the position of w2 window, which stayed at (0,0)
getxy(w1, x, y); // this will get you the position in w1 window, ie (10, 15)
refresh(); // this will draw window w1 on the screen, ie. `YX TEST`
wrefresh(w2); // this will draw nothing on the screen, as window w2 is empty

如果有两个窗口,在一个窗口上绘制,然后从第二个窗口获取光标位置,则会得到奇怪的结果。
以下:

#include <ncurses.h>
#include <stdio.h>
#include <unistd.h>
#include <assert.h>

void mybox(WINDOW *w, int sx, int sy, int ex, int ey)
{
        assert(w != NULL);
        assert(sx <= ex);
        assert(sy <= ey);
        // up
        wmove(w, sy, sx);
        wprintw(w, "+");
        for (int i = sx + 1; i < ex; ++i) {
                wprintw(w, "-");
        }
        wprintw(w, "+");
        // left right
        for (int i = sy + 1; i < ey; ++i) {
                wmove(w, i, ex);
                wprintw(w, "|");
                wmove(w, i, sx);
                wprintw(w, "|");
        }
        // down
        wmove(w, ey, sx);
        wprintw(w, "+");
        for (int i = sx + 1; i < ex; ++i) {
                wprintw(w, "-");
        }
        wprintw(w, "+");
}

int main() {
        WINDOW *w = initscr();
        for (int i = 2; i; --i) {
                // print text at a location (10,10)
                move(10, 10);
                printw("YX TEST %d", i);
                refresh();
                // let's draw a box around.
                int x, y;
                getyx(w, y, x);
                mybox(w, 9, 9, x, y + 1); // x = 10, y = 19
                refresh();
                // wait for input
                getch();
                // clear screen
                clear();
                // doing it again
        }
        endwin();
        return 0;
}

YX TEST ?文本周围绘制一个框:

 +---------+
 |YX TEST 2|
 +---------+

如果您要具有返回光标位置的功能,只需编写它们...

 int getX(WINDOW *win) {
      int x, y;
      getxy(win, y, x);
      return x;
 }

 int getY(WINDOW *win) { 
      int x, y; 
      getxy(win, y, x); 
      return y;
 }

答案 1 :(得分:0)

您可以使用({legacy featuresgetcurygetcurx

答案 2 :(得分:0)

由于您没有提供完整的示例,因此很难找出问题所在。

这是一个完整的最小工作示例:

#include <stdlib.h>
#include <stdio.h>
#include <curses.h>

int main(void) {

    WINDOW * win = initscr();

    mvaddstr(10, 10, "Hello, world!");
    refresh();

    int y,x;
    getyx(win, y, x);

    // Test output two lines below
    y+=2;
    mvprintw(y, x, "X: %d, Y: %d", x, y);
    refresh();

    // press the ANY key ;-)
    getch();
    endwin();

    return EXIT_SUCCESS;
}

输出在Hello,World!的右下方。测试字符串并按预期显示X: 23 Y: 12