Github морской бой c

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

C++ implementation of a battleship game in Terminal

cb92/Battleship

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

C++ implementation of a battleship game in Terminal

Player is a fairly simple class, with only getter/setter functions, and two constructors (one with and one without input parameters). The three member variables of the Player class — player number, whether the player is automatic, and the name of the player — are used to control gameplay, and interact with the players by name throughout gameplay. In particular, the bool stating whether the player is automatic determines which board initialization and move making functions get called when it is that player’s turn.

The Ship class creates a dynamically allocated array of characters to represent a ship in the game. A Ship object consists of a size, a name, an array representing the ship in the game, a position (x, y, orientation), and a boolean variable to indicate whether it is sunk or not. Initially, the x and y positions of the ship are set to -1, indicating that they are not yet set. Aside from the use of dynamically allocated memory, the Ship class is straightforward. In addition to the standard getter/setter functions, this class contains all necessary functionality to safely dynamically allocate memory as a part of object creation (copy constructor, destructor, move constructor, a copy assignment operator, and a move assignment operator), as well as a function to determine whether provided x and y coordinates should register a hit on a given ship. The recordHit function returns false if the coordinates provided are not a hit on the ship, and true if they are. Additionally, it changes the character in the hit position to an «X», and if all spots on the ship have been hit, changes the isSunk member variable to true.

Читайте также:  Высота города кызыла над уровнем моря

The Board class provides the underlying structure with which a game is played. A Board object consists of a two-dimensional 10×10 array, a vector of ships with the standard names/sizes of the ships in the classic Battleship game. The class also provides member functions to get the number of hits recorded on the board (to determine if the game has been won by a player), to print the board from the perspective of each player (ie. the opponent of a board only gets to see hits and misses, where the owner of the board gets to see remaining open spots on their ships), to get the value at a given space, record a hit and place a ship given x and y coordinates. The recordHit function actually loops over each ship in the vector for the board, and attempts to record a hit on each one. Additionally, if the move sinks a ship, it informs the user which ship was sunk. The placeShip function performs error checking, and returns false if the placement is invalid (if it falls outside of the board dimensions, if the ship has already been placed, or if the desired placement overlaps with an already placed ship). If the move is a valid one, it places the ship and changes the character values on the board appropriately before returning true.

The Game class includes functions and utilities that protect against bad input and execute the game according to its rules. To play the game, it first runs the startGame function (which gets/sets the player numbers/names/types, and initializes the boards according to player type). The Game class includes two board initialization methods, one for automatic players (or players who choose to set their board automatically) and one for live players. It also has two functions to get the next move, one for automatic players and one for live players. Both functions protect against making moves that have already been made.

The utility function set includes input validation functions for strings (below a max length), integers (in a given range) and square values (which must have a letter and a number). It also includes a menu function that prints a menu for a user and gets input to determine which actions the program should take. It allows a user to play multiple games, or quit when desired. It creates and runs a new game every time that the user indicates another game should be played.

Right now, this game allows two users to play the classic game of Battleship, with a 10×10 board, and five named ships of set lengths. On a player’s turn, they are presented with a public version of their board and a private version of their opponent’s board, to choose which square they will aim for.

  • Build out a set of rules for an auto-player to base intelligent gameplay on
  • Make board a dynamic 2D array, allow for customizable board sizes/sets of ships
  • Add sentinel character to end the game early (right now, it will loop until someone wins)

About

C++ implementation of a battleship game in Terminal

Источник

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

Читайте также:  Женский джемпер в морском стиле

«Морской бой» — игра для двух участников, в которой игроки по очереди называют координаты на неизвестной им карте соперника. Если у соперника по этим координатам имеется корабль (координаты заняты), то корабль или его часть «топится», а попавший получает право сделать ещё один ход. Цель игрока — первым потопить все корабли противника.

MaksymBondarenko/WPF_Sea-Battle

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

«Морской бой» — игра для двух участников, в которой игроки по очереди называют координаты на неизвестной им карте соперника. Если у соперника по этим координатам имеется корабль (координаты заняты), то корабль или его часть «топится», а попавший получает право сделать ещё один ход. Цель игрока — первым потопить все корабли противника.

About

«Морской бой» — игра для двух участников, в которой игроки по очереди называют координаты на неизвестной им карте соперника. Если у соперника по этим координатам имеется корабль (координаты заняты), то корабль или его часть «топится», а попавший получает право сделать ещё один ход. Цель игрока — первым потопить все корабли противника.

Источник

Saved searches

Use saved searches to filter your results more quickly

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

Fr0lvrn/Sea-Battle

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Sign In Required

Please sign in to use Codespaces.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching GitHub Desktop

If nothing happens, download GitHub Desktop and try again.

Launching Xcode

If nothing happens, download Xcode and try again.

Launching Visual Studio Code

Your codespace will open once ready.

There was a problem preparing your codespace, please try again.

Latest commit

Git stats

Files

Failed to load latest commit information.

README.md

Учебный проект по игре «Морской бой».

«Морской бой» — игра для двух участников, в которой игроки по очереди называют координаты на неизвестной им карте соперника. Если у соперника по этим координатам имеется корабль (координаты заняты), то корабль или его часть «топится», а попавший получает право сделать ещё один ход. Цель игрока — первым потопить все корабли противника.

Читайте также:  Можно ли делать ресницы перед морем

Игровое поле имеет площадь 10×10. На игровом поле размещаются:
1 корабль — ряд из 4 клеток («четырёхпалубный»; линкор)
2 корабля — ряд из 3 клеток («трёхпалубные»; крейсера)
3 корабля — ряд из 2 клеток («двухпалубные»; эсминцы)
4 корабля — 1 клетка («однопалубные»; торпедные катера)

При размещении корабли не могут касаться друг друга сторонами и углами. Расстояние между кораблями 1 клетка.

Данная игра работает по сети. Покдлючение к другому компьютеру осуществляется через IP компьютера.
Закрашенная фигура — Корабль или часть корабля целая
Заштрихованная фигура — Корабль подбит (ранен)
* — Промах
X — Корабль уничтожен

Подключаем библиотеки и пространство имен:

#include "pch.h" // Библитоека предкомпилированных заголовков #include // Библиотека ввода и вывода информации #include // Библиотека для работы с сокетами (работе по сети) #pragma comment(lib, "ws2_32.lib") // Подключаем #pragma warning(disable: 4996) // Игнорируем предупреждение using namespace std; 

Объявляем глобально наши массивы которые будут выполнять функцию игрового поля, переменные и сокет

const int N = 11; int corX, corY, winValue; // Объявлем переменные которые будут являться координатами наших кораблей и переменную для проверки выигрыша int fieldPlayer[N][N]; int fieldComp[N][N]; SOCKET Connection; // Подключаем соккет для работе по сети 
void showEmptyField(int numberArray); // Функция отрисовки игрового поля void enterLinkor(); // Функция для размещения на игровом поле 4-х палубного корабля void enterCruiser(); // Функция для размещения на игровом поле 3-х палубного корабля void enterDestroyer(); // Функция для размещения на игровом поле 2-х палубного корабля void enterBoat(); // Функция для размещения на игровом поле 1-о палубного корабля int ClientHandler(); // Функция для получения сообщения с координатами хода противника и отправки сообщения с изменившимися координатми на игровом поле и проверкой попадания или промаха int shoting(); // Функция для отправки координат стрельбы и получения результата void chekWounded(); // Функция для проверки раненых кораблей и их перезаписи в убитых int winGame(); // Функция проверки проигрыша и выигрыша игрока 

Вызываем код программы в котором выполняется функционал нашей игры

int main() < int temp = 0; int buff = 0; // Заполняем игровое поле игрока 0 for (int i = 0; i < N; i++) < for (int j = 0; j < N; j++) < fieldPlayer[i][j] = 0; >> // Заполняем игровое поле противника 0 for (int i = 0; i < N; i++) < for (int j = 0; j < N; j++) < fieldComp[i][j] = 0; >> enterLinkor(); // Расставляем 4-х полабуный корабль enterCruiser(); // Расставляем 3-х полабуный корабль enterCruiser(); // Расставляем 3-х полабуный корабль enterDestroyer(); // Расставляем 2-х полабуный корабль enterDestroyer(); // Расставляем 2-х полабуный корабль enterDestroyer(); // Расставляем 2-х полабуный корабль enterBoat(); // Расставляем 1-о полабуный корабль enterBoat(); // Расставляем 1-о полабуный корабль enterBoat(); // Расставляем 1-о полабуный корабль enterBoat(); // Расставляем 1-о полабуный корабль // Подключаемся по сети WSAData wsaData; WORD DLLVersion = MAKEWORD(2, 1); if (WSAStartup(DLLVersion, &wsaData) != 0) < std::cout SOCKADDR_IN addr; int sizeofaddr = sizeof(addr); addr.sin_addr.s_addr = inet_addr("192.168.88.138"); addr.sin_port = htons(1111); addr.sin_family = AF_INET; Connection = socket(AF_INET, SOCK_STREAM, NULL); // Проверка подключения по сети между игроками if (connect(Connection, (SOCKADDR*)&addr, sizeof(addr)) != 0) < cout // Выполняем программу, которая будет работать пока не выполнится условие победы и проигрыша do < // Выполняем программу до тех пор пока противник не промахнется do < temp = ClientHandler(); chekWounded(); >while (temp != 2); // Выполняем программу до тех пор пока стреляющий не промахнется do < buff = shoting(); chekWounded(); >while (buff != 2); winValue = winGame(); > while (winValue != 1); > 

Источник

Оцените статью