C ++在控制台中移动光标

时间:2013-01-18 17:59:40

标签: c++ winapi console-application keyboard-events

我正在使用Visual Studio 2010,当用户按下键盘上的右数组键时,我正在尝试移动光标:

#include "stdafx.h"
#include <iostream>
#include <conio.h> 
#include <windows.h>

using namespace std;

void gotoxy(int x, int y)
{
  static HANDLE h = NULL;  
  if(!h)
    h = GetStdHandle(STD_OUTPUT_HANDLE);
  COORD c = { x, y };  
  SetConsoleCursorPosition(h,c);
}

int main()
{
    int Keys;
    int poz_x = 1;
    int poz_y = 1;
    gotoxy(poz_x,poz_y);

    while(true)
    {   
        fflush(stdin);
        Keys = getch();
        if (Keys == 77)
                gotoxy(poz_x+1,poz_y);
    }

    cin.get();
    return 0;
}

它正在工作,但只有一次 - 第二次,第三次等按下不起作用。

4 个答案:

答案 0 :(得分:3)

您永远不会在代码中更改poz_x。在你的while循环中,你总是移动到初始值+1。像这样的代码应该是正确的:

while(true)
{   
    Keys = getch();
    if (Keys == 77)
    {
            poz_x+=1;     
            gotoxy(poz_x,poz_y);
    }
}

答案 1 :(得分:0)

你永远不会改变poz_x,所以你总是打电话给

gotoxy(2,1);

在循环中。

答案 2 :(得分:0)

对于上,右,左,下,可以将“键”设置为char值而不是int,在这种情况下,可以使用键“ w”向上移动,“ s”向下移动,“ a”移动左,右为d:

char Keys;
while(true){
    Keys = getch();
    if (Keys == 'd'){
            poz_x+=1;
            gotoxy(poz_x,poz_y);
                }

   if(Keys=='w'){
            poz_y-=1;
            gotoxy(poz_x,poz_y);
                }

    if(Keys=='s'){
            poz_y+=1;
            gotoxy(poz_x,poz_y);
                }

    if(Keys=='a'){
            poz_x-=1;
            gotoxy(poz_x,poz_y);
                }
}

答案 3 :(得分:0)

下面的代码应该可以工作! :)

#include <windows.h>
using namespace std;

POINT p;

int main(){
   while(true){
       GetCursorPos(&p);
       Sleep(1);
       int i = 0;

       if(GetAsyncKeyState(VK_RIGHT)){
          i++;
          SetCursorPos(p.x+i, p.y);
       }
   }
}