├── .gitignore ├── .gitmodules ├── README.textile ├── editor ├── LICENSE.txt ├── Makefile ├── res │ ├── artworks │ │ ├── avalanche-capa.xcf │ │ ├── avalanche-ide.png │ │ ├── avalanche-ide.xcf │ │ ├── avalanche.png │ │ ├── avalanche.svg │ │ ├── avalanchefb.png │ │ ├── avalancheg+.png │ │ ├── avalancheg+.xcf │ │ ├── avalancheprof.png │ │ ├── avalancheprof2.png │ │ ├── icon.png │ │ └── pagebg.png │ ├── fonts │ │ ├── 30-ttf-liberation-mono.conf │ │ ├── LiberationMono-Bold.ttf │ │ ├── LiberationMono-BoldItalic.ttf │ │ └── LiberationMono-Italic.ttf │ ├── icons │ │ ├── avalanche.png │ │ ├── folder.png │ │ ├── text-x-preview.png │ │ └── vala.png │ ├── shortcuts │ │ └── avalanche.desktop │ └── syntax-colors │ │ ├── lgpl-3.0.txt │ │ ├── tomorrow.xml │ │ └── tonight.xml └── src │ ├── application.vala │ ├── basetab.vala │ ├── miscellaneous.vala │ ├── open-dialog.vala │ ├── project.vala │ ├── script-browser.vala │ ├── scripting-dashboard.vala │ ├── scripting-editor-dialog.vala │ ├── scripting-editor.vala │ ├── scripting-tab.vala │ └── source-editor-search-dialog.vala ├── examples ├── physics │ ├── res │ │ ├── ball.png │ │ └── wall.png │ └── src │ │ ├── main.vala │ │ └── physics_test.vala ├── platform │ ├── .gitignore │ ├── Makefile │ ├── comp │ ├── res │ │ ├── b64zlib.tmx │ │ ├── bg.jpg │ │ ├── numbers.png │ │ └── skel.png │ ├── run │ └── src │ │ ├── game1.vala │ │ ├── level.vala │ │ ├── main.vala │ │ └── player.vala └── shooter │ ├── .gitignore │ ├── Makefile │ ├── Microsoft_Permissive_License.rtf │ ├── README │ ├── android_project │ ├── .classpath │ ├── .project │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── AndroidManifest.xml │ ├── assets │ ├── build.xml │ ├── gen │ │ └── avalanche │ │ │ └── shooterdemo │ │ │ ├── BuildConfig.java │ │ │ └── R.java │ ├── libs │ │ └── android-support-v4.jar │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── activity_main.xml │ │ ├── menu │ │ │ └── main.xml │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ ├── values-sw720dp-land │ │ │ └── dimens.xml │ │ ├── values-v11 │ │ │ └── styles.xml │ │ ├── values-v14 │ │ │ └── styles.xml │ │ └── values │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── src │ │ └── org │ │ └── libsdl │ │ └── app │ │ └── SDLActivity.java │ ├── androidcomp │ ├── comp │ ├── res │ ├── DroidSansMono.ttf │ ├── bgLayer1.png │ ├── bgLayer2.png │ ├── endMenu.png │ ├── explosion.png │ ├── explosion.wav │ ├── gameMusic.mp3 │ ├── laser.png │ ├── laserFire.wav │ ├── mainMenu.png │ ├── mainbackground.png │ ├── menuMusic.mp3 │ ├── mine.png │ ├── mineAnimation.png │ ├── player.png │ └── shipAnimation.png │ └── src │ ├── enemy.vala │ ├── game1.vala │ ├── main.vala │ ├── player.vala │ ├── projectile.vala │ └── splash.vala └── sdks ├── LICENSE.txt ├── avalanche ├── Game.java ├── animation.vala ├── avalanche_android_main.c ├── avalanche_jni.h ├── game.vala ├── parallaxed.vala ├── screenstate.vala └── text.vala ├── template ├── Makefile └── src │ ├── main.vala │ └── sampleim_state.vala └── utils └── tmx ├── .gitignore ├── INSTALL ├── bin └── libtmx_sdl.so ├── comp └── src ├── tmx.vapi ├── tmx_sdl.c ├── tmx_sdl.deps ├── tmx_sdl.h └── tmx_sdl.vapi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/README.textile -------------------------------------------------------------------------------- /editor/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/LICENSE.txt -------------------------------------------------------------------------------- /editor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/Makefile -------------------------------------------------------------------------------- /editor/res/artworks/avalanche-capa.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/avalanche-capa.xcf -------------------------------------------------------------------------------- /editor/res/artworks/avalanche-ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/avalanche-ide.png -------------------------------------------------------------------------------- /editor/res/artworks/avalanche-ide.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/avalanche-ide.xcf -------------------------------------------------------------------------------- /editor/res/artworks/avalanche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/avalanche.png -------------------------------------------------------------------------------- /editor/res/artworks/avalanche.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/avalanche.svg -------------------------------------------------------------------------------- /editor/res/artworks/avalanchefb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/avalanchefb.png -------------------------------------------------------------------------------- /editor/res/artworks/avalancheg+.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/avalancheg+.png -------------------------------------------------------------------------------- /editor/res/artworks/avalancheg+.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/avalancheg+.xcf -------------------------------------------------------------------------------- /editor/res/artworks/avalancheprof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/avalancheprof.png -------------------------------------------------------------------------------- /editor/res/artworks/avalancheprof2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/avalancheprof2.png -------------------------------------------------------------------------------- /editor/res/artworks/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/icon.png -------------------------------------------------------------------------------- /editor/res/artworks/pagebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/artworks/pagebg.png -------------------------------------------------------------------------------- /editor/res/fonts/30-ttf-liberation-mono.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/fonts/30-ttf-liberation-mono.conf -------------------------------------------------------------------------------- /editor/res/fonts/LiberationMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/fonts/LiberationMono-Bold.ttf -------------------------------------------------------------------------------- /editor/res/fonts/LiberationMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/fonts/LiberationMono-BoldItalic.ttf -------------------------------------------------------------------------------- /editor/res/fonts/LiberationMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/fonts/LiberationMono-Italic.ttf -------------------------------------------------------------------------------- /editor/res/icons/avalanche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/icons/avalanche.png -------------------------------------------------------------------------------- /editor/res/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/icons/folder.png -------------------------------------------------------------------------------- /editor/res/icons/text-x-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/icons/text-x-preview.png -------------------------------------------------------------------------------- /editor/res/icons/vala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/icons/vala.png -------------------------------------------------------------------------------- /editor/res/shortcuts/avalanche.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/shortcuts/avalanche.desktop -------------------------------------------------------------------------------- /editor/res/syntax-colors/lgpl-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/syntax-colors/lgpl-3.0.txt -------------------------------------------------------------------------------- /editor/res/syntax-colors/tomorrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/syntax-colors/tomorrow.xml -------------------------------------------------------------------------------- /editor/res/syntax-colors/tonight.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/res/syntax-colors/tonight.xml -------------------------------------------------------------------------------- /editor/src/application.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/src/application.vala -------------------------------------------------------------------------------- /editor/src/basetab.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/src/basetab.vala -------------------------------------------------------------------------------- /editor/src/miscellaneous.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/src/miscellaneous.vala -------------------------------------------------------------------------------- /editor/src/open-dialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/src/open-dialog.vala -------------------------------------------------------------------------------- /editor/src/project.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/src/project.vala -------------------------------------------------------------------------------- /editor/src/script-browser.vala: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /editor/src/scripting-dashboard.vala: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /editor/src/scripting-editor-dialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/src/scripting-editor-dialog.vala -------------------------------------------------------------------------------- /editor/src/scripting-editor.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/src/scripting-editor.vala -------------------------------------------------------------------------------- /editor/src/scripting-tab.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/src/scripting-tab.vala -------------------------------------------------------------------------------- /editor/src/source-editor-search-dialog.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/editor/src/source-editor-search-dialog.vala -------------------------------------------------------------------------------- /examples/physics/res/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/physics/res/ball.png -------------------------------------------------------------------------------- /examples/physics/res/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/physics/res/wall.png -------------------------------------------------------------------------------- /examples/physics/src/main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/physics/src/main.vala -------------------------------------------------------------------------------- /examples/physics/src/physics_test.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/physics/src/physics_test.vala -------------------------------------------------------------------------------- /examples/platform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/platform/.gitignore -------------------------------------------------------------------------------- /examples/platform/Makefile: -------------------------------------------------------------------------------- 1 | ../../sdks/template/Makefile -------------------------------------------------------------------------------- /examples/platform/comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/platform/comp -------------------------------------------------------------------------------- /examples/platform/res/b64zlib.tmx: -------------------------------------------------------------------------------- 1 | ../../../sdks/utils/tmx/loader/examples/b64zlib.tmx -------------------------------------------------------------------------------- /examples/platform/res/bg.jpg: -------------------------------------------------------------------------------- 1 | ../../../sdks/utils/tmx/loader/examples/bg.jpg -------------------------------------------------------------------------------- /examples/platform/res/numbers.png: -------------------------------------------------------------------------------- 1 | ../../../sdks/utils/tmx/loader/examples/numbers.png -------------------------------------------------------------------------------- /examples/platform/res/skel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/platform/res/skel.png -------------------------------------------------------------------------------- /examples/platform/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/platform/run -------------------------------------------------------------------------------- /examples/platform/src/game1.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/platform/src/game1.vala -------------------------------------------------------------------------------- /examples/platform/src/level.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/platform/src/level.vala -------------------------------------------------------------------------------- /examples/platform/src/main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/platform/src/main.vala -------------------------------------------------------------------------------- /examples/platform/src/player.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/platform/src/player.vala -------------------------------------------------------------------------------- /examples/shooter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/.gitignore -------------------------------------------------------------------------------- /examples/shooter/Makefile: -------------------------------------------------------------------------------- 1 | ../../sdks/template/Makefile -------------------------------------------------------------------------------- /examples/shooter/Microsoft_Permissive_License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/Microsoft_Permissive_License.rtf -------------------------------------------------------------------------------- /examples/shooter/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/README -------------------------------------------------------------------------------- /examples/shooter/android_project/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/.classpath -------------------------------------------------------------------------------- /examples/shooter/android_project/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/.project -------------------------------------------------------------------------------- /examples/shooter/android_project/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /examples/shooter/android_project/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/shooter/android_project/assets: -------------------------------------------------------------------------------- 1 | ../res -------------------------------------------------------------------------------- /examples/shooter/android_project/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/build.xml -------------------------------------------------------------------------------- /examples/shooter/android_project/gen/avalanche/shooterdemo/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/gen/avalanche/shooterdemo/BuildConfig.java -------------------------------------------------------------------------------- /examples/shooter/android_project/gen/avalanche/shooterdemo/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/gen/avalanche/shooterdemo/R.java -------------------------------------------------------------------------------- /examples/shooter/android_project/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/libs/android-support-v4.jar -------------------------------------------------------------------------------- /examples/shooter/android_project/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/proguard-project.txt -------------------------------------------------------------------------------- /examples/shooter/android_project/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/project.properties -------------------------------------------------------------------------------- /examples/shooter/android_project/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/shooter/android_project/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/shooter/android_project/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/shooter/android_project/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/layout/activity_main.xml -------------------------------------------------------------------------------- /examples/shooter/android_project/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/menu/main.xml -------------------------------------------------------------------------------- /examples/shooter/android_project/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /examples/shooter/android_project/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /examples/shooter/android_project/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/values-v11/styles.xml -------------------------------------------------------------------------------- /examples/shooter/android_project/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/values-v14/styles.xml -------------------------------------------------------------------------------- /examples/shooter/android_project/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/values/dimens.xml -------------------------------------------------------------------------------- /examples/shooter/android_project/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/values/strings.xml -------------------------------------------------------------------------------- /examples/shooter/android_project/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/res/values/styles.xml -------------------------------------------------------------------------------- /examples/shooter/android_project/src/org/libsdl/app/SDLActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/android_project/src/org/libsdl/app/SDLActivity.java -------------------------------------------------------------------------------- /examples/shooter/androidcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/androidcomp -------------------------------------------------------------------------------- /examples/shooter/comp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | export AVALANCHE_DIR="../.." 3 | make $* -------------------------------------------------------------------------------- /examples/shooter/res/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/DroidSansMono.ttf -------------------------------------------------------------------------------- /examples/shooter/res/bgLayer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/bgLayer1.png -------------------------------------------------------------------------------- /examples/shooter/res/bgLayer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/bgLayer2.png -------------------------------------------------------------------------------- /examples/shooter/res/endMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/endMenu.png -------------------------------------------------------------------------------- /examples/shooter/res/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/explosion.png -------------------------------------------------------------------------------- /examples/shooter/res/explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/explosion.wav -------------------------------------------------------------------------------- /examples/shooter/res/gameMusic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/gameMusic.mp3 -------------------------------------------------------------------------------- /examples/shooter/res/laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/laser.png -------------------------------------------------------------------------------- /examples/shooter/res/laserFire.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/laserFire.wav -------------------------------------------------------------------------------- /examples/shooter/res/mainMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/mainMenu.png -------------------------------------------------------------------------------- /examples/shooter/res/mainbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/mainbackground.png -------------------------------------------------------------------------------- /examples/shooter/res/menuMusic.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/menuMusic.mp3 -------------------------------------------------------------------------------- /examples/shooter/res/mine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/mine.png -------------------------------------------------------------------------------- /examples/shooter/res/mineAnimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/mineAnimation.png -------------------------------------------------------------------------------- /examples/shooter/res/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/player.png -------------------------------------------------------------------------------- /examples/shooter/res/shipAnimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/res/shipAnimation.png -------------------------------------------------------------------------------- /examples/shooter/src/enemy.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/src/enemy.vala -------------------------------------------------------------------------------- /examples/shooter/src/game1.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/src/game1.vala -------------------------------------------------------------------------------- /examples/shooter/src/main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/src/main.vala -------------------------------------------------------------------------------- /examples/shooter/src/player.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/src/player.vala -------------------------------------------------------------------------------- /examples/shooter/src/projectile.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/src/projectile.vala -------------------------------------------------------------------------------- /examples/shooter/src/splash.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/examples/shooter/src/splash.vala -------------------------------------------------------------------------------- /sdks/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/LICENSE.txt -------------------------------------------------------------------------------- /sdks/avalanche/Game.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/avalanche/Game.java -------------------------------------------------------------------------------- /sdks/avalanche/animation.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/avalanche/animation.vala -------------------------------------------------------------------------------- /sdks/avalanche/avalanche_android_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/avalanche/avalanche_android_main.c -------------------------------------------------------------------------------- /sdks/avalanche/avalanche_jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/avalanche/avalanche_jni.h -------------------------------------------------------------------------------- /sdks/avalanche/game.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/avalanche/game.vala -------------------------------------------------------------------------------- /sdks/avalanche/parallaxed.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/avalanche/parallaxed.vala -------------------------------------------------------------------------------- /sdks/avalanche/screenstate.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/avalanche/screenstate.vala -------------------------------------------------------------------------------- /sdks/avalanche/text.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/avalanche/text.vala -------------------------------------------------------------------------------- /sdks/template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/template/Makefile -------------------------------------------------------------------------------- /sdks/template/src/main.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/template/src/main.vala -------------------------------------------------------------------------------- /sdks/template/src/sampleim_state.vala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/template/src/sampleim_state.vala -------------------------------------------------------------------------------- /sdks/utils/tmx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/utils/tmx/.gitignore -------------------------------------------------------------------------------- /sdks/utils/tmx/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/utils/tmx/INSTALL -------------------------------------------------------------------------------- /sdks/utils/tmx/bin/libtmx_sdl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/utils/tmx/bin/libtmx_sdl.so -------------------------------------------------------------------------------- /sdks/utils/tmx/comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/utils/tmx/comp -------------------------------------------------------------------------------- /sdks/utils/tmx/src/tmx.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/utils/tmx/src/tmx.vapi -------------------------------------------------------------------------------- /sdks/utils/tmx/src/tmx_sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/utils/tmx/src/tmx_sdl.c -------------------------------------------------------------------------------- /sdks/utils/tmx/src/tmx_sdl.deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/utils/tmx/src/tmx_sdl.deps -------------------------------------------------------------------------------- /sdks/utils/tmx/src/tmx_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/utils/tmx/src/tmx_sdl.h -------------------------------------------------------------------------------- /sdks/utils/tmx/src/tmx_sdl.vapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avalanche-games/avalanche/HEAD/sdks/utils/tmx/src/tmx_sdl.vapi --------------------------------------------------------------------------------