No description
- C++ 70.1%
- Makefile 18.4%
- C 11.5%
| src | Delete Robot2 | |
| .gitignore | Add vscode files to .gitignore | |
| Makefile | Add Makefile | |
| README.md | updated readme file | |
Welcome to Robots Are Coming!
This game is a a version of the classic console based game, robots, in which you’re surrounded by robots who are trying to catch you, and you have to outwit them by fooling them into crashing into one another.
Installation
Clone the repo using git clone [repository\_url]
Usage/Running The Game
- to compile main.cpp: g++ main.cpp robots.cpp -lncurses -std=c++11 -o robotsgame
- to run the game: ./robotsgame or type "open robotsgame" in terminal or you can type 'make run'
- to compile the test file: g++ test_robots.cpp robots.cpp -std=c++11 -lncurses -o test_robots
- to run the tests: ./test_robots.cpp or you can type 'make test'
- keybinds can be edited in keybinds.h
To Do
- multiple robots chasing the player
- Teleport
- Scraps left behind after a robot dies
- High Score?