TheAlgorithms-C/games/naval_battle.c

947 lines
22 KiB
C
Raw Normal View History

2021-02-05 23:10:18 +03:00
/**
* @file
2021-02-05 23:10:18 +03:00
* @author [Carlos Rafael](https://github.com/CarlosZoft)
* @author [Herick Lima](https://github.com/hericklima22)
* @brief [naval_battle](https://en.wikipedia.org/wiki/Battleship_(game))
2021-02-18 09:03:02 +03:00
* implementation in C using only the stdio.h for Standard Input and Output.
2021-02-05 23:10:18 +03:00
* @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.
2021-02-18 09:03:02 +03:00
* 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).
2021-02-05 23:10:18 +03:00
*/
2021-02-18 09:03:02 +03:00
2021-02-19 04:56:31 +03:00
#include <stdio.h> /// for Standard Input Output
2021-02-05 23:10:18 +03:00
/**
2021-02-18 08:33:38 +03:00
* @brief Function validEntryLineColumn
* Responsible for validating entries, for positioning boats
2021-02-18 08:33:38 +03:00
* @param line matrix row
* @param column matrix column
* @returns if the row and column are valid
2021-02-05 23:10:18 +03:00
*/
int validEntryLineColumn(int line, char column)
2021-02-05 23:10:18 +03:00
{
if ((line >= 1 && line <= 10) && (column >= 65 && column <= 74))
2021-02-05 23:10:18 +03:00
{
return 1;
}
2021-02-19 08:34:26 +03:00
return 0;
2021-02-05 23:10:18 +03:00
}
/**
2021-02-18 08:33:38 +03:00
* @brief Function validatePosition
* Responsible for checking if the position can receive the boat.
2021-02-18 08:33:38 +03:00
* @param mat board
* @param boat boat
* @param line matrix row
* @param column matrix column
* @returns if the position is valid
2021-02-05 23:10:18 +03:00
*/
int validatePosition(int mat[10][10], int boat, int line, int column,
char guide)
2021-02-05 23:10:18 +03:00
{
int cont = 0;
int i, j;
2021-02-19 08:34:26 +03:00
if (line < 0 || line > 9 || column < 0 || column > 9 ||
(guide != 'H' && guide != 'V') || boat < 1 || boat > 3)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
if (guide == 'H')
2021-02-05 23:10:18 +03:00
{
if ((10 - column) < boat)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
else
{
for (j = column; j < (column + boat); j++)
2021-02-05 23:10:18 +03:00
{
if (mat[line][j] == 0)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
cont++;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
}
if (guide == 'V')
2021-02-05 23:10:18 +03:00
{
if ((10 - line) < boat)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
else
{
for (i = line; i < (line + boat); i++)
2021-02-05 23:10:18 +03:00
{
if (mat[i][column] == 0)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
cont++;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
}
if (cont == boat)
2021-02-05 23:10:18 +03:00
{
return 1;
}
2021-02-19 08:34:26 +03:00
return 0;
2021-02-05 23:10:18 +03:00
}
/**
2021-02-18 08:33:38 +03:00
* @brief Function canShoot
* Responsible to verify that it is a valid position to shoot
2021-02-18 08:33:38 +03:00
* @param mat board
* @param line matrix row
* @param column matrix column
* @returns if the position is valid for shooting
2021-02-05 23:10:18 +03:00
*/
int canShoot(int mat[10][10], int line, int column)
2021-02-05 23:10:18 +03:00
{
if (mat[line][column] == -2 || mat[line][column] == 10 ||
mat[line][column] == 20 || mat[line][column] == 30 ||
mat[line][column] == 50)
2021-02-05 23:10:18 +03:00
{
return 0;
}
2021-02-19 08:37:22 +03:00
return 1;
2021-02-05 23:10:18 +03:00
}
/**
2021-02-18 08:33:38 +03:00
* @brief Function positionBoat
* Responsible for placing the boats on the board, according to the size.
2021-02-18 08:33:38 +03:00
* @param mat board
* @param boat boat
2021-02-05 23:10:18 +03:00
*/
void positionBoat(int mat[10][10], int boat)
2021-02-05 23:10:18 +03:00
{
2021-02-19 08:52:00 +03:00
int line, j;
char column, guide;
2021-02-05 23:10:18 +03:00
if (boat == 1)
2021-02-05 23:10:18 +03:00
{
scanf("%d %c", &line, &column);
2021-02-05 23:10:18 +03:00
while (validEntryLineColumn(line, column) != 1 ||
validatePosition(mat, boat, (line - 1), (column - 65), 'H') != 1)
2021-02-05 23:10:18 +03:00
{
printf("Position unavailable!\n");
scanf("%d %c", &line, &column);
2021-02-05 23:10:18 +03:00
}
}
else
{
scanf("%d %c %c", &line, &column, &guide);
2021-02-05 23:10:18 +03:00
while (validEntryLineColumn(line, column) == 0 ||
validatePosition(mat, boat, (line - 1), (column - 65), guide) ==
0)
2021-02-05 23:10:18 +03:00
{
printf("Position unavailable!\n");
scanf("%d %c %c", &line, &column, &guide);
2021-02-05 23:10:18 +03:00
}
}
2021-02-19 09:03:23 +03:00
int aux = column - 'A';
line -= 1;
2021-02-05 23:10:18 +03:00
if (boat == 1)
2021-02-05 23:10:18 +03:00
{
2021-02-19 09:03:23 +03:00
for (j = aux; j < (aux + boat); j++)
2021-02-05 23:10:18 +03:00
{
mat[line][j] = boat;
2021-02-05 23:10:18 +03:00
}
for (int a = line - 1; a < (line + boat + 1); a++)
2021-02-05 23:10:18 +03:00
{
2021-02-19 09:03:23 +03:00
for (int b = aux - 1; b < (aux + boat + 1); b++)
2021-02-05 23:10:18 +03:00
{
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
{
if (mat[a][b] != boat)
2021-02-19 05:11:14 +03:00
{
2021-02-05 23:10:18 +03:00
mat[a][b] = -1;
2021-02-19 05:11:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
}
}
if (guide == 'H')
2021-02-05 23:10:18 +03:00
{
2021-02-19 09:03:23 +03:00
for (j = aux; j < (aux + boat); j++)
2021-02-05 23:10:18 +03:00
{
mat[line][j] = boat;
2021-02-05 23:10:18 +03:00
}
if (boat == 3)
2021-02-05 23:10:18 +03:00
{
for (int a = line - 1; a < (line + boat - 1); a++)
2021-02-05 23:10:18 +03:00
{
2021-02-19 09:03:23 +03:00
for (int b = aux - 1; b < (aux + boat + 1); b++)
2021-02-05 23:10:18 +03:00
{
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
{
if (mat[a][b] != boat)
2021-02-19 05:11:14 +03:00
{
2021-02-05 23:10:18 +03:00
mat[a][b] = -1;
2021-02-19 05:11:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
}
}
else
{
for (int a = line - 1; a < (line + boat); a++)
2021-02-05 23:10:18 +03:00
{
2021-02-19 09:03:23 +03:00
for (int b = aux - 1; b < (aux + boat + 1); b++)
2021-02-05 23:10:18 +03:00
{
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
{
if (mat[a][b] != boat)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
mat[a][b] = -1;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
}
}
}
if (guide == 'V')
2021-02-05 23:10:18 +03:00
{
for (j = line; j < (line + boat); j++)
2021-02-05 23:10:18 +03:00
{
2021-02-19 09:03:23 +03:00
mat[j][aux] = boat;
2021-02-05 23:10:18 +03:00
}
if (boat == 3)
2021-02-05 23:10:18 +03:00
{
for (int a = line - 1; a < (line + boat + 1); a++)
2021-02-05 23:10:18 +03:00
{
2021-02-19 09:03:23 +03:00
for (int b = aux - 1; b < (aux + boat - 1); b++)
2021-02-05 23:10:18 +03:00
{
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
{
if (mat[a][b] != boat)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
mat[a][b] = -1;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
}
}
else
{
for (int a = line - 1; a < (line + boat + 1); a++)
2021-02-05 23:10:18 +03:00
{
2021-02-19 09:03:23 +03:00
for (int b = aux - 1; b < (aux + boat); b++)
2021-02-05 23:10:18 +03:00
{
if (a >= 0 && a <= 9 && b >= 0 && b <= 9)
{
if (mat[a][b] != boat)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
mat[a][b] = -1;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
}
}
}
}
/**
2021-02-18 08:33:38 +03:00
* @brief Function printMessage
* Responsible for printing the auxiliary message
2021-02-18 09:00:14 +03:00
* @param msg msg with board
2021-02-05 23:10:18 +03:00
*/
void printMessage(char *msg)
2021-02-05 23:10:18 +03:00
{
printf("************************\n");
printf("*\n");
printf("* %s\n", msg);
printf("*\n");
printf("************************\n");
}
2021-02-18 08:33:38 +03:00
/**
* @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)
2021-02-05 23:10:18 +03:00
{
printf("************************\n");
printf("*\n");
printf("* Player'S SCORE 1: %02d\n", pts1);
printf("* Player'S SCORE 2: %02d\n", pts2);
2021-02-05 23:10:18 +03:00
printf("*\n");
printf("************************\n");
}
/**
2021-02-18 08:33:38 +03:00
* @brief Function printTable
* Responsible for printing the board
2021-02-18 08:33:38 +03:00
* @param logic return of the logical matrix
* @param stage game step
* @returns char for visual matrix
2021-02-05 23:10:18 +03:00
*/
char printTable(int logic, int stage)
2021-02-05 23:10:18 +03:00
{
if (stage == 0)
2021-02-05 23:10:18 +03:00
{
if (logic == 0)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return '.';
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
else if (logic == -1)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return '*';
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
else if (logic == 1)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return '1';
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
else if (logic == 2)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return '2';
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return '3';
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
else
{
if (logic == 0 || logic == -1 || logic == 1 || logic == 2 || logic == 3)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return '.';
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
else if (logic == -2)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 'x';
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
else if (logic == 10 || logic == 20 || logic == 30)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 'N';
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 'A';
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
/**
2021-02-18 08:33:38 +03:00
* @brief Function printsTray
* Responsible for printing the visual board for the user
2021-02-18 08:33:38 +03:00
* @param mat Matrix
* @param stage game step
2021-02-05 23:10:18 +03:00
*/
void printsTray(int mat[10][10], int stage)
2021-02-05 23:10:18 +03:00
{
int logic;
2021-02-05 23:10:18 +03:00
char imp;
printf(" ");
for (int i = 65; i < 75; i++)
{
printf("%c", i);
if (i < 74)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
printf(" ");
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
printf("\n");
for (int i = 0; i < 12; i++)
{
if (i > 0 && i < 11)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
printf("%02d ", i);
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
printf(" ");
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
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);
2021-02-05 23:10:18 +03:00
printf("%c", imp);
}
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
printf("#");
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
if (j < 11)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
printf(" ");
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
printf("\n");
}
}
/**
2021-02-18 08:33:38 +03:00
* @brief Function shoot
* Responsible for saying if he hit a boat
2021-02-18 08:33:38 +03:00
* @param mat board
* @param line matrix row
* @param column matrix column
2021-02-05 23:10:18 +03:00
*/
void shoot(int mat[10][10], int line, int column)
2021-02-05 23:10:18 +03:00
{
if (mat[line][column] == 0 || mat[line][column] == -1)
2021-02-18 09:00:14 +03:00
{
mat[line][column] = -2;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
2021-02-18 09:00:14 +03:00
else if (mat[line][column] == 1)
{
mat[line][column] = 10;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
2021-02-18 09:00:14 +03:00
else if (mat[line][column] == 2)
{
mat[line][column] = 20;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
2021-02-18 09:00:14 +03:00
else if (mat[line][column] == 3)
{
mat[line][column] = 30;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
/**
2021-02-18 08:33:38 +03:00
* @brief Function calculateScore
* Responsible for calculating the score obtained during the game
2021-02-18 08:33:38 +03:00
* @param mat board
* @param line matrix row
* @param column matrix column
* @returns resulting score
2021-02-05 23:10:18 +03:00
*/
int calculateScore(int mat[10][10], int line, int column)
2021-02-05 23:10:18 +03:00
{
int c = 0, b = 0, e = 0, d = 0;
if (mat[line][column] == 10)
2021-02-05 23:10:18 +03:00
{
mat[line][column] = 50;
2021-02-05 23:10:18 +03:00
return 2;
}
else if (mat[line][column] == 20)
2021-02-05 23:10:18 +03:00
{
if (mat[line + 1][column] == 20)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
b = 1;
2021-02-18 09:00:14 +03:00
}
if (mat[line - 1][column] == 20)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
c = 1;
2021-02-18 09:00:14 +03:00
}
if (mat[line][column + 1] == 20)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
d = 1;
2021-02-18 09:00:14 +03:00
}
if (mat[line][column - 1] == 20)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
e = 1;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
if (b == 1)
{
if (mat[line + 1][column] == 20)
2021-02-05 23:10:18 +03:00
{
mat[line][column] = 50;
mat[line + 1][column] = 50;
2021-02-05 23:10:18 +03:00
return 4;
}
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
if (c == 1)
{
if (mat[line - 1][column] == 20)
2021-02-05 23:10:18 +03:00
{
mat[line][column] = 50;
mat[line - 1][column] = 50;
2021-02-05 23:10:18 +03:00
return 4;
}
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
if (d == 1)
{
if (mat[line][column + 1] == 20)
2021-02-05 23:10:18 +03:00
{
mat[line][column] = 50;
mat[line][column + 1] = 50;
2021-02-05 23:10:18 +03:00
return 4;
}
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
if (e == 1)
{
if (mat[line][column - 1] == 20)
2021-02-05 23:10:18 +03:00
{
mat[line][column] = 50;
mat[line][column - 1] = 50;
2021-02-05 23:10:18 +03:00
return 4;
}
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
else if (mat[line][column] == 30)
2021-02-05 23:10:18 +03:00
{
if (mat[line + 1][column] == 30)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
b = 1;
2021-02-18 09:00:14 +03:00
}
if (mat[line - 1][column] == 30)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
c = 1;
2021-02-18 09:00:14 +03:00
}
if (mat[line][column + 1] == 30)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
d = 1;
2021-02-18 09:00:14 +03:00
}
if (mat[line][column - 1] == 30)
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
e = 1;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
if (b == 1 && c == 1)
{
if (mat[line + 1][column] == 30 && mat[line - 1][column] == 30)
2021-02-05 23:10:18 +03:00
{
mat[line][column] = 50;
mat[line + 1][column] = 50;
mat[line - 1][column] = 50;
2021-02-05 23:10:18 +03:00
return 7;
}
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
else if (d == 1 && e == 1)
{
if (mat[line][column + 1] == 30 && mat[line][column - 1] == 30)
2021-02-05 23:10:18 +03:00
{
mat[line][column] = 50;
mat[line][column - 1] = 50;
mat[line][column + 1] = 50;
2021-02-05 23:10:18 +03:00
return 7;
}
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
else if (d == 1)
{
if (mat[line][column + 1] == 30 && mat[line][column + 2] == 30)
2021-02-05 23:10:18 +03:00
{
mat[line][column] = 50;
mat[line][column + 1] = 50;
mat[line][column + 2] = 50;
2021-02-05 23:10:18 +03:00
return 7;
}
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
else if (e == 1)
{
if (mat[line][column - 1] == 30 && mat[line][column - 2] == 30)
2021-02-05 23:10:18 +03:00
{
mat[line][column] = 50;
mat[line][column - 1] = 50;
mat[line][column - 2] = 50;
2021-02-05 23:10:18 +03:00
return 7;
}
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
else if (c == 1)
{
if (mat[line - 1][column] == 30 && mat[line - 2][column] == 30)
2021-02-05 23:10:18 +03:00
{
mat[line][column] = 50;
mat[line - 1][column] = 50;
mat[line - 2][column] = 50;
2021-02-05 23:10:18 +03:00
return 7;
}
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
else if (b == 1)
{
if (mat[line + 1][column] == 30 && mat[line + 2][column] == 30)
2021-02-05 23:10:18 +03:00
{
mat[line][column] = 50;
mat[line + 1][column] = 50;
mat[line + 2][column] = 50;
2021-02-05 23:10:18 +03:00
return 7;
}
else
2021-02-18 09:00:14 +03:00
{
2021-02-05 23:10:18 +03:00
return 0;
2021-02-18 09:00:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
return 0;
}
/**
2021-02-18 08:33:38 +03:00
* @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
2021-02-05 23:10:18 +03:00
* @param nm which message to print
*/
void printPositioning(int Player, int boat, int nm)
2021-02-05 23:10:18 +03:00
{
if (Player == 1)
2021-02-05 23:10:18 +03:00
{
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)";
2021-02-05 23:10:18 +03:00
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)";
2021-02-05 23:10:18 +03:00
char msg11[60] = "Player 1 - Position the size boat 3 (1/2)";
char msg12[60] = "Player 1 - Position the size boat 3 (2/2)";
2021-02-05 23:10:18 +03:00
if (boat == 1)
2021-02-05 23:10:18 +03:00
{
if (nm == 1)
2021-02-19 05:11:14 +03:00
{
printMessage(msg1);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 2)
2021-02-19 05:11:14 +03:00
{
printMessage(msg2);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 3)
2021-02-19 05:11:14 +03:00
{
printMessage(msg3);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 4)
2021-02-19 05:11:14 +03:00
{
printMessage(msg4);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 5)
2021-02-19 05:11:14 +03:00
{
printMessage(msg5);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 6)
2021-02-19 05:11:14 +03:00
{
printMessage(msg6);
2021-02-19 05:11:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
else if (boat == 2)
2021-02-05 23:10:18 +03:00
{
if (nm == 1)
2021-02-19 05:11:14 +03:00
{
printMessage(msg7);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 2)
2021-02-19 05:11:14 +03:00
{
printMessage(msg8);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 3)
2021-02-19 05:11:14 +03:00
{
printMessage(msg9);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 4)
2021-02-19 05:11:14 +03:00
{
printMessage(msg10);
2021-02-19 05:11:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
else if (boat == 3)
2021-02-05 23:10:18 +03:00
{
if (nm == 1)
2021-02-19 05:11:14 +03:00
{
printMessage(msg11);
2021-02-19 05:11:14 +03:00
}
2021-02-05 23:10:18 +03:00
if (nm == 2)
2021-02-19 05:11:14 +03:00
{
printMessage(msg12);
2021-02-19 05:11:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
if (Player == 2)
2021-02-05 23:10:18 +03:00
{
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)";
2021-02-05 23:10:18 +03:00
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)";
2021-02-05 23:10:18 +03:00
char msg11[60] = "Player 2 - Position the size boat 3 (1/2)";
char msg12[60] = "Player 2 - Position the size boat 3 (2/2)";
2021-02-05 23:10:18 +03:00
if (boat == 1)
2021-02-05 23:10:18 +03:00
{
if (nm == 1)
2021-02-19 05:11:14 +03:00
{
printMessage(msg1);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 2)
2021-02-19 05:11:14 +03:00
{
printMessage(msg2);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 3)
2021-02-19 05:11:14 +03:00
{
printMessage(msg3);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 4)
2021-02-19 05:11:14 +03:00
{
printMessage(msg4);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 5)
2021-02-19 05:11:14 +03:00
{
printMessage(msg5);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 6)
2021-02-19 05:11:14 +03:00
{
printMessage(msg6);
2021-02-19 05:11:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
2021-02-18 09:00:14 +03:00
else if (boat == 2)
2021-02-05 23:10:18 +03:00
{
if (nm == 1)
2021-02-19 05:11:14 +03:00
{
printMessage(msg7);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 2)
2021-02-19 05:11:14 +03:00
{
printMessage(msg8);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 3)
2021-02-19 05:11:14 +03:00
{
printMessage(msg9);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 4)
2021-02-19 05:11:14 +03:00
{
printMessage(msg10);
2021-02-19 05:11:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
2021-02-18 09:00:14 +03:00
else if (boat == 3)
2021-02-05 23:10:18 +03:00
{
if (nm == 1)
2021-02-19 05:11:14 +03:00
{
printMessage(msg11);
2021-02-19 05:11:14 +03:00
}
2021-02-18 09:00:14 +03:00
else if (nm == 2)
2021-02-19 05:11:14 +03:00
{
printMessage(msg12);
2021-02-19 05:11:14 +03:00
}
2021-02-05 23:10:18 +03:00
}
}
}
/**
* @brief Main function
* @returns 0 on exit
*/
int main()
{
int Player1[10][10];
int Player2[10][10];
int plays = 1;
2021-02-05 23:10:18 +03:00
int pts1 = 0, pts2 = 0, a1 = 0, a2 = 0;
int line, col = 0, lin = 0;
char column;
// filling matrix with 0
2021-02-05 23:10:18 +03:00
for (int i = 0; i < 10; i++)
{
for (int j = 0; j < 10; j++)
{
Player1[i][j] = 0;
Player2[i][j] = 0;
2021-02-05 23:10:18 +03:00
}
}
// positioning boats
2021-02-05 23:10:18 +03:00
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);
2021-02-05 23:10:18 +03:00
}
else if (i == 2)
{
printPositioning(i, 1, j);
printsTray(Player2, 0);
positionBoat(Player2, 1);
2021-02-05 23:10:18 +03:00
}
}
for (int j = 1; j <= 4; j++)
{
if (i == 1)
{
printPositioning(i, 2, j);
printsTray(Player1, 0);
positionBoat(Player1, 2);
2021-02-05 23:10:18 +03:00
}
else if (i == 2)
{
printPositioning(i, 2, j);
printsTray(Player2, 0);
positionBoat(Player2, 2);
2021-02-05 23:10:18 +03:00
}
}
for (int j = 1; j <= 2; j++)
{
if (i == 1)
{
printPositioning(i, 3, j);
printsTray(Player1, 0);
positionBoat(Player1, 3);
2021-02-05 23:10:18 +03:00
}
else if (i == 2)
{
printPositioning(i, 3, j);
printsTray(Player2, 0);
positionBoat(Player2, 3);
2021-02-05 23:10:18 +03:00
}
}
}
// starting the game
while (plays <= 40)
2021-02-05 23:10:18 +03:00
{
if (plays % 2 != 0)
2021-02-05 23:10:18 +03:00
{
printMessageScore(pts1, pts2);
printMessage("Player 1's turn");
printsTray(Player2, 1);
scanf("%d %c", &line, &column);
2021-02-05 23:10:18 +03:00
while (validEntryLineColumn(line, column) != 1 ||
canShoot(Player2, line - 1, column - 65) != 1)
2021-02-05 23:10:18 +03:00
{
line = 0;
column = 'a';
printf("Position unavailable!\n");
scanf("%d %c", &line, &column);
2021-02-05 23:10:18 +03:00
}
lin = line - 1;
col = column - 65;
shoot(Player2, lin, col);
2021-02-05 23:10:18 +03:00
a1 = pts1;
pts1 += calculateScore(Player2, lin, col);
2021-02-05 23:10:18 +03:00
if (a1 != pts1)
{
printMessage("Player 1 DROPPED A BOAT!");
2021-02-05 23:10:18 +03:00
}
}
else
{
printMessageScore(pts1, pts2);
printMessage("Player 2's turn");
printsTray(Player1, 1);
scanf("%d %c", &line, &column);
2021-02-05 23:10:18 +03:00
while (validEntryLineColumn(line, column) != 1 ||
canShoot(Player1, line - 1, column - 65) != 1)
2021-02-05 23:10:18 +03:00
{
printf("Position unavailable!\n");
scanf("%d %c", &line, &column);
2021-02-05 23:10:18 +03:00
}
lin = line - 1;
col = column - 65;
shoot(Player1, lin, col);
2021-02-05 23:10:18 +03:00
a2 = pts2;
pts2 += calculateScore(Player1, lin, col);
2021-02-05 23:10:18 +03:00
if (a2 != pts2)
{
printMessage("Player 2 DROPPED A BOAT!");
2021-02-05 23:10:18 +03:00
}
}
plays++;
2021-02-05 23:10:18 +03:00
}
/**
* the one with the most points wins, or the one who knocks down all boats
* first.
*/
printMessage("END GAME\n");
printMessageScore(pts1, pts2);
2021-02-05 23:10:18 +03:00
return 0;
}