This is a simple implementation of the game bomberman / playing with fire intended for AI-coding challenges.
Add your AI-code to a file in the ais directory. See the template for the basic structure. The only two requirements to the AI-code is that it has function makeAi(id)
that returns an object with a get_action function and that it only uses imports from the info gate.
- Clone this repository:
git clone https://github.com/Ivarafa/game-dev-bomberman-ai.git
cd game-dev-bomberman-ai
npm install
npm start
- See the game at http://localhost:3000
- During a competition, fork the project and clone your fork.
- Follow the steps above to run the game and create your AI. Then push your AI and create a pull request towards the tournament branch in the original repo.