-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSorryGame.cpp
1634 lines (1558 loc) · 57.1 KB
/
SorryGame.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
//This Code was developed by a group of student at Faculty of Engineering, Cairo University, department of electrical communications and electronics.
#include <iostream>
#include <bits/stdc++.h>
#include <cstdlib>
#include <time.h>
#include <windows.h>
#include <cwchar>
#include<stdlib.h>
#include <chrono>
#include <limits>
#include <conio.h>
using namespace std;
using namespace std::chrono;
CONSOLE_FONT_INFOEX cfi;
//Global variables
bool win = true, cmplxtyCalc =false; // is the game over , refresh the screen , calc time cmplx.
int drawnCard;
int usize = 4, csize = 4, dusize = 0, dcsize = 0,colours[4];
#define MAX 4 // Governs the stack size and consecutively the number of pawns, THIS PARAMETER CAN BE ALTERED FROM 1~4 TO STUDY TIME COMPLEXITY
//pawn implementation
struct pawn
{
char s; //symbol
int x, y; //Coordinates on the board
bool red, safe;
};
//Queue implementation
struct Queue {
int front, rear, capacity;
int* queue;
Queue(int c)
{
front = rear = 0;
capacity = c;
queue = new int;
}
~Queue() { delete[] queue; }
void Enqueue(int data)
{
// insert element at the rear
queue[rear] = data;
rear++;
}
int Dequeue()
{
int drawn = queue[front];
// shift all the elements from index 2 till rear
// to the left by one
for (int i = 0; i < rear - 1; i++) {
queue[i] = queue[i + 1];
}
// decrement rear
rear--;
return drawn;
}
bool isEmpty()
{
return (front == rear);
}
};
//Stack implementation (stack of pawns)
class Stack {
int top;
public:
pawn stack[MAX];
Stack() { top = -1; }
bool push(pawn x);
bool isEmpty();
pawn pop();
void emptyTheStack();
int length()
{
return top;
}
};
bool Stack::push(pawn x)
{
if (top >= (MAX - 1)) {
cout << "Stack Overflow";
return false;
}
else {
stack[++top] = x;
return true;
}
}
pawn Stack::pop()
{
pawn x = stack[top--];
return x;
}
bool Stack::isEmpty()
{
return (top < 0);
}
void Stack::emptyTheStack(){
while (!isEmpty())
this->pop();
}
Stack user, computer, DU, DC;
Queue DOC(45); //Deck of cards (DOC)
void setFont(CONSOLE_FONT_INFOEX* cfi,int size_y){
cfi->nFont = 0;
cfi->dwFontSize.X = 0; // Width of each character in the font
cfi->dwFontSize.Y = size_y; // Height
cfi->FontFamily = FF_DONTCARE;
cfi->FontWeight = FW_NORMAL;
std::wcscpy(cfi->FaceName, L"Consolas"); // Choose your font
SetCurrentConsoleFontEx(GetStdHandle(STD_OUTPUT_HANDLE), FALSE, cfi);
}
void clearConsole() {
COORD topLeft = { 0, 0 };
HANDLE console = GetStdHandle(STD_OUTPUT_HANDLE);
CONSOLE_SCREEN_BUFFER_INFO screen;
DWORD written;
GetConsoleScreenBufferInfo(console, &screen);
FillConsoleOutputCharacterA(
console, ' ', screen.dwSize.X * screen.dwSize.Y, topLeft, &written
);
FillConsoleOutputAttribute(
console, FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_BLUE,
screen.dwSize.X * screen.dwSize.Y, topLeft, &written
);
SetConsoleCursorPosition(console, topLeft);
}
//Board implementation
class board
{
public:
char b[17][17];
board()
{
for (int i = 0; i < 16; i++) {
b[i][0] = b[i][15] = b[0][i] = b[15][i] = '.';
}
for (int i = 1; i < 15; i++)
for (int j = 1; j < 15; j++)
b[i][j] = ' ';
for (int i = 1; i < 7; i++)
{
b[i][2] = b[i + 8][13] = '.';
b[2][15 - i] = b[13][i] = '.';
}
b[1][4] = 'U'; // U for user
b[14][11] = 'C'; // C for computer
b[0][1] = b[0][9] = '>';
b[14][0] = b[6][0] = '^';
b[15][14] = b[15][6] = '<';
b[9][15] = b[1][15] = 'v';
b[7][2] = b[8][13] = char(0 + 48);
b[2][4] = b[13][11] = char(4 + 48);
}
void printBoard(char arr[17][17]);
};
void board::printBoard(char arr[17][17])
{
cout<<endl;
b[7][2] = char(dusize + 48);
b[8][13] = char(dcsize + 48);
b[2][4] = char(usize + 48);
b[13][11] = char(csize + 48);
for (int i = 0; i < 16; i++)
{
cout << "\t\t\t";
for (int j = 0; j < 16; j++)
{
cout << arr[i][j] << ' ';
if ((i == 0 && ((j < 4) || (j > 7 && j < 13))) || (i < 8 && (j == 1 || j == 3)))
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), colours[0]);
else if ((j == 14 && ((i != 0 && i < 5) || (i > 8 && i < 14))) || ((i == 2 || i == 4) && (j > 7 && j < 15)))
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), colours[1]);
else if ((i == 15 && ((j > 9 && j < 14) || (j > 0 && j < 6))) || (i > 7 && (j == 12 || j == 10)))
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), colours[2]);
else if ((j == 15 && ((i > 9 && i < 14) || (i > 0 && i < 6))) || ((i == 11 || i == 13) && (j < 7)))
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), colours[3]);
else
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 7);
}
cout << endl;
}
cout << endl;
}
// Shuffle cards
void shuffleCards(int arr[], int n)
{
// To obtain a time-based seed
unsigned seed = 0;
// Shuffling our array
shuffle(arr, arr + n, default_random_engine(seed));
}
//Deck of cards implementation
class deck
{
public:
int cards[45];
int index = 0;
deck()
{
while (index < 5)
{
cards[index] = 1;
index++;
}
for (int i = 0; i < 4; i++)
{
for (int card = 2; card < 13; card++)
{
if (card == 9 || card == 6)
{
continue;
}
cards[index] = card;
index++;
}
cards[index] = 0;
index++;
}
//Shuffle the cards in the beginning of the game.
int n = sizeof(cards) / sizeof(cards[0]);
srand(time(0));
int ranTimes = rand() % 10;
for (int shuffles = 0; shuffles < ranTimes; shuffles++)
{
shuffleCards(cards, n);
}
}
void queueDeck();
};
void deck::queueDeck()
{
for (int i = 0; i < 45; i++)
{
DOC.Enqueue(cards[i]);
}
cout << endl << "The deck of cards is shuffled, You can draw now!\n" << endl;
}
void logoPrint(){
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 4);
cout<<endl<<endl;
cout<<" \t\t\t\t $$$$$$\\ $$$$$$\\ $$$$$$$\\ $$$$$$$\\ $$\\ $$\\ $$$$$$\\ $$$$$$\\ $$\\ $$\\ $$$$$$$$\\\n"
<<" \t\t\t\t$$ __$$\\ $$ __$$\\ $$ __$$\\ $$ __$$\\\\$$\\ $$ | $$ __$$\\ $$ __$$\\ $$$\\ $$$ |$$ _____|\n"
<<" \t\t\t\t$$ / \\__|$$ / $$ |$$ | $$ |$$ | $$ |\\$$\\ $$ / $$ / \\__|$$ / $$ |$$$$\\ $$$$ |$$ | \n"
<<" \t\t\t\t\\$$$$$$\\ $$ | $$ |$$$$$$$ |$$$$$$$ | \\$$$$ / $$ |$$$$\\ $$$$$$$$ |$$\\$$\\$$ $$ |$$$$$\\ \n"
<<" \t\t\t\t \\____$$\\ $$ | $$ |$$ __$$< $$ __$$< \\$$ / $$ |\\_$$ |$$ __$$ |$$ \\$$$ $$ |$$ __| \n"
<<" \t\t\t\t$$\\ $$ |$$ | $$ |$$ | $$ |$$ | $$ | $$ | $$ | $$ |$$ | $$ |$$ |\\$ /$$ |$$ | \n"
<<" \t\t\t\t\\$$$$$$ | $$$$$$ |$$ | $$ |$$ | $$ | $$ | \\$$$$$$ |$$ | $$ |$$ | \\_/ $$ |$$$$$$$$\\ \n"
<<" \t\t\t\t \\______/ \\______/ \\__| \\__|\\__| \\__| \\__| \\______/ \\__| \\__|\\__| \\__|\\________|\n";
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 7);
}
void MaximizeWindow()
{
keybd_event(VK_MENU,0x38,0,0);
keybd_event(VK_RETURN,0x1c,0,0);
keybd_event(VK_RETURN,0x1c,KEYEVENTF_KEYUP,0);
keybd_event(VK_MENU,0x38,KEYEVENTF_KEYUP,0);
}
void getSomeInfo(bool &autoDraw){
char ip;
cout<<"Do you want the game to draw cards automatically?(Y/N)";
cin>>ip;
Beep(250,250);
while(ip != 'Y' &&ip != 'y'&&ip != 'N'&&ip != 'n' ){
cout<<"Error: Do you want the game to draw cards automatically?(Y/N)";
Beep(250,250);
cin>>ip;
}
if(ip == 'Y' || ip == 'y')
autoDraw = true;
cout<<"Choose the colour you want to play with(R/Y/G/B)";
cin>>ip;
Beep(250,250);
while(ip != 'R' &&ip != 'r'&&ip != 'Y'&&ip != 'y' &&ip != 'G'&&ip != 'g'&&ip != 'B'&&ip != 'b'){
Beep(250,250);
cout<<"Error: Choose the colour you want to play with(R/Y/G/B)";
cin>>ip;
}
if(ip == 'R'|| ip =='r'){
colours[0]=4;
colours[1]=1;
colours[2]=6;
colours[3]=2;
cout<<"You have chosen Red, computer has choosen Yellow\n"; }
else if(ip == 'Y'|| ip =='y'){
colours[0]=6;
colours[1]=1;
colours[2]=4;
colours[3]=2;
cout<<"You have chosen Yellow, computer has choosen Red\n";}
else if(ip == 'G'|| ip =='g'){
colours[0]=2;
colours[1]=1;
colours[2]=6;
colours[3]=4;
cout<<"You have chosen Green, computer has choosen Yellow\n"; }
else
{
colours[0]=1;
colours[1]=4;
colours[2]=6;
colours[3]=2;
cout<<"You have chosen Blue, computer has choosen Yellow\n"; ;
}
cout<<"Calculate the Time Complexity?(Y/N)";
cin>>ip;
Beep(250,250);
while(ip != 'Y' &&ip != 'y'&&ip != 'N'&&ip != 'n' ){
Beep(250,250);
cout<<"Error: Calculate the Time Complexity?(Y/N)";
cin>>ip;
}
if(ip == 'Y' || ip == 'y')
cmplxtyCalc = true;
clearConsole();
}
//Welcome screen
void welcomeScreen()
{
MaximizeWindow();
logoPrint();
//Rules
cout<<endl<<endl;
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 0xB);
cout << " Rules of the game:\n" ;
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 7);
cout<< "-------------------------------\n" << " - Each player has 4 pawns.\n";
cout << " - If it's your first turn and you do not draw a card that lets you start a pawn out, you forfeit(skip) your turn.\n";
cout << " - To move a pawn from your start out onto the track, you must draw either a 1 or a 2.\n" << " If it is a 2 put a pawn on the main track if it was on start and draw again. Otherwise, move pawn forward 2 steps and draw again. \n";
cout << " - You may jump over your own or another player's pawn that's in your way, counting it as one space.\n" << " BUT... if you land on a space that's already occupied by an opponent's pawn, BUMP that pawn back to its own START space.\n";
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 0xB);
cout << endl << " Notes:\n";
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), 7);
cout<< "-------------------------------\n";
cout << " - Two pawns of the same color may never occupy the same space. If your only possible move makes you land on a space already occupied\n by another of your own pawns, you forfeit your turn.\n";
cout << " - If at any time you cannot move, you forfeit your turn.\n";
cout << " - But if at any time you can move, you must move, even if it's to your disadvantage.\n";
cout << " - If the pawn is placed on (>), it will move 3 or 4 steps foward (Clarified which is which on the board) on the main track bumping\n any opponent's pawn/s back to its/their own START space.\n";
cout << " - Movement of pawns is in clockwise movement.\n";
cout << " - If the drawn card was Sorry card, then the player can choose any opponent's pawn on the main track to replace its own and bump the opponet's pawn back to start \n";
cout << " Let's get started!\n";
cout << "-----------------------------------------------------------------------------------------------\n";
char ip;
cout<<"Still confused? Watch a 2 min video tutorial to clarify game rules(Y/N)";
cin>>ip;
Beep(250,250);
while(ip != 'Y' &&ip != 'y'&&ip != 'N'&&ip != 'n' ){
cout<<"Error: Still confused? Watch a 2 min video tutorial to clarify the rules of the game(Y/N)";
Beep(250,250);
cin>>ip;
}
if(ip == 'Y' || ip == 'y'){
std::string op = std::string("start ").append("https://www.youtube.com/watch?v=XMYIi17QrC0");
system(op.c_str());
}
}
//Game functions
//--------------------------------------------------------------------------------------------------
//UOC stands for (User Or Computer)
//Function to Draw cards and check the deck queue(if empty shuffle the cards and queue it again)
void Draw(deck deckOfcards)
{
drawnCard = DOC.Dequeue();
if (DOC.isEmpty())
{
DOC.front = DOC.rear = 0;
int n = sizeof(deckOfcards.cards) / sizeof(deckOfcards.cards[0]);
shuffleCards(deckOfcards.cards, n);
deckOfcards.queueDeck();
}
}
//Function to place pawn on the main track
void placeonTrack(pawn* placer, bool selector, board* brd)
{
if (selector)
{
placer->x = 0;
placer->y = 4;
brd->b[placer->x][placer->y] = placer->s;
cout << endl;
}
else
{
placer->x = 15;
placer->y = 11;
brd->b[placer->x][placer->y] = placer->s;
cout << endl;
}
}
// delete a pawn from the active pawn after pushing in stack
void delPawnfrmArr(char ch, pawn sentPawns[8]) {
int i;
for (i = 0; i < 8; i++)
if (sentPawns[i].s == ch)
break;
sentPawns[i] = { '\0',-1,-1,false,false };
return;
}
//Function to check whether there is a pawn on a particuDlar slot or not
//Return true if there is a slot is empty
bool slotChecker(board brd, int x, int y)
{
if (brd.b[x][y] == '.' || brd.b[x][y] == '>' || brd.b[x][y] == '<' || brd.b[x][y] == '^' || brd.b[x][y] == 'v')
return true;
else
return false;
}
//Function to return the index of pawn that will move
int whichtoMove(char diff, pawn active[8])
{
while (true)
{
for (int i = 0; i < 8; i++)
{
if (active[i].s == diff)
return i;
}
cout << "Please Enter a correct letter!\n";
cin >> diff;
}
}
// Function to bump the opponent's pawn to its start
bool trivialBump(pawn* check, board* brd, pawn sentPawns[8])
{
if (slotChecker(*brd, check->x, check->y)) //do nothing if theres no char
return false;
char ch = brd->b[check->x][check->y]; // the char of the pawn we will bump into
int i;
for (i = 0; i < 8; i++)
if (sentPawns[i].s == ch)
break;
if ((ch == 'A' || ch == 'B' || ch == 'C' || ch == 'D') && !check->red)// user pawn will return to base
{
sentPawns[i]= {.s=sentPawns[i].s,.x=1, .y=4, .red=true, .safe =false };
user.push(sentPawns[i]);
usize++;
Beep(350,250);
}
else if ((ch == 'Z' || ch == 'X' || ch == 'Y' || ch == 'W') && check->red)// computer pawn will return to base
{
sentPawns[i]= {.s=sentPawns[i].s,.x=14, .y=11, .red=false, .safe =false };
computer.push(sentPawns[i]);
csize++;
Beep(200,250);
}
else
return true;
cout << "Pawn " << ch << " was sent back to start\n";
//brd.b[sentPawns[i].x][sentPawns[i].y] = '.';
delPawnfrmArr(ch, sentPawns);
return false;
}
void slideBump(pawn* check, board *brd, pawn sentPawns[8], bool sliding) {
if (slotChecker(*brd, check->x, check->y)) //do nothing if theres no char
return ;
//Char of the pawn that should be bumped
char ch = brd->b[check->x][check->y];
//Get the index of the symbol
int i;
for (i = 0; i < 8; i++)
{if (sentPawns[i].s == ch)
{break;}}
if ((ch == 'A' || ch == 'B' || ch == 'C' || ch == 'D'))// user pawn will return to base
{
user.push(sentPawns[i]);
usize++;
Beep(350,250);
}
else if ((ch == 'Z' || ch == 'X' || ch == 'Y' || ch == 'W'))// computer pawn will return to base
{
computer.push(sentPawns[i]);
csize++;
Beep(200,250);
}
brd->b[sentPawns[i].x][sentPawns[i].y] = '.';
cout << "Pawn " << ch << " was sent back to start\n";
delPawnfrmArr(ch, sentPawns);
return;
}
void slide(pawn check, board* brd, pawn sentPawns[8], bool sm) {
for (int i = 1; i <= 4 - sm; i++)
{
pawn temp = check;
if (check.x == 15) // slide left
{temp.y -= i;}
else if (check.x == 0)
{temp.y += i;} //slide right
else if (check.y == 15)
{temp.x += i;} // slide down
else
{temp.x -= i;} // slide up
slideBump(&temp, brd, sentPawns,true);
}
}
void movePawn(pawn*, int, board*, pawn[]);
bool checker(char toCheck, pawn sentPawns[8]);
//To check whether the pawn is movable or not
bool isMovable(pawn mover, int steps, board* brd)
{
if (mover.safe)
{
if ((mover.x + steps <= 6 && mover.red && slotChecker(*brd, mover.x + steps, mover.y)) || (mover.x - steps >= 9 && !mover.red) && slotChecker(*brd, mover.x - steps, mover.y))
return true;
else
return false;
}
if (mover.red && mover.x < 10 && mover.y < 3 && ((-mover.x + mover.y + steps - 2) > -1) && ((-mover.x + mover.y + steps - 2) < 7) ) {
mover.x = -mover.x + mover.y + steps - 2;
mover.y = 2;
}
else if (!mover.red && mover.x > 5 && mover.y > 12 && ((17 + mover.y - steps - mover.x) < 16) && ((17 + mover.y - steps - mover.x) > 8)) {
mover.x = 17 + mover.y - steps - mover.x;
mover.y = 13;
}
else if (!mover.red && mover.x > 5 && mover.y > 12 && ((17 + mover.y - steps - mover.x) <= 8) ) { // if its getting out of the board then it cannot be moved
return false;
}
else if (mover.red && mover.x < 10 && mover.y < 3 && ((-mover.x + mover.y + steps - 2) >= 7) ) {
return false;
}
else if (mover.x == 0 && ((mover.y + steps) <= 15)) // upper horizontal
{
mover.y += steps;
}
else if (mover.x == 0 && ((mover.y + steps) > 15))
{
mover.x = (mover.y + steps - 15);
mover.y = 15;
}
else if ((mover.x + steps) <= 15 && mover.y == 15) // right vertical
{
mover.x += steps;
}
else if ((mover.x + steps) > 15 && mover.y == 15)
{
mover.y = 15 - (mover.x + steps - 15);
mover.x = 15;
}
else if (mover.x == 15 && ((mover.y - steps) >= 0)) // lower horizontal
{
mover.y -= steps;
}
else if (mover.x == 15 && ((mover.y - steps) < 0))
{
mover.x = 15 + (mover.y - steps);
mover.y = 0;
}
else if ((mover.x - steps) >= 0 && mover.y == 0) // left vertical
{
mover.x -= steps;
}
else if ((mover.x - steps) < 0 && mover.y == 0)
{
mover.y = steps - mover.x;
mover.x = 0;
}
char ch = brd->b[mover.x][mover.y];
if(slotChecker(*brd, mover.x, mover.y) || (( ch == 'A' || ch == 'B' || ch == 'C' || ch == 'D') && !mover.red) || ((ch == 'Z' || ch == 'X' || ch == 'Y' || ch == 'W') && mover.red))
{
return true;
}
else
{
return false;
}
}
//Return number of movable pawns in the active pawns
int possibleMove(bool UOC, int steps, board* brd, pawn sentPawns[8])
{
int num = 0;
if (UOC)
{
for (int i = 0; i < 4; i++)
{ if(sentPawns[i].s !='\0')
{
if (isMovable(sentPawns[i], steps, brd))
{
num++;
}
}
{continue;}
}
}
else
{
for (int i = 4; i < 8; i++) //return false if any computer pawn is not in safe road
{ if(sentPawns[i].s !='\0')
{
if (isMovable(sentPawns[i], steps, brd))
{
num++;
}
}
}
}
return num;
}
//The sequence of steps that reverts the coordinates of a given pawn if the move is trivial
bool trivialSeq(pawn* check, board *brd, pawn sentPawns[8], int x,int y ,int steps,bool isSliding) {
//since the sequence is checked in every stage, let the old indicies x,y fix the '<' prob.
if (x == 15 && y == 14 )
brd->b[x][y] = '<';
else if (x == 0 && y == 1 )
brd->b[x][y] = '>';
else if (x == 14 && y == 0 )
brd->b[x][y] = '^';
else if (x == 1 && y == 15 )
brd->b[1][15] = 'v';
else
brd->b[x][y] = '.';
if(isSliding)
{return false;}
if (trivialBump(check, brd, sentPawns))
{
check->y = y;
check->x = x;
brd->b[check->x][check->y] = check->s; // new indicies
if (check->red)cout << "Trivial move\n";
return true;
}
else if(check->red)
cout<<"You have moved "<<check->s<<endl;
else
cout<<"The computer has moved "<<check->s<<endl;
return false;
}
//Function to move pawn on the board
void movePawn(pawn* mover, int steps, board* brd, pawn sentPawns[8])
{
bool isSliding = false;
int x_cor = mover->x, y_cor = mover->y;
//move inside the safe zone
if (mover->safe)
{
if (mover->red) {
if (mover->x + steps == 6)
{
brd->b[mover->x][2] = '.';
DU.push(*mover);
dusize++;
cout<<"Pawn "<<mover->s<<" entered Home!\n";
Beep(350,250);
Beep(350,250);
delPawnfrmArr(mover->s, sentPawns);
}
else if ((mover->x + steps) < 6)
{
mover->x += steps;
if (trivialSeq(mover, brd, sentPawns, x_cor, y_cor, steps,false))
return;
brd->b[mover->x][2] = mover->s;
}
}
else {
if (mover->x - steps == 9)
{
brd->b[mover->x][13] = '.';
DC.push(*mover);
dcsize++;
cout<<"Pawn "<<mover->s<<" entered computers home.\n";
Beep(200,250);
Beep(200,250);
delPawnfrmArr(mover->s, sentPawns);
}
else if ((mover->x - steps) > 9)
{
mover->x -= steps;
if (trivialSeq(mover, brd, sentPawns, x_cor, y_cor, steps,false))
return;
brd->b[mover->x][13] = mover->s;
}
}
return;
}
//***********enter the safe zone************
//for user:
if (mover->red && mover->x < 10 && mover->y < 3 && ((-mover->x + mover->y + steps - 2) > -1) && ((-mover->x + mover->y + steps - 2) < 7) && !mover->safe) {
mover->x = -mover->x + mover->y + steps - 2;
mover->y = 2;
if (trivialSeq(mover, brd, sentPawns, x_cor, y_cor, steps,false))
return;
brd->b[mover->x][mover->y] = mover->s;
if(mover->x != 0){
mover->safe = true;}
if (mover->x == 6) {
movePawn(mover, 0, brd, sentPawns);
}
return;
}
//for computer
else if (!mover->red && mover->x > 5 && mover->y > 12 && ((17 + mover->y - steps - mover->x) < 16) && ((17 + mover->y - steps - mover->x) > 8) && !mover->safe) {
mover->x = 17 + mover->y - steps - mover->x;
mover->y = 13;
if (trivialSeq(mover, brd, sentPawns, x_cor, y_cor, steps,false))
return;
brd->b[mover->x][mover->y] = mover->s;
if(mover->x != 15){
mover->safe = true;}
if (mover->x == 9) {
movePawn(mover, 0, brd, sentPawns);
}
return;
}
//move on board boundaries
if (mover->x == 0 && ((mover->y + steps) <= 15)) // upper horizontal
{
mover->y += steps;
}
else if (mover->x == 0 && ((mover->y + steps) > 15))
{
mover->x = (mover->y + steps - 15);
mover->y = 15;
}
else if ((mover->x + steps) <= 15 && mover->y == 15) // right vertical
{
mover->x += steps;
}
else if ((mover->x + steps) > 15 && mover->y == 15)
{
mover->y = 15 - (mover->x + steps - 15);
mover->x = 15;
}
else if (mover->x == 15 && ((mover->y - steps) >= 0)) // lower horizontal
{
mover->y -= steps;
}
else if (mover->x == 15 && ((mover->y - steps) < 0))
{
mover->x = 15 + (mover->y - steps);
mover->y = 0;
}
else if ((mover->x - steps) >= 0 && mover->y == 0) // left vertical
{
mover->x -= steps;
}
else if ((mover->x - steps) < 0 && mover->y == 0)
{
mover->y = steps - mover->x;
mover->x = 0;
}
//slider
//long slider (slide by 4)
if ((mover->x == 0 && mover->y == 9) || (mover->x == 9 && mover->y == 15) || (mover->x == 15 && mover->y == 6) || (mover->x == 6 && mover->y == 0))
{
isSliding = true;
slide(*mover, brd, sentPawns, 0);
movePawn(mover, 4, brd, sentPawns);
brd->b[0][9] = '>';
brd->b[6][0] = '^';
brd->b[15][6] = '<';
brd->b[9][15] = 'v';
}
//short slider (slide by 3)
if (((mover->x == 0 && mover->y == 1) && !mover->red) || (mover->x == 1 && mover->y == 15) || ((mover->x == 15 && mover->y == 14) && mover->red) || (mover->x == 14 && mover->y == 0))
{
isSliding = true;
slide(*mover, brd, sentPawns, 1);
movePawn(mover, 3, brd, sentPawns);
}
if(!trivialSeq(mover, brd, sentPawns, x_cor, y_cor, steps,isSliding))
brd->b[mover->x][mover->y] = mover->s; // new indicies
}
//Function to check active pawns [among computer pawns]
bool checker(char toCheck, pawn sentPawns[8])
{
for (int i = 4; i < 8; i++)
{
if (sentPawns[i].s == toCheck)
return true;
}
return false;
}
//Funcion that returns computer decision to move which pawn
char computerdesicison(board brd, pawn sentPawns[8])
{
bool returner;
while (true)
{
srand(time(NULL)); //Randomize seed initialization
int randNum = (rand() % 40) % 4; // Generate a random number between 0 and 3
if (randNum == 0)
{
returner = checker('W', sentPawns);
if (returner)
return 'W';
}
else if (randNum == 1)
{
returner = checker('X', sentPawns);
if (returner)
return 'X';
}
else if (randNum == 2)
{
returner = checker('Y', sentPawns);
if (returner)
return 'Y';
}
else
{
returner = checker('Z', sentPawns);
if (returner)
return 'Z';
}
}
}
//Function to get the only active pawn's index
int getActivepawnindex(bool UOC, pawn sentPawns[8])
{
int onlyActivepawn;
if(UOC)
{
for (int i = 0; i < 4; i++)
{
if (sentPawns[i].s != '\0')
{
onlyActivepawn = i;
break;}
}
}
else
{
for (int i = 4; i < 7; i++)
{
if (sentPawns[i].s != '\0')
{
onlyActivepawn = i;
break;}
}
}
return onlyActivepawn;
}
//Function to return the number of active pawns
int numberofactivePawns(pawn sentPawns[8], bool UOC)
{
int NOAP = 0; //Number of active pawns
if (UOC)
{
for (int i = 4; i < 8; i++)
{
if (sentPawns[i].s == 'W' || sentPawns[i].s == 'X' || sentPawns[i].s == 'Y' || sentPawns[i].s == 'Z')
{
NOAP++;
}
}
return NOAP;
}
else
{
for (int i = 0; i < 4; i++)
{
if (sentPawns[i].s == 'A' || sentPawns[i].s == 'B' || sentPawns[i].s == 'C' || sentPawns[i].s == 'D')
{
NOAP++;
}
}
return NOAP;
}
}
//Function to return the index of nearest replacable user pawn
int moveACW(board brd, pawn sentPawns[8], bool UOC)
{
if(UOC)
{
for (int i = 0; i < 4; i++)
{
for (int j = 15; j >=0; j--)
{
if(i == 0) //Right vertical
{if (brd.b[j][15] == 'W' || brd.b[j][15] == 'X'|| brd.b[j][15] == 'Y'|| brd.b[j][15] == 'Z')
{return 1;}
continue;}
else if(i == 1) //Upper horizontal
{if ((15 - j) != 3)
{
if (brd.b[0][j] == 'W' || brd.b[0][j] == 'X'|| brd.b[0][j] == 'Y'|| brd.b[0][j] == 'Z')
{return 2;}
continue;
}
continue;}
else if(i == 2) //Left vertical
{
if (brd.b[15- j][0] == 'W' || brd.b[15- j][0] == 'X'|| brd.b[15- j][0] == 'Y'|| brd.b[15- j][0] == 'Z')
{return 3;}
continue;}
else //Lower horizontal
{
if(brd.b[15][15- j] == 'W' || brd.b[15][15- j] == 'X'|| brd.b[15][15- j] == 'Y'|| brd.b[15][15- j] == 'Z')
{return 4;}
continue;}
}
}
}
else
{
for (int i = 0; i < 4; i++)
{for (int j = 15; j >=0; j--)
{
if(i == 0) //Right vertical
{
if (brd.b[j][15] == 'A' || brd.b[j][15] == 'B'|| brd.b[j][15] == 'C'|| brd.b[j][15] == 'D')
{return whichtoMove(brd.b[j][15],sentPawns);}
continue;}
else if(i == 1) //Upper horizontal
{
if (brd.b[0][j] == 'A' || brd.b[0][j] == 'B'|| brd.b[0][j] == 'C'|| brd.b[0][j] == 'D')
{return whichtoMove(brd.b[0][j],sentPawns);}
continue;}
else if(i == 2) //Left vertical
{
if (brd.b[15- j][0] == 'A' || brd.b[15- j][0] == 'B'|| brd.b[15- j][0] == 'C'|| brd.b[15- j][0] == 'D')
{return whichtoMove(brd.b[15- j][0],sentPawns);}
continue;}
else //Lower horizontal
{
if (15- j != 12)
{
if(brd.b[15][15- j] == 'A' || brd.b[15][15- j] == 'B'|| brd.b[15][15- j] == 'C'|| brd.b[15][15- j] == 'D')
{return whichtoMove(brd.b[15][15- j],sentPawns);}
continue;
}
continue;}
}
}
}
return -1;
}
//Move the chosen pawn
void movewhichPawn(board* brd, bool UOC, pawn sentPawns[8],int steps)
{
if (UOC)
{
int i;
if(possibleMove(UOC,steps,brd,sentPawns)==1)
{
for(i=0;i<4;i++)
{
if(isMovable(sentPawns[i],steps,brd))
{break;}
}
movePawn(&sentPawns[i], drawnCard, brd, sentPawns);
}
else if(possibleMove(UOC,steps,brd,sentPawns)==0)
{
return; //Skip the move
}
else
{
char selector;
int index;
cout << "Which Pawn will you move? \n";
while(true)