├── .github └── workflows │ ├── build-android.yml │ ├── build-desktop.yml │ └── build-j2me.yml ├── .gitmodules ├── LICENSE ├── README.md ├── android ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── compiler.xml │ ├── gradle.xml │ ├── migrations.xml │ ├── misc.xml │ ├── runConfigurations.xml │ └── vcs.xml ├── README.md ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ ├── java │ │ └── com │ │ │ └── vipaol │ │ │ └── mobapp │ │ │ └── android │ │ │ ├── EditorActivity.java │ │ │ ├── GameActivity.java │ │ │ ├── IntentsUtil.java │ │ │ └── MobappDocumentsProvider.java │ │ └── res │ │ ├── drawable │ │ ├── icon_foreground.xml │ │ └── icon_mono.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── icon_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── icon_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── icon_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── icon_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── icon_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── icon_round.png │ │ ├── values-v1 │ │ └── bools.xml │ │ ├── values-v19 │ │ └── bools.xml │ │ ├── values │ │ └── ic_launcher_background.xml │ │ └── xml │ │ └── data_extraction_rules.xml ├── build.gradle ├── gradle.properties ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── desktop ├── .gitignore ├── .idea │ ├── .gitignore │ ├── .name │ ├── gradle.xml │ ├── misc.xml │ └── vcs.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src │ └── main │ ├── java │ ├── FontSizeSettingsScreen.java │ ├── PlatformSettingsScreen.java │ └── com │ │ └── vipaol │ │ └── MobappGameDesktopMain.java │ └── resources ├── j2me ├── .classpath ├── .gitignore ├── .mtj ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── Application Descriptor ├── README.md ├── build-config.sh ├── build.properties ├── build.sh ├── build.xml ├── lib │ ├── PhysicsEngine_v135b.jar │ ├── mobapp-framework │ └── mobapp-platform-j2me ├── mobapp-src ├── res └── src │ └── mobileapplication3 │ └── GameMIDlet.java ├── lib └── PhysicsEngine_v135b.jar ├── res ├── driver.png ├── editoricon.png ├── editorlogo.png ├── gameicon.png ├── l1.mglvl ├── l2.mglvl ├── l3.mglvl ├── l4.mglvl ├── l5.mglvl ├── l6.mglvl ├── l7.mglvl ├── l8.mglvl ├── qr.png ├── s1.mgstruct ├── s10.mgstruct ├── s11.mgstruct ├── s12.mgstruct ├── s13.mgstruct ├── s14.mgstruct ├── s15.mgstruct ├── s16.mgstruct ├── s17.mgstruct ├── s18.mgstruct ├── s19.mgstruct ├── s2.mgstruct ├── s20.mgstruct ├── s21.mgstruct ├── s22.mgstruct ├── s23.mgstruct ├── s24.mgstruct ├── s25.mgstruct ├── s26.mgstruct ├── s27.mgstruct ├── s28.mgstruct ├── s3.mgstruct ├── s4.mgstruct ├── s5.mgstruct ├── s6.mgstruct ├── s7.mgstruct ├── s8.mgstruct └── s9.mgstruct └── src ├── mobileapplication3 ├── editor │ ├── About.java │ ├── AbstractEditorMenu.java │ ├── AdvancedElementEditUI.java │ ├── AutoSaveUI.java │ ├── Editor.java │ ├── EditorCanvas.java │ ├── EditorQuickMenu.java │ ├── EditorSettings.java │ ├── EditorUI.java │ ├── ElementEditUI.java │ ├── LevelsMenu.java │ ├── MGStructs.java │ ├── MainMenu.java │ ├── MoveAllElements.java │ ├── PathPicker.java │ ├── SettingsUI.java │ ├── StructureBuilder.java │ ├── StructureViewerComponent.java │ ├── StructuresMenu.java │ ├── elements │ │ ├── AbstractCurve.java │ │ ├── AbstractRectBodyElement.java │ │ ├── Accelerator.java │ │ ├── BrokenCircle.java │ │ ├── BrokenLine.java │ │ ├── Circle.java │ │ ├── Element.java │ │ ├── EndPoint.java │ │ ├── Lava.java │ │ ├── LevelFinish.java │ │ ├── LevelStart.java │ │ ├── Line.java │ │ ├── Sine.java │ │ ├── StartPoint.java │ │ └── Trampoline.java │ └── setup │ │ ├── AbstractSetupWizardPage.java │ │ ├── Page1.java │ │ ├── Page2.java │ │ ├── Page3.java │ │ ├── Page4.java │ │ ├── Page5.java │ │ └── SetupWizard.java └── game │ ├── AboutScreen.java │ ├── DebugMenu.java │ ├── ElementPlacer.java │ ├── GameplayCanvas.java │ ├── GenericMenu.java │ ├── GraphicsWorld.java │ ├── LevelCompletedScreen.java │ ├── Levels.java │ ├── MUserData.java │ ├── MenuCanvas.java │ ├── RecordsScreen.java │ ├── SettingsScreen.java │ ├── StructurePlacer.java │ └── WorldGen.java └── utils ├── GameFileUtils.java ├── MgStruct.java └── MobappGameSettings.java /.github/workflows/build-android.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/.github/workflows/build-android.yml -------------------------------------------------------------------------------- /.github/workflows/build-desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/.github/workflows/build-desktop.yml -------------------------------------------------------------------------------- /.github/workflows/build-j2me.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/.github/workflows/build-j2me.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/README.md -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/.gitignore -------------------------------------------------------------------------------- /android/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/.idea/.name: -------------------------------------------------------------------------------- 1 | mobapp -------------------------------------------------------------------------------- /android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/.idea/compiler.xml -------------------------------------------------------------------------------- /android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/.idea/gradle.xml -------------------------------------------------------------------------------- /android/.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/.idea/migrations.xml -------------------------------------------------------------------------------- /android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/.idea/misc.xml -------------------------------------------------------------------------------- /android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/.idea/vcs.xml -------------------------------------------------------------------------------- /android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/README.md -------------------------------------------------------------------------------- /android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /release 3 | -------------------------------------------------------------------------------- /android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/build.gradle -------------------------------------------------------------------------------- /android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/app/src/main/assets: -------------------------------------------------------------------------------- 1 | ../../../../res/ -------------------------------------------------------------------------------- /android/app/src/main/java/com/vipaol/mobapp/android/EditorActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/java/com/vipaol/mobapp/android/EditorActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/vipaol/mobapp/android/GameActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/java/com/vipaol/mobapp/android/GameActivity.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/vipaol/mobapp/android/IntentsUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/java/com/vipaol/mobapp/android/IntentsUtil.java -------------------------------------------------------------------------------- /android/app/src/main/java/com/vipaol/mobapp/android/MobappDocumentsProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/java/com/vipaol/mobapp/android/MobappDocumentsProvider.java -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/icon_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/drawable/icon_foreground.xml -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/icon_mono.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/drawable/icon_mono.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-hdpi/icon_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-mdpi/icon_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-xhdpi/icon_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-xxhdpi/icon_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/icon_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/mipmap-xxxhdpi/icon_round.png -------------------------------------------------------------------------------- /android/app/src/main/res/values-v1/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/values-v1/bools.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values-v19/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/values-v19/bools.xml -------------------------------------------------------------------------------- /android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /android/app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/gradle/libs.versions.toml -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/android/settings.gradle -------------------------------------------------------------------------------- /desktop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/.gitignore -------------------------------------------------------------------------------- /desktop/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /desktop/.idea/.name: -------------------------------------------------------------------------------- 1 | mobapp-game-desktop -------------------------------------------------------------------------------- /desktop/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/.idea/gradle.xml -------------------------------------------------------------------------------- /desktop/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/.idea/misc.xml -------------------------------------------------------------------------------- /desktop/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/.idea/vcs.xml -------------------------------------------------------------------------------- /desktop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/build.gradle -------------------------------------------------------------------------------- /desktop/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /desktop/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /desktop/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/gradlew -------------------------------------------------------------------------------- /desktop/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/gradlew.bat -------------------------------------------------------------------------------- /desktop/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'mobapp-game-desktop' 2 | 3 | -------------------------------------------------------------------------------- /desktop/src/main/java/FontSizeSettingsScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/src/main/java/FontSizeSettingsScreen.java -------------------------------------------------------------------------------- /desktop/src/main/java/PlatformSettingsScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/src/main/java/PlatformSettingsScreen.java -------------------------------------------------------------------------------- /desktop/src/main/java/com/vipaol/MobappGameDesktopMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/desktop/src/main/java/com/vipaol/MobappGameDesktopMain.java -------------------------------------------------------------------------------- /desktop/src/main/resources: -------------------------------------------------------------------------------- 1 | ../../../res/ -------------------------------------------------------------------------------- /j2me/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/.classpath -------------------------------------------------------------------------------- /j2me/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/.gitignore -------------------------------------------------------------------------------- /j2me/.mtj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/.mtj -------------------------------------------------------------------------------- /j2me/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/.project -------------------------------------------------------------------------------- /j2me/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /j2me/Application Descriptor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/Application Descriptor -------------------------------------------------------------------------------- /j2me/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/README.md -------------------------------------------------------------------------------- /j2me/build-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/build-config.sh -------------------------------------------------------------------------------- /j2me/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/build.properties -------------------------------------------------------------------------------- /j2me/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/build.sh -------------------------------------------------------------------------------- /j2me/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/build.xml -------------------------------------------------------------------------------- /j2me/lib/PhysicsEngine_v135b.jar: -------------------------------------------------------------------------------- 1 | ../../lib/PhysicsEngine_v135b.jar -------------------------------------------------------------------------------- /j2me/lib/mobapp-framework: -------------------------------------------------------------------------------- 1 | ../../lib/mobapp-framework/ -------------------------------------------------------------------------------- /j2me/lib/mobapp-platform-j2me: -------------------------------------------------------------------------------- 1 | ../../lib/mobapp-platform-j2me -------------------------------------------------------------------------------- /j2me/mobapp-src: -------------------------------------------------------------------------------- 1 | ../src -------------------------------------------------------------------------------- /j2me/res: -------------------------------------------------------------------------------- 1 | ../res/ -------------------------------------------------------------------------------- /j2me/src/mobileapplication3/GameMIDlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/j2me/src/mobileapplication3/GameMIDlet.java -------------------------------------------------------------------------------- /lib/PhysicsEngine_v135b.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/lib/PhysicsEngine_v135b.jar -------------------------------------------------------------------------------- /res/driver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/driver.png -------------------------------------------------------------------------------- /res/editoricon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/editoricon.png -------------------------------------------------------------------------------- /res/editorlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/editorlogo.png -------------------------------------------------------------------------------- /res/gameicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/gameicon.png -------------------------------------------------------------------------------- /res/l1.mglvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/l1.mglvl -------------------------------------------------------------------------------- /res/l2.mglvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/l2.mglvl -------------------------------------------------------------------------------- /res/l3.mglvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/l3.mglvl -------------------------------------------------------------------------------- /res/l4.mglvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/l4.mglvl -------------------------------------------------------------------------------- /res/l5.mglvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/l5.mglvl -------------------------------------------------------------------------------- /res/l6.mglvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/l6.mglvl -------------------------------------------------------------------------------- /res/l7.mglvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/l7.mglvl -------------------------------------------------------------------------------- /res/l8.mglvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/l8.mglvl -------------------------------------------------------------------------------- /res/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/qr.png -------------------------------------------------------------------------------- /res/s1.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s1.mgstruct -------------------------------------------------------------------------------- /res/s10.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s10.mgstruct -------------------------------------------------------------------------------- /res/s11.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s11.mgstruct -------------------------------------------------------------------------------- /res/s12.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s12.mgstruct -------------------------------------------------------------------------------- /res/s13.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s13.mgstruct -------------------------------------------------------------------------------- /res/s14.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s14.mgstruct -------------------------------------------------------------------------------- /res/s15.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s15.mgstruct -------------------------------------------------------------------------------- /res/s16.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s16.mgstruct -------------------------------------------------------------------------------- /res/s17.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s17.mgstruct -------------------------------------------------------------------------------- /res/s18.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s18.mgstruct -------------------------------------------------------------------------------- /res/s19.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s19.mgstruct -------------------------------------------------------------------------------- /res/s2.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s2.mgstruct -------------------------------------------------------------------------------- /res/s20.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s20.mgstruct -------------------------------------------------------------------------------- /res/s21.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s21.mgstruct -------------------------------------------------------------------------------- /res/s22.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s22.mgstruct -------------------------------------------------------------------------------- /res/s23.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s23.mgstruct -------------------------------------------------------------------------------- /res/s24.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s24.mgstruct -------------------------------------------------------------------------------- /res/s25.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s25.mgstruct -------------------------------------------------------------------------------- /res/s26.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s26.mgstruct -------------------------------------------------------------------------------- /res/s27.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s27.mgstruct -------------------------------------------------------------------------------- /res/s28.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s28.mgstruct -------------------------------------------------------------------------------- /res/s3.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s3.mgstruct -------------------------------------------------------------------------------- /res/s4.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s4.mgstruct -------------------------------------------------------------------------------- /res/s5.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s5.mgstruct -------------------------------------------------------------------------------- /res/s6.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s6.mgstruct -------------------------------------------------------------------------------- /res/s7.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s7.mgstruct -------------------------------------------------------------------------------- /res/s8.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s8.mgstruct -------------------------------------------------------------------------------- /res/s9.mgstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/res/s9.mgstruct -------------------------------------------------------------------------------- /src/mobileapplication3/editor/About.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/About.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/AbstractEditorMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/AbstractEditorMenu.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/AdvancedElementEditUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/AdvancedElementEditUI.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/AutoSaveUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/AutoSaveUI.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/Editor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/Editor.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/EditorCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/EditorCanvas.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/EditorQuickMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/EditorQuickMenu.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/EditorSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/EditorSettings.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/EditorUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/EditorUI.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/ElementEditUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/ElementEditUI.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/LevelsMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/LevelsMenu.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/MGStructs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/MGStructs.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/MainMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/MainMenu.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/MoveAllElements.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/MoveAllElements.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/PathPicker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/PathPicker.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/SettingsUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/SettingsUI.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/StructureBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/StructureBuilder.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/StructureViewerComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/StructureViewerComponent.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/StructuresMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/StructuresMenu.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/AbstractCurve.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/AbstractCurve.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/AbstractRectBodyElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/AbstractRectBodyElement.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/Accelerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/Accelerator.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/BrokenCircle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/BrokenCircle.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/BrokenLine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/BrokenLine.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/Circle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/Circle.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/Element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/Element.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/EndPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/EndPoint.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/Lava.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/Lava.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/LevelFinish.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/LevelFinish.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/LevelStart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/LevelStart.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/Line.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/Line.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/Sine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/Sine.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/StartPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/StartPoint.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/elements/Trampoline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/elements/Trampoline.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/setup/AbstractSetupWizardPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/setup/AbstractSetupWizardPage.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/setup/Page1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/setup/Page1.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/setup/Page2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/setup/Page2.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/setup/Page3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/setup/Page3.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/setup/Page4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/setup/Page4.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/setup/Page5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/setup/Page5.java -------------------------------------------------------------------------------- /src/mobileapplication3/editor/setup/SetupWizard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/editor/setup/SetupWizard.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/AboutScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/AboutScreen.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/DebugMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/DebugMenu.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/ElementPlacer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/ElementPlacer.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/GameplayCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/GameplayCanvas.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/GenericMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/GenericMenu.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/GraphicsWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/GraphicsWorld.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/LevelCompletedScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/LevelCompletedScreen.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/Levels.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/Levels.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/MUserData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/MUserData.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/MenuCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/MenuCanvas.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/RecordsScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/RecordsScreen.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/SettingsScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/SettingsScreen.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/StructurePlacer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/StructurePlacer.java -------------------------------------------------------------------------------- /src/mobileapplication3/game/WorldGen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/mobileapplication3/game/WorldGen.java -------------------------------------------------------------------------------- /src/utils/GameFileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/utils/GameFileUtils.java -------------------------------------------------------------------------------- /src/utils/MgStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/utils/MgStruct.java -------------------------------------------------------------------------------- /src/utils/MobappGameSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vipaoL/mobapp-game/HEAD/src/utils/MobappGameSettings.java --------------------------------------------------------------------------------