#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include<windows.h>
#include <conio.h> //_getch가 포함되어있는 헤더
#define UP 72
#define DOWN 80
#define LEFT 75
#define RIGHT 77
enum {
BLACK, /* 0 : 검은색 */
DARK_BLUE, /* 1 : 어두운 파랑 */
DARK_GREEN, /* 2 : 어두운 초록 */
DARK_SKY_BLUE, /* 3 : 어두운 하늘 */
DARK_RED, /* 4 : 어두운 빨강 */
DARK_VOILET, /* 5 : 어두운 보라 */
DARK_YELLOW, /* 6 : 어두운 노랑 */
GRAY, /* 7 : 회색 */
DARK_GRAY, /* 8 : 어두운 회색 */
BLUE, /* 9 : 파랑 */
GREEN, /* 10 : 초록 */
SKY_BLUE, /* 11 : 하늘 */
RED, /* 12 : 빨강 */
VIOLET, /* 13 : 보라 */
YELLOW, /* 14 : 노랑 */
WHITE, /* 15 : 하얀색 */
};
int px=10,py=10;
int bx, by;
int score=0;
void bug_rand(){
srand(time(NULL));
bx=rand()%20;
by=rand()%20;
}
void move(int x, int y){
COORD pos={x*2,y};
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);
}
void star(int x, int y){
move(x,y);
printf("●");
}
void bug(int x, int y){
move(x,y);
printf("♡");
}
void s(int x,int y){
move(0,0);
printf("score=%d",score);
}
int main(void) {
int colors[5]={12,11,10,8,7};
system("mode con:cols=80 lines=40");
bug_rand();
char c;
for (;;) {
if (_kbhit()) { //키보드 입력 확인 (true / false)
c = _getch();
if( c=='e')
{
star(10,10);
bug(bx,by);
s(0,0);
move(5,0);
printf("goal=7");
}
if (c == -32) { //방향키가 입력되면?
c = _getch();
system("cls");
bug(bx,by);
s(0,0);
move(5,0);
printf("goal=7");
switch (c) {
case LEFT:px--; break;
case RIGHT: px++;break;
case UP: py--;break;
case DOWN: py++;break;
}
star(px,py);
if(px==bx && py==by) //catch!!
{
score++;
s(0,0);
move(bx,by); printf(" ");
bug_rand(); bug(bx,by);
star(px,py);
}
if(score==7)
{
move(0,0);
printf(" ");
move(bx,by);
printf(" ");
for(int i=0;i<=15;i++)
{
move(15,15);
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),i);
printf("Clear");
Sleep(500);
system("cls");
}
}
}
}
}
return 0;
}