6
1
Fork
You've already forked RobotsAreComingCPP
0
No description
  • C++ 70.1%
  • Makefile 18.4%
  • C 11.5%
2025年12月11日 15:12:40 +01:00
src Delete Robot2 2025年12月11日 08:42:23 -05:00
.gitignore Add vscode files to .gitignore 2025年12月11日 08:58:04 -05:00
Makefile Add Makefile 2025年12月01日 10:58:35 -05:00
README.md updated readme file 2025年12月11日 09:10:07 -05:00

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

  1. multiple robots chasing the player
  2. Teleport
  3. Scraps left behind after a robot dies
  4. High Score?