#include <stdio.h>
#include <windows.h>
#include <Windows.h>
#include <conio.h>
#include <stdlib.h>
#define UP 1
#define DOWN
#define LEFT 3
#define RIGHT 4
#include <process.h>
#include <stdlib.h>
#include <time.h>
int player[2]={57,25},end=0,start=0,random=0,t=0,atacker[2]={0,0},atackof=-1;
//x=14 9칸 이동
//y=6 9칸 이동
char map[128][56]={};
int cluck(){
while(end!=1)
{
Sleep(1000);
t++;
}
}
void setcolor(unsigned short text, unsigned short back){
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), text | (back << 4));
}
void gotoxy(int x, int y){
COORD pos={x,y};
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);
}
void mapload(){
int xwall,ywall;
for(ywall=0;ywall<=55;ywall++)
{
for(xwall=0;xwall<=128;xwall++)
{
printf("%c",map[xwall][ywall]);
}
printf("\n");
}
}
int play(){
setcolor(12, 0);
char heart[6][100]={" #### #### ","##############","##############"," ########## "," ###### "," ## "};
gotoxy(player[0],player[1]);
for(int i=0, x=player[1];i<6;i++,x++){
gotoxy(player[0],x);
printf("%s\n",heart[i]);
}
gotoxy(0,56);
setcolor(15, 0);
printf("time %d",t);
}
int notplay(){
char heart[6][100]={" "," "," "," "," "," "};
gotoxy(player[0],player[1]);
for(int i=0, x=player[1];i<6;i++,x++){
gotoxy(player[0],x);
printf("%s\n",heart[i]);
}
}
int scan(){
char c;
if (_kbhit()) { //키보드 입력 확인 (true / false)
c = _getch(); // 방향키 입력시 224 00이 들어오게 되기에 앞에 있는 값 224를 없앰
if (c == -32) { // -32로 입력되면
c = _getch(); // 새로 입력값을 판별하여 상하좌우 출력
switch (c) {
case 75:
//printf("왼쪽으로 이동\n");
if(player[0]>2)
player[0]-=14;
break;
case 77:
//printf("오른쪽으로 이동\n");
if(player[0]<113)
player[0]+=14;
break;
case 72:
//printf("위로 이동\n");
if(player[1]!=1)
player[1]-=6;
break;
case 80:
//printf("아래로 이동\n");
if(player[1]<48)
player[1]+=6;
break;
}
//gotoxy(player[0],player[1]);
//play();
}
}
}
int move(){
while(end!=1)
{
play();
Sleep(5);
notplay();
scan();
}
}
int zeroatack(){
int i=0;
atackof=0;
return 0;
}
int firstatack(){
int i=0;
atackof=1;
return 0;
}
int secondatack(){
int i=0;
atackof=2;
return 0;
}
int thirdatack(){
int i=0;
atackof=3;
return 0;
}
int fourthatack(){
int i=0;
atackof=4;
return 0;
}
int atack(){
int random;
while(end!=1)
{
srand(time(NULL));
random = rand() % 5;
switch(random)
{
case 0:zeroatack(); break;
case 1:firstatack(); break;
case 2:secondatack(); break;
case 3:thirdatack(); break;
case 4:fourthatack(); break;
}
}
}
int main(){
setcolor(15, 0);
system("title ?");
system("mode con:cols=200 lines=200");
int xwall,ywall;
Sleep(2000);
for(ywall=0;ywall<=55;ywall++)
{
for(xwall=0;xwall<=128;xwall++)
{
if(xwall==0||xwall==128||ywall==0||ywall==55)
map[xwall][ywall]='#';
else
map[xwall][ywall]=' ';
}
}
mapload();
_beginthreadex(NULL, 0, cluck, 0, 0, NULL);
_beginthreadex(NULL, 0, atack, 0, 0, NULL);
_beginthreadex(NULL, 0, move, 0, 0, NULL);
while(t<60){}
end=1;
Sleep(10);
gotoxy(0,56);
setcolor(15, 0);
printf(" ");
setcolor(15, 0);
gotoxy(57,25);
printf("time 60");
gotoxy(57,25);
}
// https://m.blog.naver.com/dgsw102/221235029416