-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
/
naval_battle.c
946 lines (871 loc) · 22 KB
/
naval_battle.c
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
/**
* @file
* @author [Carlos Rafael](https://github.com/CarlosZoft)
* @author [Herick Lima](https://github.com/hericklima22)
* @brief [naval_battle](https://en.wikipedia.org/wiki/Battleship_(game))
* implementation in C using only the stdio.h for Standard Input and Output.
* @details Naval battle is a game, to be played by two people. It consists of
* knocking down the enemy ship, through shots , when hit the ship is
* revealed with the respective number of its size. Example: size 3 = 3 3 3 on
* the board.
* To play - boats over size 1, need direction; V -> vertical and H ->
* horizontal. Example Input 1 A H -> line 1, column A, direction H
* (Horizontal).
*/
#include <stdio.h> /// for Standard Input Output
/**
* @brief Function validEntryLineColumn
* Responsible for validating entries, for positioning boats
* @param line matrix row
* @param column matrix column
* @returns if the row and column are valid
*/
int validEntryLineColumn(int line, char column)
{
if ((line >= 1 && line <= 10) && (column >= 65 && column <= 74))
{
return 1;
}
return 0;
}
/**
* @brief Function validatePosition
* Responsible for checking if the position can receive the boat.
* @param mat board
* @param boat boat
* @param line matrix row
* @param column matrix column
* @returns if the position is valid
*/
int validatePosition(int mat[10][10], int boat, int line, int column,
char guide)
{
int cont = 0;
int i, j;
if (line < 0 || line > 9 || column < 0 || column > 9 ||
(guide != 'H' && guide != 'V') || boat < 1 || boat > 3)
{
return 0;
}
if (guide == 'H')
{
if ((10 - column) < boat)
{
return 0;
}
else
{
for (j = column; j < (column + boat); j++)
{
if (mat[line][j] == 0)
{
cont++;
}
}
}
}
if (guide == 'V')
{
if ((10 - line) < boat)
{
return 0;
}
else
{
for (i = line; i < (line + boat); i++)
{
if (mat[i][column] == 0)
{
cont++;
}
}
}
}
if (cont == boat)
{
return 1;
}
return 0;
}
/**
* @brief Function canShoot
* Responsible to verify that it is a valid position to shoot
* @param mat board
* @param line matrix row
* @param column matrix column
* @returns if the position is valid for shooting
*/
int canShoot(int mat[10][10], int line, int column)
{
if (mat[line][column] == -2 || mat[line][column] == 10 ||
mat[line][column] == 20 || mat[line][column] == 30 ||
mat[line][column] == 50)
{
return 0;
}
return 1;
}
/**
* @brief Function positionBoat
* Responsible for placing the boats on the board, according to the size.
* @param mat board
* @param boat boat
*/
void positionBoat(int mat[10][10], int boat)
{
int line, j;
char column, guide;
if (boat == 1)
{
scanf("%d %c", &line, &column);
while (validEntryLineColumn(line, column) != 1 ||
validatePosition(mat, boat, (line - 1), (column - 65), 'H') != 1)
{
printf("Position unavailable!\n");
scanf("%d %c", &line, &column);
}
}
else
{
scanf("%d %c %c", &line, &column, &guide);
while (validEntryLineColumn(line, column) == 0 ||
validatePosition(mat, boat, (line - 1), (column - 65), guide) ==
0)
{
printf("Position unavailable!\n");
scanf("%d %c %c", &line, &column, &guide);
}
}
int aux = column - 'A';
line -= 1;
if (boat == 1)
{
for (j = aux; j < (aux + boat); j++)
{
mat[line][j] = boat;
}
for (int a = line - 1; a < (line + boat + 1); a++)
{
for (int b = aux - 1; b < (aux + boat + 1); b++)
{
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
{
if (mat[a][b] != boat)
{
mat[a][b] = -1;
}
}
}
}
}
if (guide == 'H')
{
for (j = aux; j < (aux + boat); j++)
{
mat[line][j] = boat;
}
if (boat == 3)
{
for (int a = line - 1; a < (line + boat - 1); a++)
{
for (int b = aux - 1; b < (aux + boat + 1); b++)
{
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
{
if (mat[a][b] != boat)
{
mat[a][b] = -1;
}
}
}
}
}
else
{
for (int a = line - 1; a < (line + boat); a++)
{
for (int b = aux - 1; b < (aux + boat + 1); b++)
{
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
{
if (mat[a][b] != boat)
{
mat[a][b] = -1;
}
}
}
}
}
}
if (guide == 'V')
{
for (j = line; j < (line + boat); j++)
{
mat[j][aux] = boat;
}
if (boat == 3)
{
for (int a = line - 1; a < (line + boat + 1); a++)
{
for (int b = aux - 1; b < (aux + boat - 1); b++)
{
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
{
if (mat[a][b] != boat)
{
mat[a][b] = -1;
}
}
}
}
}
else
{
for (int a = line - 1; a < (line + boat + 1); a++)
{
for (int b = aux - 1; b < (aux + boat); b++)
{
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
{
if (mat[a][b] != boat)
{
mat[a][b] = -1;
}
}
}
}
}
}
}
/**
* @brief Function printMessage
* Responsible for printing the auxiliary message
* @param msg msg with board
*/
void printMessage(char *msg)
{
printf("************************\n");
printf("*\n");
printf("* %s\n", msg);
printf("*\n");
printf("************************\n");
}
/**
* @brief Function printMessageScore
* Responsible for printing the score messages
* @param pts1 player 1 score
* @param pts2 player 2 score
*/
void printMessageScore(int pts1, int pts2)
{
printf("************************\n");
printf("*\n");
printf("* Player'S SCORE 1: %02d\n", pts1);
printf("* Player'S SCORE 2: %02d\n", pts2);
printf("*\n");
printf("************************\n");
}
/**
* @brief Function printTable
* Responsible for printing the board
* @param logic return of the logical matrix
* @param stage game step
* @returns char for visual matrix
*/
char printTable(int logic, int stage)
{
if (stage == 0)
{
if (logic == 0)
{
return '.';
}
else if (logic == -1)
{
return '*';
}
else if (logic == 1)
{
return '1';
}
else if (logic == 2)
{
return '2';
}
else
{
return '3';
}
}
else
{
if (logic == 0 || logic == -1 || logic == 1 || logic == 2 || logic == 3)
{
return '.';
}
else if (logic == -2)
{
return 'x';
}
else if (logic == 10 || logic == 20 || logic == 30)
{
return 'N';
}
else
{
return 'A';
}
}
}
/**
* @brief Function printsTray
* Responsible for printing the visual board for the user
* @param mat Matrix
* @param stage game step
*/
void printsTray(int mat[10][10], int stage)
{
int logic;
char imp;
printf(" ");
for (int i = 65; i < 75; i++)
{
printf("%c", i);
if (i < 74)
{
printf(" ");
}
}
printf("\n");
for (int i = 0; i < 12; i++)
{
if (i > 0 && i < 11)
{
printf("%02d ", i);
}
else
{
printf(" ");
}
for (int j = 0; j < 12; j++)
{
if ((i > 0 && i < 11) && (j > 0 && j < 11))
{
logic = mat[i - 1][j - 1];
imp = printTable(logic, stage);
printf("%c", imp);
}
else
{
printf("#");
}
if (j < 11)
{
printf(" ");
}
}
printf("\n");
}
}
/**
* @brief Function shoot
* Responsible for saying if he hit a boat
* @param mat board
* @param line matrix row
* @param column matrix column
*/
void shoot(int mat[10][10], int line, int column)
{
if (mat[line][column] == 0 || mat[line][column] == -1)
{
mat[line][column] = -2;
}
else if (mat[line][column] == 1)
{
mat[line][column] = 10;
}
else if (mat[line][column] == 2)
{
mat[line][column] = 20;
}
else if (mat[line][column] == 3)
{
mat[line][column] = 30;
}
}
/**
* @brief Function calculateScore
* Responsible for calculating the score obtained during the game
* @param mat board
* @param line matrix row
* @param column matrix column
* @returns resulting score
*/
int calculateScore(int mat[10][10], int line, int column)
{
int c = 0, b = 0, e = 0, d = 0;
if (mat[line][column] == 10)
{
mat[line][column] = 50;
return 2;
}
else if (mat[line][column] == 20)
{
if (mat[line + 1][column] == 20)
{
b = 1;
}
if (mat[line - 1][column] == 20)
{
c = 1;
}
if (mat[line][column + 1] == 20)
{
d = 1;
}
if (mat[line][column - 1] == 20)
{
e = 1;
}
if (b == 1)
{
if (mat[line + 1][column] == 20)
{
mat[line][column] = 50;
mat[line + 1][column] = 50;
return 4;
}
else
{
return 0;
}
}
if (c == 1)
{
if (mat[line - 1][column] == 20)
{
mat[line][column] = 50;
mat[line - 1][column] = 50;
return 4;
}
else
{
return 0;
}
}
if (d == 1)
{
if (mat[line][column + 1] == 20)
{
mat[line][column] = 50;
mat[line][column + 1] = 50;
return 4;
}
else
{
return 0;
}
}
if (e == 1)
{
if (mat[line][column - 1] == 20)
{
mat[line][column] = 50;
mat[line][column - 1] = 50;
return 4;
}
else
{
return 0;
}
}
}
else if (mat[line][column] == 30)
{
if (mat[line + 1][column] == 30)
{
b = 1;
}
if (mat[line - 1][column] == 30)
{
c = 1;
}
if (mat[line][column + 1] == 30)
{
d = 1;
}
if (mat[line][column - 1] == 30)
{
e = 1;
}
if (b == 1 && c == 1)
{
if (mat[line + 1][column] == 30 && mat[line - 1][column] == 30)
{
mat[line][column] = 50;
mat[line + 1][column] = 50;
mat[line - 1][column] = 50;
return 7;
}
else
{
return 0;
}
}
else if (d == 1 && e == 1)
{
if (mat[line][column + 1] == 30 && mat[line][column - 1] == 30)
{
mat[line][column] = 50;
mat[line][column - 1] = 50;
mat[line][column + 1] = 50;
return 7;
}
else
{
return 0;
}
}
else if (d == 1)
{
if (mat[line][column + 1] == 30 && mat[line][column + 2] == 30)
{
mat[line][column] = 50;
mat[line][column + 1] = 50;
mat[line][column + 2] = 50;
return 7;
}
else
{
return 0;
}
}
else if (e == 1)
{
if (mat[line][column - 1] == 30 && mat[line][column - 2] == 30)
{
mat[line][column] = 50;
mat[line][column - 1] = 50;
mat[line][column - 2] = 50;
return 7;
}
else
{
return 0;
}
}
else if (c == 1)
{
if (mat[line - 1][column] == 30 && mat[line - 2][column] == 30)
{
mat[line][column] = 50;
mat[line - 1][column] = 50;
mat[line - 2][column] = 50;
return 7;
}
else
{
return 0;
}
}
else if (b == 1)
{
if (mat[line + 1][column] == 30 && mat[line + 2][column] == 30)
{
mat[line][column] = 50;
mat[line + 1][column] = 50;
mat[line + 2][column] = 50;
return 7;
}
else
{
return 0;
}
}
}
return 0;
}
/**
* @brief Function printPositioning
* Responsible for printing messages for positioning boats on the board; of
* player 1 and 2
* @param Player number representing the Player
* @param boat number that represents the boat
* @param nm which message to print
*/
void printPositioning(int Player, int boat, int nm)
{
if (Player == 1)
{
char msg1[60] = "Player 1 - Position the size boat 1 (1/6)";
char msg2[60] = "Player 1 - Position the size boat 1 (2/6)";
char msg3[60] = "Player 1 - Position the size boat 1 (3/6)";
char msg4[60] = "Player 1 - Position the size boat 1 (4/6)";
char msg5[60] = "Player 1 - Position the size boat 1 (5/6)";
char msg6[60] = "Player 1 - Position the size boat 1 (6/6)";
char msg7[60] = "Player 1 - Position the size boat 2 (1/4)";
char msg8[60] = "Player 1 - Position the size boat 2 (2/4)";
char msg9[60] = "Player 1 - Position the size boat 2 (3/4)";
char msg10[60] = "Player 1 - Position the size boat 2 (4/4)";
char msg11[60] = "Player 1 - Position the size boat 3 (1/2)";
char msg12[60] = "Player 1 - Position the size boat 3 (2/2)";
if (boat == 1)
{
if (nm == 1)
{
printMessage(msg1);
}
else if (nm == 2)
{
printMessage(msg2);
}
else if (nm == 3)
{
printMessage(msg3);
}
else if (nm == 4)
{
printMessage(msg4);
}
else if (nm == 5)
{
printMessage(msg5);
}
else if (nm == 6)
{
printMessage(msg6);
}
}
else if (boat == 2)
{
if (nm == 1)
{
printMessage(msg7);
}
else if (nm == 2)
{
printMessage(msg8);
}
else if (nm == 3)
{
printMessage(msg9);
}
else if (nm == 4)
{
printMessage(msg10);
}
}
else if (boat == 3)
{
if (nm == 1)
{
printMessage(msg11);
}
if (nm == 2)
{
printMessage(msg12);
}
}
}
if (Player == 2)
{
char msg1[60] = "Player 2 - Position the size boat 1 (1/6)";
char msg2[60] = "Player 2 - Position the size boat 1 (2/6)";
char msg3[60] = "Player 2 - Position the size boat 1 (3/6)";
char msg4[60] = "Player 2 - Position the size boat 1 (4/6)";
char msg5[60] = "Player 2 - Position the size boat 1 (5/6)";
char msg6[60] = "Player 2 - Position the size boat 1 (6/6)";
char msg7[60] = "Player 2 - Position the size boat 2 (1/4)";
char msg8[60] = "Player 2 - Position the size boat 2 (2/4)";
char msg9[60] = "Player 2 - Position the size boat 2 (3/4)";
char msg10[60] = "Player 2 - Position the size boat 2 (4/4)";
char msg11[60] = "Player 2 - Position the size boat 3 (1/2)";
char msg12[60] = "Player 2 - Position the size boat 3 (2/2)";
if (boat == 1)
{
if (nm == 1)
{
printMessage(msg1);
}
else if (nm == 2)
{
printMessage(msg2);
}
else if (nm == 3)
{
printMessage(msg3);
}
else if (nm == 4)
{
printMessage(msg4);
}
else if (nm == 5)
{
printMessage(msg5);
}
else if (nm == 6)
{
printMessage(msg6);
}
}
else if (boat == 2)
{
if (nm == 1)
{
printMessage(msg7);
}
else if (nm == 2)
{
printMessage(msg8);
}
else if (nm == 3)
{
printMessage(msg9);
}
else if (nm == 4)
{
printMessage(msg10);
}
}
else if (boat == 3)
{
if (nm == 1)
{
printMessage(msg11);
}
else if (nm == 2)
{
printMessage(msg12);
}
}
}
}
/**
* @brief Main function
* @returns 0 on exit
*/
int main()
{
int Player1[10][10];
int Player2[10][10];
int plays = 1;
int pts1 = 0, pts2 = 0, a1 = 0, a2 = 0;
int line, col = 0, lin = 0;
char column;
// filling matrix with 0
for (int i = 0; i < 10; i++)
{
for (int j = 0; j < 10; j++)
{
Player1[i][j] = 0;
Player2[i][j] = 0;
}
}
// positioning boats
for (int i = 1; i <= 2; i++)
{
for (int j = 1; j <= 6; j++)
{
if (i == 1)
{
printPositioning(i, 1, j);
printsTray(Player1, 0);
positionBoat(Player1, 1);
}
else if (i == 2)
{
printPositioning(i, 1, j);
printsTray(Player2, 0);
positionBoat(Player2, 1);
}
}
for (int j = 1; j <= 4; j++)
{
if (i == 1)
{
printPositioning(i, 2, j);
printsTray(Player1, 0);
positionBoat(Player1, 2);
}
else if (i == 2)
{
printPositioning(i, 2, j);
printsTray(Player2, 0);
positionBoat(Player2, 2);
}
}
for (int j = 1; j <= 2; j++)
{
if (i == 1)
{
printPositioning(i, 3, j);
printsTray(Player1, 0);
positionBoat(Player1, 3);
}
else if (i == 2)
{
printPositioning(i, 3, j);
printsTray(Player2, 0);
positionBoat(Player2, 3);
}
}
}
// starting the game
while (plays <= 40)
{
if (plays % 2 != 0)
{
printMessageScore(pts1, pts2);
printMessage("Player 1's turn");
printsTray(Player2, 1);
scanf("%d %c", &line, &column);
while (validEntryLineColumn(line, column) != 1 ||
canShoot(Player2, line - 1, column - 65) != 1)
{
line = 0;
column = 'a';
printf("Position unavailable!\n");
scanf("%d %c", &line, &column);
}
lin = line - 1;
col = column - 65;
shoot(Player2, lin, col);
a1 = pts1;
pts1 += calculateScore(Player2, lin, col);
if (a1 != pts1)
{
printMessage("Player 1 DROPPED A BOAT!");
}
}
else
{
printMessageScore(pts1, pts2);
printMessage("Player 2's turn");
printsTray(Player1, 1);
scanf("%d %c", &line, &column);
while (validEntryLineColumn(line, column) != 1 ||
canShoot(Player1, line - 1, column - 65) != 1)
{
printf("Position unavailable!\n");
scanf("%d %c", &line, &column);
}
lin = line - 1;
col = column - 65;
shoot(Player1, lin, col);
a2 = pts2;
pts2 += calculateScore(Player1, lin, col);
if (a2 != pts2)
{
printMessage("Player 2 DROPPED A BOAT!");
}
}
plays++;
}
/**
* the one with the most points wins, or the one who knocks down all boats
* first.
*/
printMessage("END GAME\n");
printMessageScore(pts1, pts2);
return 0;
}