timepilot / BrainTank

Write AI for tanks and watch them battle it out!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Brain Tank

Summary

This is a little project to teach programming skills as well as basic AI. To run it just execute main.py with python.

Simulation Rules

Every time a trank becomes "idle" it will run the think() function associated with that brain to queue up more commands. The tank then executes these, which can take a variable amount of time. Tanks can also fire shots in the direction they are facing. They must turn to aim. Turning one facing takes half a second, turning twice takes one second. The shots move at twice the speed of a tank.

Tile Rules

  • Crossing dirt will take twice as long as regular tiles.
  • The tank will abort a move if it runs into a blocking tile or other tank.
  • Shots can destroy blocking tiles such as trees or rocks.
  • Driving into water will destroy the tank.

Making a Brain

Copy brains/wander.py to brains/yourname.py and add "yourname" it to config.py. For now it will only read the first two brains listed. There is a small guide that describes what this brain does and what is available for brains to use in wander.py.

TODO

  1. Add explosions and other animations.
  2. Make sound effects for actions.
  3. Add GUI elements like victory screen, etc.

Requirements

Licensing

The code is GPLv3, but the art/sound is not.

Attribution

  • The Planet Cute sprites are from the venerable Danc. Check out his site.
  • The tank is by Saypen on Open Game Art.
  • The Main song is by Mister Electric Demon on Jamendo.
  • Everything else I've made and is in the public domain.

About

Write AI for tanks and watch them battle it out!

License:GNU General Public License v3.0