codetower/README.md

1.8 KiB

CodeTower

Code your tower (coding tower defense)

CodeTower is a Tower Defense coding game where the towers are driven by Python code.

It's a early prototype. CodeTower is a open source software distributed under the terms of the GPLv3 license.

The game engine is Blender / UPGE.

Screenshot

Download

Source repository (Gitlab) : https://gitlab.com/phroy/codetower

Binaries (GNU/Linux and Windows) : www.phroy.org

Tower commands

With your Python script, you can build, remove and upgrade your towers.

For each tower, you will be able to choose dynamically most appropriate techno (archer tower) or spell (mage tower).

The Python script is the file ct_cmd.py (in the game folder), you have to edit it with editing software (Spyder, Emacs, Atom, ...).

  • Build a tower : ct_build (x, y, category, name, color, style)

    • x position (integer)
    • y position (integer)
    • category (string) : "Archer tower", "Mage tower" or "Barrack" (not implemented)
    • name (string)
    • color (RGB model) : purple, turquoise, magenta, orange, yellow, green, red or [R, G, B, 1]
    • style : square or round and version (A,B or C), exemple : 'square-A'
    • Return boolean flag
      • True : builded without error
      • False : not builded (error)
    • Exemple : ct_build(1,1, "Archer tower", "Tower #1",yellow,"round-A")
  • Remove a tower : ct_remove (x, y)

    • x position (integer)
    • y position (integer)
  • Get your level : ct_level ()

    • Return your level (integer)
  • Time management (temporization) : ct_sleep (delay)

    • delay : duration in seconds (float)