-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSpaceInvaders.cpp
2149 lines (1804 loc) · 39.2 KB
/
SpaceInvaders.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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#include<dos.h>
#include<stdlib.h>
#include<math.h>
#include<ctype.h>
#include<time.h>
#include<limits.h>
#include<string.h>
#include<fstream.h>
#define UP 72
#define DOWN 80
#define LEFT 75
#define RIGHT 77
#define SPACE 32
#define ENTER 13
#define ESC 27
#define X_max 80
#define Y_max 25
#define TRUE 1
#define FALSE 0
#define W WHITE
#define Y YELLOW
#define O BROWN
#define R LIGHTRED
#define RR RED
#define B LIGHTBLUE
#define LB LIGHTCYAN
#define G GREEN
#define LG LIGHTGREEN
#define S LIGHTGRAY
#define DS DARKGRAY
#define P MAGENTA
#define PK LIGHTMAGENTA
/******************************************************
some mathematical functions
******************************************************/
//returns true if x belongs to [x1,x2] else false
inline char _rangeof(int x1,int x,int x2)
{
if(x1<=x&&x<=x2)
return TRUE;
return FALSE;
}
//returns the sign of the argument passed
inline char sign(char t)
{
if(t<=0)
return -1;
return 1;
}
//&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
void box(int x1,int y1,int x2,int y2,char color=W,char bkg=0);
void win(char clr=0);
void regenerate();
/*****************************************************
******************************************************/
//class which manages player scores and the high score file
class HIGHSCORES
{
class PLAYER_SCORE
{
char Name[10];
int Score;
public:
PLAYER_SCORE()
{
strcpy(Name,"xoxoxoxox");
Score=0;
}
char* getName()
{
return Name;
}
int getScore()
{
return Score;
}
void putdata(char name[],int h_score)
{
Score=h_score;
strupr(name);
strcpy(Name,name);
}
};
PLAYER_SCORE P[15]; //stores the top 15 highscore
public:
HIGHSCORES(); //opens the file and reads data into the array and removes the file
void high_scores(); //displays the high score
void check_score(int score); //checks if a score is highscore and adds the player into the array
~HIGHSCORES(); //writes the updated arry back to file
};
HIGHSCORES::HIGHSCORES()
{
fstream f("SPI_HS.DAT",ios::binary|ios::in|ios::nocreate);
char i=0;
if(!f)
{
f.close();
f.open("SPI_HS.DAT",ios::binary|ios::out);
PLAYER_SCORE h;
for(i=0;i<15;++i)
f.write((char*)&h,sizeof(h));
f.close();
return;
}
f.seekg(0);
while(f.read((char*)&P[i],sizeof(PLAYER_SCORE)))
++i;
f.close();
remove("SPI_HS.DAT");
}
void HIGHSCORES::high_scores()
{
win(1);
box(1,1,79,25,LB);
box(20,3,60,23,R);
window(21,4,59,22);
gotoxy(2,2);
textcolor(Y);
cprintf(" RANK NAME SCORE");
char i=0;
char clr[]={LG,B,R,PK,W,LB};
for(;i<15;i++)
{
gotoxy(2,4+i);
textcolor(W);
cprintf(" - ---------- ---- ");
}
i=0;
while(i<15)
{
if(P[i].getScore()==0)
break;
textcolor(clr[i%6]);
gotoxy(2,4+i);
cprintf(" ");
gotoxy(5,4+i);
cprintf("%d",i+1);
gotoxy(15,4+i);
cprintf("%s",P[i].getName());
gotoxy(31,4+i);
cprintf(" %d",P[i].getScore());
i++;
}
win();
getch();
}
void HIGHSCORES::check_score(int score)
{
win(1);
PLAYER_SCORE X;
char i=0;
if(P[14].getScore()>=score)
return;
char name[10];
win(1);
box(24,9,55,11,LG);
window(25,10,54,10);
clrscr();
gotoxy(2,1);
textcolor(W);
cprintf("YOUR NAME :");
_setcursortype(_SOLIDCURSOR);
gotoxy(38,1);
cin>>name;
_setcursortype(_NOCURSOR);
win();
X.putdata(name,score);
win(1);
textcolor(11);
for(i=13;i>=0&&P[i].getScore()<X.getScore();--i)
P[i+1]=P[i];
P[i+1]=X;
high_scores();
}
HIGHSCORES::~HIGHSCORES()
{
fstream f("SPI_HS.DAT",ios::binary|ios::out);
f.seekp(0,ios::beg);
for(char i=0;i<15;++i)
f.write((char*)&P[i],sizeof(PLAYER_SCORE));
f.close();
}
HIGHSCORES H;
/****************************************************
*****************************************************/
/*
Class whose objects are enemy ships and the player ship
and the functions that determine the behaviour of the ships
*/
class SHIPS
{
//each node is a ship in the list of ships
class NODE
{
char Player; //whether the ship is the player or the enemy
float x,y,x_prev,y_prev; //current and previous coordinates of the ship
float velocity_x,velocity_y; //velocities along x and y axes
float health; //health points of the ship
char rows,columns; //rows and columns of the ship
char SHIP[5][10]; //structure of the ship
char color[5][10]; //color scheme of the ship
public:
NODE* f_link,*b_link; //links to implement a doubly linked list
char gettype()
{
return Player;
}
void draw_ship(); //draws the ship at the current coordinates
void clear_ship(); //clears the previously drawn ship
float _Health() //to get the health of the ship
{
return health;
}
void _UpdateHealth(float dh) //to change the health,i.e,damage or health points
{
health+=dh;
if(Player&&health>20)
health=20;
}
void _ChangeVelocityx(float vx) //to change the velocity of the ship
{
velocity_x=vx;
}
void RevVelocityx() //to reverse the direcion of the ship
{
velocity_x*=-1;
}
float getx()
{
return x;
}
float gety()
{
return y;
}
void modCord(char xn,char yn) //sets coordinates of the ship
{
x=xn;
y=yn;
}
void CCord() //assigns the current coordinates to prev coordinates
{
x_prev=floor(x);
y_prev=floor(y);
}
void motionx() //moves the ship along x_axis
{
x_prev=floor(x);
x+=velocity_x;
char r=(rows==3)?2:1;
if(!_rangeof(4+r,x,57-r))
RevVelocityx(),motionx();
}
char motion() //determines the behaviour of the ships
{
motionx();
if(Player)
return FALSE;
y_prev=floor(y);
if(!(rand()%19))
RevVelocityx();
if(!(rand()%37))
y+=velocity_y;
if(y<=Y_max-4)
return TRUE;
return FALSE;
}
NODE(char);
NODE();
~NODE();
};
int ships_on_screen; //the total number of ships on the screen
int score;
char c_d,c_z,c_t; //variables used for random shooting and ship generation,etc
char p_life; //number of life the player has
NODE *temp,*start;
public:
NODE*Player;
int getScore()
{
return score;
}
int Ships_onScreen()
{
return ships_on_screen;
}
void reset_counter()
{
ships_on_screen=0;
score=0;
p_life=3;
start=new NODE('p');
Player=temp=start;
}
void difficulty_weights(int z,int d,int t) //assigns values to all randomizing variables
{
c_z=z;
c_d=d;
c_t=t;
}
SHIPS()
{
start=temp=Player=NULL;
}
~SHIPS()
{
destroy_all();
}
void draw_ships(); //draws all the ships in the list
void clear_ships(); //clears all the ships inthe list
char move_ships(); //moves all the ships in the list
void new_ship(char x,char y,char direction); //adds new ship in the list
NODE* delete_ship(NODE * ptr); //deletes the node passed from the list
char check_mutual_collision(NODE*i); //checks collision among the ships and takes action
void destroy_all(); //deletes all nodes in the list
void behaviour(); //determines when a ships shoots or changes direction
};
void SHIPS::NODE::draw_ship()
{
for(char i=0;i<rows;++i)
for(char j=0;j<columns;++j)
{
gotoxy( floor(x)+j-(columns/2) , floor(y)+i-(rows/2) );
textcolor( *(*(color+i)+j) );
cprintf("%c",*(*(SHIP+i)+j) );
}
}
void SHIPS::NODE::clear_ship()
{
for(char i=0;i<rows;++i)
for(char j=0;j<columns;++j)
{
if(!_rangeof(3,floor(x_prev)+j-(columns/2),57))
continue;
gotoxy( floor(x_prev)+j-(columns/2) , floor(y_prev)+i-(rows/2));
cprintf(" ");
}
}
SHIPS::NODE::NODE(char c) //Player
{
x=32,y=y_prev=Y_max-2;
f_link=b_link=NULL;
Player=TRUE;
rows=3;
columns=5;
health=20.0;
velocity_x=1;
velocity_y=0;
char a[3][5]={ ' ',' ',179,' ',' ',
' ',201,206,186,' ',
197,201,206,186,197 };
char clr[3][5]={ 0,0,W,0,0,
0,R,R,R,0,
B,G,R,G,B };
for(char i=0;i<rows;++i)
for(char j=0;j<columns;++j)
{
*(*(SHIP+i)+j)=*(*(a+i)+j);
*(*(color+i)+j)=*(*(clr+i)+j);
}
}
SHIPS::NODE::NODE() //Enemy ships
{
x=y=x_prev=y_prev=0;
rows=columns=0;
f_link=b_link=NULL;
Player=FALSE;
rows=2;
columns=3;
health=3.0;
velocity_x=0.8;
velocity_y=0.2;
char a[2][3]={ 219,' ',219,
' ',216,' ' };
char clr[2][3]={ LB,Y+BLINK,LB,
0,R,0 };
for(char i=0;i<rows;++i)
for(char j=0;j<columns;++j)
{
*(*(SHIP+i)+j)=*(*(a+i)+j);
*(*(color+i)+j)=*(*(clr+i)+j);
}
}
SHIPS::NODE::~NODE()
{
f_link=b_link=NULL;
x=y=x_prev=y_prev=0;
for(char i=0;i<rows;++i)
for(char j=0;j<columns;++j)
*(*(SHIP+i)+j)=*(*(color+i)+j)=0;
rows=columns=0;
}
void SHIPS::draw_ships()
{
for(NODE* i=start;i;i=i->f_link)
i->draw_ship();
}
void SHIPS::clear_ships()
{
for(NODE* i=start;i;i=i->f_link)
i->clear_ship();
}
inline void SHIPS::new_ship(char x,char y,char direction)
{
NODE *ptr=new NODE;
if(!ptr)
return;
if(!start)
{
start=ptr;
start->b_link=NULL;
}
else
{
temp->f_link=ptr;
ptr->b_link=temp;
}
ptr->modCord(x,y);
if(direction<0)
ptr->RevVelocityx();
temp=ptr;
++ships_on_screen;
}
SHIPS::NODE* SHIPS::delete_ship(NODE * ptr)
{
ptr->clear_ship();
ptr->CCord();
ptr->clear_ship();
NODE * t=NULL;
if(ptr==start)
{
start=start->f_link;
(ptr->f_link)->b_link=NULL;
t=start;
}
else
{
score+=5;
(ptr->b_link)->f_link=ptr->f_link;
if(ptr->f_link)
(ptr->f_link)->b_link=ptr->b_link;
else
temp=ptr->b_link,temp->f_link=NULL;
t=ptr->b_link;
}
--ships_on_screen;
delete ptr;
return t;
}
char SHIPS::check_mutual_collision(NODE*i)
{
float y=i->gety();
float x=i->getx();
char r=1;
for(NODE *j=start->f_link;j;j=j->f_link)
if(j!=i)
{
//check for collision along x-axis
//if true...reflect
if(j->gety()==y)
{
if(x+r==j->getx()-1||x-r==j->getx()+1||x+r==j->getx()+1||x-r==j->getx()-1) {
j->RevVelocityx(); //reversing direction
j->clear_ship();
j->motionx();
check_mutual_collision(j);
j->clear_ship();
return 2;
}
if(abs(i->getx() - j->getx())<1)
i->RevVelocityx();
}
}
return FALSE;
}
void SHIPS::destroy_all()
{
NODE* t=NULL;
for(NODE* i=start;i;i=i->f_link)
delete t,t=i;
temp=start;
}
SHIPS Ships;
/****************************************************
*****************************************************/
/*
Class whose objects are bullets and
and the functions that determine the behaviour of the bullets
*/
class BULLETS
{
//each node is a ship in the list of ships
class NODE
{
char ch,color,type; //character ,color and type(enemy/player)
char x; //x-coordinate of the bullet
float y,y_prev,velocity; //y-coordinate,previous y-coordinate,velocity
float damage; //damage caused by the bullet
public:
NODE* f_link,*b_link;
void draw_bullet()
{
gotoxy(x,floor(y));
textcolor(color);
cprintf("%c",ch);
}
void clear_bullet()
{
gotoxy(x,floor(y_prev));
cprintf(" ");
}
void CCord()
{
y_prev=y;
}
char motion()
{
y_prev=y;
y+=velocity;
if(!_rangeof(1,y,24))
{
velocity=0;
return TRUE;
}
return FALSE;
}
float GetDamage()
{
return damage;
}
char getx()
{
return x;
}
float gety()
{
return y;
}
char gettype()
{
return type;
}
NODE(char,char,float);
~NODE()
{
f_link=b_link=NULL;
x=y=y_prev=0;
color=ch=damage=0;
}
};
int bullet_count[2]; //stores ammo count
NODE*start,*temp;
public:
int GetBulletCount(char type)
{
return bullet_count[type];
}
void UpdateBulletCount(char dx,char type)
{
if(bullet_count[type]==(type+1)*10)
return;
bullet_count[type]+=dx;
if(bullet_count[type]>(type+1)*10)
bullet_count[type]=(type+1)*10;
}
void initialize_bullets(int b0=0,int b1=0)
{
bullet_count[0]=b0;
bullet_count[1]=b1;
}
void draw_bullets(); //draws all the bullets
void clear_bullets(); //clears all the bullets
void move_bullets(); //moves all the bullets
void bullet_shot(char type,char x,float y); //adds a new bullet to the list
NODE* delete_bullet(NODE*ptr); //deletes the passed node from the list
void delete_all(); //deletes all the nodes from the list
void check_mutual_collision(NODE *i); //checks collision among bullets and takes action
float check(SHIPS::NODE*); //checks collision of bullets with the ships
BULLETS()
{
start=temp=NULL;
bullet_count[0]=bullet_count[1]=0;
}
~BULLETS()
{
delete_all();
}
};
BULLETS::NODE::NODE(char t,char xn, float yn)
{
f_link=b_link=NULL;
x=xn,y=yn;
type=(sign(t)<0)?TRUE:FALSE;
switch(t)
{
case -2 : velocity=-1.0;
color=RR;
damage=-2.0;
ch=4;
break;
case -1 : velocity=-1.0;
color=G;
damage=-3.0;
ch=24;
break;
case 0 : velocity=-1.0;
color=W;
damage=-0.5;
ch='.';
break;
case 1 : velocity=1;
color=PK;
damage=-2;
ch=31;
break;
case 2 : velocity=1;
color=Y;
damage=-4;
ch=179;
break;
case 10 : velocity=0.5;
color=R;
damage=5;
ch=3;
break;
case 11 : type=11;
velocity=0.5;
color=R;
damage=11;
ch=15;
break;
case 12 : type=12;
velocity=0.5;
color=LG;
damage=12;
ch=15;
break;
}
}
void BULLETS::draw_bullets()
{
for(NODE*i=start;i;i=i->f_link)
i->draw_bullet();
}
void BULLETS::clear_bullets()
{
for(NODE*i=start;i;i=i->f_link)
i->clear_bullet();
}
void BULLETS::move_bullets()
{
for(NODE*i=start;i;i=i->f_link)
{
if(i->motion())
i=delete_bullet(i);
else
check_mutual_collision(i);
}
}
inline void BULLETS::bullet_shot(char type,char x,float y)
{
NODE *ptr=new NODE(type,x,y);
if(!ptr)
return;
if(type<0&&bullet_count[(-1*type)-1]<=0)
{
delete ptr;
return;
}
if(type<0)
--bullet_count[(-1*type)-1];
if(!start)
{
start=ptr;
start->b_link=NULL;
}
else
{
temp->f_link=ptr;
ptr->b_link=temp;
}
temp=ptr;
}
BULLETS::NODE* BULLETS::delete_bullet(NODE*ptr)
{
ptr->clear_bullet();
ptr->CCord();
ptr->clear_bullet();
NODE * t=NULL;
if(ptr==start)
{
start=start->f_link;
(ptr->f_link)->b_link=NULL;
t=start;
}
else
{
(ptr->b_link)->f_link=ptr->f_link;
if(ptr->f_link)
(ptr->f_link)->b_link=ptr->b_link;
else
temp=ptr->b_link,temp->f_link=NULL;
t=ptr->b_link;
}
delete ptr;
return t;
}
void BULLETS::delete_all()
{
NODE* t=NULL;
for(NODE*i=start;i;i=i->f_link)
delete t,t=i;
delete t;
}
void BULLETS::check_mutual_collision(NODE *i)
{
for(NODE *j=start;j;j=j->f_link)
{
if(i->gettype()!=j->gettype())
if(i->getx()==j->getx())
if(i->gety()==j->gety())
{
i->clear_bullet();
j->clear_bullet();
j->CCord();
j->clear_bullet();
i=delete_bullet(i);
j=delete_bullet(j);
return;
}
}
}
BULLETS Bullets;
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
float BULLETS::check(SHIPS::NODE *ship)
{
char r;
char x_upper,y_upper,x_lower,y_lower;
if(ship==Ships.Player)
{
x_upper=floor(ship->getx())+2;
y_upper=floor(ship->gety())+1;
x_lower=floor(ship->getx())-2;
y_lower=floor(ship->gety())-1;
}
else
{
x_upper=floor(ship->getx())+1;
y_upper=floor(ship->gety())+1;
x_lower=floor(ship->getx())-1;
y_lower=floor(ship->gety())-1;
}
char type_s=ship->gettype();
for( NODE* i=start ;i; i=i->f_link )
{
if( type_s == ((i->gettype()<=0)?1:0) )
if(_rangeof(x_lower,floor(i->getx()),x_upper))
if( _rangeof(y_lower,floor(i->gety()),y_upper))
{
float d=i->GetDamage();
i=delete_bullet(i);
return d;
}
}
return FALSE;
}
char SHIPS::move_ships()
{
char p_lost=FALSE;
for(NODE *i=start;i;i=i->f_link)
{
if(i==start)
{
if(start->_Health()<=0.0)
{
if(p_life>0)
{
p_life--;
gotoxy(73+p_life*2,7);
textcolor(DS);
textbackground(B);
cprintf("%c",3);
textbackground(0);
regenerate();
Player->_UpdateHealth(20);
}
else
{
clrscr();
p_lost=TRUE;
}
}
start->motionx();
}
else
{
if(i->_Health()<=0.0)
{ i->clear_ship();
i=delete_ship(i);
continue;
}
i->motion();
if(i->gety()+1>Y_max-3||i->_Health()<=0)
{
i->clear_ship();
i=delete_ship(i);
}
}
float damage=Bullets.check(i);
if(!damage)
continue;
else if(damage==11||damage==12)
{
char dx,t=0;
if(damage==11)
dx=10,t=1;
else if (damage==12)
dx=5,t=0;
Bullets.UpdateBulletCount(dx,t);
}
else
{
i->_UpdateHealth(damage);
if(!(i->_Health()))
{
if(i!=start)
i=delete_ship(i);
}
if(i==start)
{
gotoxy(73,5);
textcolor(W);
textbackground(B);
cprintf(" ");
gotoxy(73,5);
cprintf("%d",(int)i->_Health());
textbackground(0);
}
}
}
for(i=start->f_link; i; i=i->f_link)
{
switch(check_mutual_collision(i))
{
case 2 : i->RevVelocityx();
i->clear_ship();
i->motionx();
i->clear_ship();
break;