/*
#include <stdio.h>
char* mysubstr(char* str, int start, int count)
{
str[start+count] = 0;
return &str[start];
}
int main()
{
char str[100]={};
int a,b;
scanf("%s",str);
scanf("%d %d",&a,&b);
printf("%s",mysubstr(str,a,b));
return 0;
}
///////////////////////////////console GUI
*/
//#include<windows.h>
//#include<Windows.h>
//#include <stdio.h>
//#include <conio.h>
//#define col GetStdHandle(STD_OUTPUT_HANDLE)
//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 : 하얀색 */
//};
//void move(int x, int y){
// COORD pos={x*2,
//y};
// SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);
//}
//
//int main()
//{
// system("mode con:cols=100 lines=40");
// SetConsoleTitle("HPD");
// char str[5][10]={"Ha","ppy","Birt","hday","TO YOU!:)"};
// int colors[5]={12,11,10,8,7};
// int x[5] = {10,11,15,17,20};
// int i,a=0;
// while(1){
// for(i=0;i<5;i++){
// SetConsoleTextAttribute( col,colors[i] );
// if(i==4) move(x[i],22);
// else move(x[i],20); printf(str[i]);
// Sleep(500);
// }
// system("cls");
// Sleep(200);
// }
//
//
// SetConsoleTextAttribute( col,0x009);
// move(10,10); printf("hello");
// move(20,10); printf("world");
//
// while(1){}
// return 0;
//
//}
/* random수 만들기
srand(time(NULL));
int x = rand()%100; //0 ~ 99
printf("%d ",x);
*/
///console key입력
#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
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("@");
}
int main(void) {
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);
move(0,0);
printf("score=%d",score);
}
if (c == -32) { //방향키가 입력되면?
c = _getch();
system("cls");
bug(bx,by);
move(0,0);
printf("score=%d",score);
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++;
move(0,0);
printf("score=%d",score);
move(bx,by); printf(" ");
bug_rand(); bug(bx,by);
star(px,py);
}
}
}
}
return 0;
}