Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucivpav/bomberman
A command line Bomberman game written in C++.
https://github.com/lucivpav/bomberman
bomberman bomberman-game fit-ctu fit-cvut ncurses sdl
Last synced: 29 days ago
JSON representation
A command line Bomberman game written in C++.
- Host: GitHub
- URL: https://github.com/lucivpav/bomberman
- Owner: lucivpav
- Created: 2016-02-14T17:09:17.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-10T18:04:56.000Z (almost 8 years ago)
- Last Synced: 2024-11-01T06:16:28.594Z (3 months ago)
- Topics: bomberman, bomberman-game, fit-ctu, fit-cvut, ncurses, sdl
- Language: C++
- Homepage:
- Size: 288 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bomberman #
[![Build Status](https://travis-ci.org/lucivpav/bomberman.svg?branch=master)](https://travis-ci.org/lucivpav/bomberman)A command line Bomberman game written in C++.
![](http://i.imgur.com/QE7mLYm.gif)
### Features ###
* Singleplayer (including ghosts, traps, ...)
* Multiplayer (over a network)
* Bonuses (increased flame length, multiple bombs, remote bombs, faster movement)
* AI
* GUI mode (--gui)
* Editor### Controls ###
* WASD/arrows move
* B place bomb
* space detonate bombs
* Q exit### Dependencies ###
* pthread
* ncurses
* unix sockets
* SDL2, SDL2_image, SDL2_ttf
* doxygen (optional)### Compiling on Ubuntu ###
```Bash
make compile # to compile the game
# OR
make # to compile the game, docs and tests
```### Running ###
```Bash
./bomberman
# OR
./bomberman --gui
```
User is responsible for ensuring the terminal size is at least
47x24 characters during program execution. The program is not
guaranteed to function properly if this condition is not met.