├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── assets ├── crunch.wav ├── effect_death.png ├── effect_death.txt ├── effect_vanish.png ├── effect_vanish.txt ├── enemy_eagle.png ├── enemy_eagle.txt ├── enemy_opossum.png ├── enemy_opossum.txt ├── hero.png ├── hero.txt ├── hero_alt.act ├── hurt.wav ├── jump.wav ├── layer_background.png ├── layer_background.tmx ├── layer_background.tsx ├── layer_foreground.png ├── layer_foreground.tmx ├── layer_foreground.tsx ├── objects.png ├── objects.tsx ├── pickup.wav ├── score.png ├── score.txt ├── ui.png ├── ui.tsx └── vulture.wav ├── screenshot.png └── src ├── UI.py ├── actor.py ├── eagle.py ├── effect.py ├── game.py ├── opossum.py ├── platformer.py ├── player.py ├── raster_effect.py ├── rectangle.py ├── score.py ├── sound.py ├── tilengine.py └── world.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/README.md -------------------------------------------------------------------------------- /assets/crunch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/crunch.wav -------------------------------------------------------------------------------- /assets/effect_death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/effect_death.png -------------------------------------------------------------------------------- /assets/effect_death.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/effect_death.txt -------------------------------------------------------------------------------- /assets/effect_vanish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/effect_vanish.png -------------------------------------------------------------------------------- /assets/effect_vanish.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/effect_vanish.txt -------------------------------------------------------------------------------- /assets/enemy_eagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/enemy_eagle.png -------------------------------------------------------------------------------- /assets/enemy_eagle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/enemy_eagle.txt -------------------------------------------------------------------------------- /assets/enemy_opossum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/enemy_opossum.png -------------------------------------------------------------------------------- /assets/enemy_opossum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/enemy_opossum.txt -------------------------------------------------------------------------------- /assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/hero.png -------------------------------------------------------------------------------- /assets/hero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/hero.txt -------------------------------------------------------------------------------- /assets/hero_alt.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/hero_alt.act -------------------------------------------------------------------------------- /assets/hurt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/hurt.wav -------------------------------------------------------------------------------- /assets/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/jump.wav -------------------------------------------------------------------------------- /assets/layer_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/layer_background.png -------------------------------------------------------------------------------- /assets/layer_background.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/layer_background.tmx -------------------------------------------------------------------------------- /assets/layer_background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/layer_background.tsx -------------------------------------------------------------------------------- /assets/layer_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/layer_foreground.png -------------------------------------------------------------------------------- /assets/layer_foreground.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/layer_foreground.tmx -------------------------------------------------------------------------------- /assets/layer_foreground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/layer_foreground.tsx -------------------------------------------------------------------------------- /assets/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/objects.png -------------------------------------------------------------------------------- /assets/objects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/objects.tsx -------------------------------------------------------------------------------- /assets/pickup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/pickup.wav -------------------------------------------------------------------------------- /assets/score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/score.png -------------------------------------------------------------------------------- /assets/score.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/score.txt -------------------------------------------------------------------------------- /assets/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/ui.png -------------------------------------------------------------------------------- /assets/ui.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/ui.tsx -------------------------------------------------------------------------------- /assets/vulture.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/assets/vulture.wav -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/UI.py -------------------------------------------------------------------------------- /src/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/actor.py -------------------------------------------------------------------------------- /src/eagle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/eagle.py -------------------------------------------------------------------------------- /src/effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/effect.py -------------------------------------------------------------------------------- /src/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/game.py -------------------------------------------------------------------------------- /src/opossum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/opossum.py -------------------------------------------------------------------------------- /src/platformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/platformer.py -------------------------------------------------------------------------------- /src/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/player.py -------------------------------------------------------------------------------- /src/raster_effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/raster_effect.py -------------------------------------------------------------------------------- /src/rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/rectangle.py -------------------------------------------------------------------------------- /src/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/score.py -------------------------------------------------------------------------------- /src/sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/sound.py -------------------------------------------------------------------------------- /src/tilengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/tilengine.py -------------------------------------------------------------------------------- /src/world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/megamarc/TilenginePythonPlatformer/HEAD/src/world.py --------------------------------------------------------------------------------