好久之前写的,登陆博客看了下好久没更新了,就随手发出来吧。 用这份代码,QT套了个界面设置速度和地图大小。QT的代码就不发了hhh,毕竟源代码分好几个文件 懒 。 用了Windows.h 所以只能在Windows下运行。 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172#include<Windows.h>
#include<iostream>
#include<cstdio>
#include<cstring>
#include<ctime>
#include<cstdlib>
#include<conio.h>
#include<deque>
using namespace std;
const int MAXC=100,MAXR=100;
typedef pair<int,int> pii;
class Game{
public:
int mat[MAXC][MAXR];
int dx[5],dy[5];
deque<pii> q;
int d,col,row;
bool food;
HANDLE hOut;
void pt(int x, int y,char c){
COORD pos;
pos.X=x*3+2;
pos.Y=y*2+1;
SetConsoleCursorPosition(hOut, pos);
putchar(c);
}
int dir(){
char c1,c2;
if(!_kbhit())
return 4;
c1=getch(),c2=getch();
switch(c2){
case 72:return 1;//up
case 75:return 0;//left
case 77:return 3;//right
case 80:return 2;//down
}
}
void topblock(){
printf("┌");
for(int i=0;i<col-1;++i)
printf("──┬");
puts("──┐");
}
void buttonblock(){
printf("└");
for(int i=0;i<col-1;++i)
printf("──┴");
puts("──┘");
}
void commonblock(){
printf("├");
for(int i=0;i<col-1;++i)
printf("──┼");
puts("──┤");
}
void feed()
{
while(!food){
int xx=rand()%col,yy=rand()%row;
if(!mat[xx][yy]){
mat[xx][yy]=2;
food=1;
pt(xx,yy,'*');
}
}
}
Game(){
row=11,col=11;//settings
dx[0]=dy[1]=-1,dx[3]=dy[2]=1;
dx[1]=dx[2]=dy[0]=dy[3]=dx[4]=dy[4]=0;
d=4;
food=0;
hOut=GetStdHandle(STD_OUTPUT_HANDLE);
}
void start(){
system("chcp 437");
system("mode con:cols=36 lines=24");
system("chcp 65001");
print_init();
while(1){
if(!food){
feed();
}
int t=dir(),nx,ny;
pii tmp=q.front();
if(t==4||(t==0&&d==3)||(t==3&&d==0)||(t==1&&d==2)||(t==2&&d==1)){
nx=tmp.first+dx[d],ny=tmp.second+dy[d];
}
else{
nx=tmp.first+dx[t],ny=tmp.second+dy[t];
d=t;
}
bool death=0;
if(nx>=0&&ny>=0&&nx<row&&ny<col){
if(mat[nx][ny]==1){
death=1;
}
else if(mat[nx][ny]==2){
pt(tmp.first,tmp.second,'O');
q.push_front(pii(nx,ny));
pt(nx,ny,'@');
mat[nx][ny]=1;
food=0;
}
else{
pii tt=q.back();
q.pop_back();
mat[tt.first][tt.second]=0;
pt(tt.first,tt.second,' ');
q.push_front(pii(nx,ny));
pt(tmp.first,tmp.second,'O');
pt(nx,ny,'@');
mat[nx][ny]=1;
}
}
else{
death=1;
}
if(death){
system("cls");
puts("你输了");
system("pause");
}
Sleep(200);
}
}
void print_init(){
system("cls");
topblock();
for(int i=0;i<row;++i){
printf("│");
for(int j=0;j<col;++j){
printf(" │");
}
puts("");
if(i==row-1)
buttonblock();
else commonblock();
}
int xx=rand()%col,yy=rand()%row;
q.push_front(pii(xx,yy));
mat[xx][yy]=1;
pt(xx,yy,'@');
while(1){
int td=rand()%4;
int nx=xx+dx[td],ny=yy+dy[td];
if(nx>=0&&ny>=0&&nx<row&&ny<col){
q.push_back(pii(nx,ny));
mat[nx][ny]=1;
pt(nx,ny,'O');
break;
}
}
feed();
while(1){
int ttt;
if((ttt=dir())!=4){
d=ttt;
break;
}
}
}
};
int main(){
srand((unsigned)time(0));
Game().start();
return 0;
}