-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsnakeGame.cpp
executable file
·304 lines (261 loc) · 7.58 KB
/
snakeGame.cpp
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
// header files
#include<iostream>
#include<time.h>
#include"headerFile/getchInLinux.h" // for getch() in linux
#include"headerFile/kbhit3.h" // for kbhit() in Linux
#include<cstdlib> // for exit()
using namespace std;
// class
class snake
{
// by default private
int borderX,borderY;
int foodX,foodY;
int x,y,score;
int totalSegment;
int snakeTail[2][100]; //
string name;
public:
snake(); // constructor
void showBorder();
void foodGenerate();
int readEnteredKey();
int changeDirectcion(int);
int eatingCheck(); // if food eaten by snake return 1 , else return 0
void increaseScore();
void showScore();
int checkBoundryCollision();
void addSegment();
int checkOverlap();
void delay1();
};
snake:: snake()
{
system("clear");
cout<<"Enter Your Good Name: ";
cin>>name;
system("clear");
cout<<"\n SNAKE .................GAME ! \n\n";
cout<<" RULE OF THIS GAME \n";
cout<<"\n1.You can move snake in up,Down,Left or Right only by arrow key ";
cout<<"\nMove Up : by Up arrow key ";
cout<<"\nMove Down : by Down arrow key";
cout<<"\nMove Left : by Left arrow key";
cout<<"\nMove Right: by Right arrow key";
cout<<"\n\n2.You can exit the game at any time by pressing 'E' or 'e' ";
cout<<"\n3.For each eaten food You will be awared a 5 point ";
cout<<"\n\n Happy gaming , Good Luck\n";
cout<<"\nEnter any key to start..... : ";
score=0; // initial zero
borderX=90;
borderY=30;
x=borderX/2;
y=borderY/2;
totalSegment=0; // snake segment
}
void snake:: showScore()
{
cout<<"your score: "<<score<<endl<<endl;
}
void snake:: showBorder()
{
system("clear");
cout<<" SNAKE GAME ";
cout<<"\n\nWelcome "<<name<<" , ";
showScore();
for(int i=1;i<=borderY;i++)
{ for(int j=1;j<=borderX;j++)
if((i==1 || i==borderY )|| (j==1 || j== borderX))
cout<<".";
else if(j==foodX && i==foodY)
cout<<"F";
else if(checkBoundryCollision())
{}
else if(j==x && i==y)
cout<<"@";
else if(eatingCheck())
{
foodGenerate(); // generate new food for snake
increaseScore(); // increase score
delay1();
delay1();
delay1();
delay1();
delay1();
addSegment(); // to add segmments
}
else // printing snake segments
{ int temp=0;
for(int k=1;k<=totalSegment;k++)
if(j==snakeTail[0][k] && i==snakeTail[1][k])
{ cout<<"o";
temp=1;
}
if(!temp)
cout<<" ";
}
cout<<endl;
}
}
void snake:: foodGenerate()
{
delay1();
delay1();
delay1();
delay1();
srand(time(NULL));
while(1)
{ foodX=rand()%(borderX); // randomly
foodY=rand()%(borderY);
if(foodX>1 && foodY>1)
break;
}
totalSegment++; // segments increased by one
}
// Reads the user input character and return ascii value of that
int snake::readEnteredKey()
{
char c;
c = getchInLinux();
if(c==27 || c==91) // this is just for scan code
{ c = getchInLinux();
if(c==27 || c==91) // also for scan code
c=getchInLinux();
}
return c;
}
int snake::changeDirectcion(int key)
{
switch(key)
{
case 69: // ascii of E
case 101: // ascii of e
cout<<"\a\a\a\a\a\a\n Thanks for Playing ! \n\a";
cout<<"\nHit 'Enter' to exit the game \n";
key=readEnteredKey();
exit(0);
case 65: // arrow up
y--;
return 1;
case 66: // arrow down
y++;
return 1;
case 67: // arrow right
x++;
return 1;
case 68: // arrow left
x--;
return 1;
default:
// cout<<"\n\n \a\a❌ Not Allowed \a\a\a\a");
return 0;
}
}
int snake::checkBoundryCollision()
{
if(x<=1 || x>=borderX || y<=1 || y>=borderY)
{ system("clear");
cout<<"\nGame Over ! ";
showScore();
delay1();
delay1();
exit(0);
}
return 0;
}
int snake::eatingCheck()
{
if(foodX==x && foodY==y)
return 1;
return 0;
}
void snake::increaseScore()
{
score+=5;
}
void snake:: addSegment()
{
// idea is that , each snake segments will follow its front snake.
// i.e
// first segment will follow snake's HEAD
// 2nd segment " " 1st segment
// 3rd segment " " 2nd segment
int prev1X=snakeTail[0][0];
int prev1Y=snakeTail[1][0];
int current1X;
int current1Y;
snakeTail[0][0]=x;
snakeTail[1][0]=y;
for(int i=1;i<totalSegment;i++)
{
current1X=snakeTail[0][i];
current1Y=snakeTail[1][i];
snakeTail[0][i]=prev1X;
snakeTail[1][i]=prev1Y;
prev1X=current1X;
prev1Y=current1Y;
}
}
int snake:: checkOverlap()
{
int i;
for(i=0;i<totalSegment;i++)
if(x==snakeTail[0][i] && y==snakeTail[1][i])
break;
if(i<totalSegment)
{
system("clear");
cout<<"\nGame Over ! ";
showScore();
delay1();
delay1();
exit(0);
}
return 0;
}
void snake::delay1()
{
for(int i=1;i<=10000;i++)
for(int j=1;j<=1000;j++);
}
int main() // main function
{
int key,d;
snake s1;
int x=s1.readEnteredKey();
x=s1.readEnteredKey();
system("clear");
s1.foodGenerate();
s1.showBorder();
key=s1.readEnteredKey();
s1.delay1();
s1.delay1();
while(1)
{
while(!kbhitInLinux())
{
s1.showBorder();
d=s1.changeDirectcion(key);
s1.checkOverlap();
s1.addSegment(); // to add snake segmments
s1.delay1();
s1.delay1();
s1.delay1();
s1.delay1();
s1.delay1();
s1.delay1();
system("clear");
}
s1.showBorder();
key=s1.readEnteredKey();
s1.delay1();
s1.delay1();
s1.delay1();
s1.delay1();
s1.delay1();
d=s1.changeDirectcion(key);
s1.checkOverlap();
s1.addSegment(); // to add segmments
}
return 0; // return from main
}