-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgotoxy.c
33 lines (28 loc) · 1.14 KB
/
gotoxy.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <stdio.h>
#include <stdlib.h>
#include <windows.h>
void gotoxy(int X,int Y){ /// Cambia las coordenadas del cursor
HANDLE hcon;
hcon = GetStdHandle(STD_OUTPUT_HANDLE);
COORD dwPos;
dwPos.X=X;
dwPos.Y=Y;
SetConsoleCursorPosition(hcon,dwPos);
}
int whereX(){ /// Devuelve la posicion de X
CONSOLE_SCREEN_BUFFER_INFO sbi;
GetConsoleScreenBufferInfo (GetStdHandle(STD_OUTPUT_HANDLE), &sbi);
return sbi.dwCursorPosition.X;
}
int whereY(){ /// Devuelve la posicion de Y
CONSOLE_SCREEN_BUFFER_INFO sbi;
GetConsoleScreenBufferInfo (GetStdHandle(STD_OUTPUT_HANDLE), &sbi);
return sbi.dwCursorPosition.Y;
}
void hidecursor(int ver){ /// funcion para mostrar o esconder el cursor
HANDLE consoleHandle = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_CURSOR_INFO info;
info.dwSize = 1;
info.bVisible = ver;
SetConsoleCursorInfo(consoleHandle, &info);
}