Permalink
Cannot retrieve contributors at this time
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?
Text-Based-Game/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
34 lines (29 sloc)
1.36 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pixel Arena (Text-Based Game) | |
This is the repository for Group E4's text-based game for the Activity-Led Learning 2 module at Coventry University. We are making a Pokemon-esque, dungeon-crawler battle game, where the objective is to beat your opponent (another player), using the heroes that you selected before the match started. | |
## Running the game | |
On Ubuntu, you will need to have CMake, G++ and Ncurses. They can be installed using the following commands respectively: | |
``` | |
sudo apt-get install cmake | |
sudo apt-get install g++ | |
sudo apt-get install libncurses5-dev | |
sudo apt-get install libncursesw5-dev | |
sudo apt-get install libsqlite3-dev | |
``` | |
Then in the project repository, run the two following two commands: | |
``` | |
cmake . | |
cmake --build . | |
``` | |
This will create an executable inside the newly created `bin` folder. To execute this file, type `bin/main` in the terminal, when in the main project directory. | |
## Playing the game | |
Once you run the game using the above commands, you will be greeted by the following screen: | |
![Main menu](screenshots/main_menu_2.png) | |
On screens where you see a menu like this, you may navigate around the menu using your keyboard's arrow keys. To select an option, simply hit the Enter key. | |
## Credits | |
The following people are involved with this project: | |
* Abdullaahi Farah | |
* Adrian Jee | |
* Bartlomiej Wlodarski | |
* Mihai Ene | |
* Nikolay Lunchev | |
* Tsepo Ndebele |