- Saved searches
- Use saved searches to filter your results more quickly
- License
- Kicshikxo/Sea-battle
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- About
- Saved searches
- Use saved searches to filter your results more quickly
- caioDelgado/battleship-vue
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- Saved searches
- Use saved searches to filter your results more quickly
- grinat/sea-battle
- Name already in use
- Sign In Required
- Launching GitHub Desktop
- Launching GitHub Desktop
- Launching Xcode
- Launching Visual Studio Code
- Latest commit
- Git stats
- Files
- README.md
- JavaScript: Морской бой
- Для полного доступа к испытанию нужен базовый план
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.
Игра Морской бой на NodeJS, с использованием Socket.IO
License
Kicshikxo/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
Морской бой — онлайн-игра для двух соперников. Заходите, расставляйте корабли, дождитесь противника и начинайте играть вдвоем.
Морской бой — это онлайн игра на двух игроков в реальном времени, где каждый игрок сражается против другого в пошаговом сражении на виртуальном поле боя.
Игроки могут немедленно присоединиться к игре, не требуя установки каких-либо дополнительных программ или регистрации. Просто создайте свою комнату на сайте или перейдите в комнату к другу по его ссылке и начинайте играть!
В игре предусмотрен встроенный чат, который обеспечивает мгновенный обмен сообщениями между игроками. В чате имеется поддержка смайликов, что добавляет возможность выразить свои эмоции.
Благодаря использованию серверного фреймворка Express js и библиотеки Socket.IO, игра Морской бой обеспечивает стабильное и надежное соединение между игроками. Это позволяет им наслаждаться игровым опытом без прерываний или задержек.
При создании игры были использованы следующие инструменты:
git clone https://github.com/Kicshikxo/Sea-battle.git
После установки пакетов запустите скрипт start для запуска сервера:
Распространяется по лицензии WTFPL. Смотрите LICENSE для большей информации.
About
Игра Морской бой на NodeJS, с использованием Socket.IO
Источник
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.
caioDelgado/battleship-vue
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
A Vue.js battleship game project
# install dependencies npm install # serve with hot reload at localhost:8080 npm run dev # build for production with minification npm run build # build for production and view the bundle analyzer report npm run build --report
For a detailed explanation on how things work, check out the guide and docs for vue-loader.
Источник
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.
grinat/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
Размещаются: 1 корабль — ряд из 4 клеток («четырёхпалубные») 2 корабля — ряд из 3 клеток («трёхпалубные») 3 корабля — ряд из 2 клеток («двухпалубные») 4 корабля — 1 клетка («однопалубные»)
При размещении корабли не могут касаться друг друга сторонами и углами.
При попадании в корабль противника — на чужом поле ставится крестик, при холостом выстреле — точка. Попавший стреляет ещё раз.
Источник
JavaScript: Морской бой
Реализуйте и экспортируйте функцию calcShipsCount() , которая принимает на вход поле боя в виде квадратного двумерного массива из нулей и единиц. Ноль — пустая ячейка, единица — часть корабля. Функция должна вернуть количество кораблей на поле боя.
Так как корабли не должны соприкасаться друг с другом, реализуйте и экспортируйте функцию isValidField() , которая проверяет расстановку кораблей на корректность.
calcShipsCount([]); // 0 calcShipsCount([ [0, 1, 0, 0, 0, 0], [0, 1, 0, 1, 1, 1], [0, 0, 0, 0, 0, 0], [0, 1, 1, 1, 0, 1], [0, 0, 0, 0, 0, 1], [1, 1, 0, 1, 0, 0], ]); // 6 isValidField([ [0, 1, 0, 0], [1, 0, 0, 1], [0, 0, 0, 0], [0, 1, 1, 1], ]); // false
Для полного доступа к испытанию нужен базовый план
Базовый план откроет полный доступ ко всем курсам, упражнениям и урокам Хекслета, проектам и пожизненный доступ к теории пройденных уроков. Подписку можно отменить в любой момент.
Источник