├── .gitattributes ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── core ├── Audio.cpp ├── Audio.hpp ├── Bump.cpp ├── Bump.hpp ├── CMakeLists.txt ├── Constants.hpp ├── Cranked.cpp ├── Cranked.hpp ├── Debugger.cpp ├── Debugger.hpp ├── Files.cpp ├── Files.hpp ├── Geometry.hpp ├── Graphics.cpp ├── Graphics.hpp ├── HeapAllocator.cpp ├── HeapAllocator.hpp ├── LuaEngine.cpp ├── LuaEngine.hpp ├── LuaRuntime.cpp ├── LuaRuntime.hpp ├── Menu.cpp ├── Menu.hpp ├── NativeEngine.cpp ├── NativeEngine.hpp ├── PathFinding.cpp ├── PathFinding.hpp ├── Perlin.hpp ├── PlaydateTypes.hpp ├── Rom.cpp ├── Rom.hpp ├── Runtime.cpp ├── Utils.cpp ├── Utils.hpp ├── assets │ ├── bounce.wav │ ├── crank-frames-2x-table-26-19.png │ ├── crank-frames-4x-table-13-10.png │ ├── crank-frames-8x-table-6-5.png │ ├── crank-frames-table-52-19.png │ ├── crank-frames-table-52-38.png │ ├── crank-notice-bubble-2x.png │ ├── crank-notice-bubble-4x.png │ ├── crank-notice-bubble-8x.png │ ├── crank-notice-bubble.png │ ├── crank-notice-text-2x.png │ ├── crank-notice-text.png │ ├── menu-cancel.png │ ├── menu-del.png │ ├── menu-ok.png │ └── menu-space.png ├── gen │ ├── AshevilleSans14Bold.hpp │ ├── AshevilleSans14Light.hpp │ ├── AshevilleSans14LightOblique.hpp │ ├── AshevilleSans24Light.hpp │ ├── BounceSound.hpp │ ├── CrankFrames.hpp │ ├── CrankFrames2X.hpp │ ├── CrankFrames4X.hpp │ ├── CrankFrames8X.hpp │ ├── CrankNoticeBubble.hpp │ ├── CrankNoticeBubble2X.hpp │ ├── CrankNoticeBubble4X.hpp │ ├── CrankNoticeBubble8X.hpp │ ├── CrankNoticeText.hpp │ ├── CrankNoticeText2X.hpp │ ├── LuaPatchesSource.hpp │ ├── LuaRuntimeSource.hpp │ ├── MenuCancel.hpp │ ├── MenuDel.hpp │ ├── MenuOk.hpp │ ├── MenuSpace.hpp │ ├── PlaydateAPI.hpp │ └── PlaydateFunctionMappings.cpp └── resources │ ├── Asheville-Sans-14-Bold.pft │ ├── Asheville-Sans-14-Light-Oblique.pft │ ├── Asheville-Sans-14-Light.pft │ ├── Asheville-Sans-24-Light.pft │ ├── bounce.pda │ ├── crank-frames-2x.pdt │ ├── crank-frames-4x.pdt │ ├── crank-frames-8x.pdt │ ├── crank-frames.pdt │ ├── crank-notice-bubble-2x.pdi │ ├── crank-notice-bubble-4x.pdi │ ├── crank-notice-bubble-8x.pdi │ ├── crank-notice-bubble.pdi │ ├── crank-notice-text-2x.pdi │ ├── crank-notice-text.pdi │ ├── menu-cancel.pdi │ ├── menu-del.pdi │ ├── menu-ok.pdi │ ├── menu-space.pdi │ ├── patches.lua │ └── runtime.lua ├── desktop ├── CMakeLists.txt └── main.cpp ├── docs └── Audio.md ├── gdb_layout.xml ├── gdb_setup ├── intellij-plugin ├── .gitignore ├── build.gradle.kts ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src │ └── main │ ├── kotlin │ └── com │ │ └── thelogicmaster │ │ └── crankedplugin │ │ └── Cranked.kt │ └── resources │ └── META-INF │ ├── plugin.xml │ └── pluginIcon.svg ├── java ├── CMakeLists.txt ├── java.cpp ├── jni.h └── jni_md.h ├── libretro ├── CMakeLists.txt ├── core.cpp └── libretro.h ├── media ├── Debugging.png ├── Flippy_Fish.png ├── Hammer_Down.png ├── Shapes.png └── Sprite_Collisions.png ├── scripts ├── embed_resource.py ├── pdex2elf.py ├── pdz.py └── process_headers.py └── testing ├── .gitignore ├── .lua-format ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CMakeLists.txt ├── Makefile ├── Requirements.txt ├── Source ├── main.lua ├── pdxinfo ├── test.lua └── tests.lua ├── main.c └── verify.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/README.md -------------------------------------------------------------------------------- /core/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Audio.cpp -------------------------------------------------------------------------------- /core/Audio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Audio.hpp -------------------------------------------------------------------------------- /core/Bump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Bump.cpp -------------------------------------------------------------------------------- /core/Bump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Bump.hpp -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/Constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Constants.hpp -------------------------------------------------------------------------------- /core/Cranked.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Cranked.cpp -------------------------------------------------------------------------------- /core/Cranked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Cranked.hpp -------------------------------------------------------------------------------- /core/Debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Debugger.cpp -------------------------------------------------------------------------------- /core/Debugger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Debugger.hpp -------------------------------------------------------------------------------- /core/Files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Files.cpp -------------------------------------------------------------------------------- /core/Files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Files.hpp -------------------------------------------------------------------------------- /core/Geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Geometry.hpp -------------------------------------------------------------------------------- /core/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Graphics.cpp -------------------------------------------------------------------------------- /core/Graphics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Graphics.hpp -------------------------------------------------------------------------------- /core/HeapAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/HeapAllocator.cpp -------------------------------------------------------------------------------- /core/HeapAllocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/HeapAllocator.hpp -------------------------------------------------------------------------------- /core/LuaEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/LuaEngine.cpp -------------------------------------------------------------------------------- /core/LuaEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/LuaEngine.hpp -------------------------------------------------------------------------------- /core/LuaRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/LuaRuntime.cpp -------------------------------------------------------------------------------- /core/LuaRuntime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/LuaRuntime.hpp -------------------------------------------------------------------------------- /core/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Menu.cpp -------------------------------------------------------------------------------- /core/Menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Menu.hpp -------------------------------------------------------------------------------- /core/NativeEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/NativeEngine.cpp -------------------------------------------------------------------------------- /core/NativeEngine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/NativeEngine.hpp -------------------------------------------------------------------------------- /core/PathFinding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/PathFinding.cpp -------------------------------------------------------------------------------- /core/PathFinding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/PathFinding.hpp -------------------------------------------------------------------------------- /core/Perlin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Perlin.hpp -------------------------------------------------------------------------------- /core/PlaydateTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/PlaydateTypes.hpp -------------------------------------------------------------------------------- /core/Rom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Rom.cpp -------------------------------------------------------------------------------- /core/Rom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Rom.hpp -------------------------------------------------------------------------------- /core/Runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Runtime.cpp -------------------------------------------------------------------------------- /core/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Utils.cpp -------------------------------------------------------------------------------- /core/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/Utils.hpp -------------------------------------------------------------------------------- /core/assets/bounce.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/bounce.wav -------------------------------------------------------------------------------- /core/assets/crank-frames-2x-table-26-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/crank-frames-2x-table-26-19.png -------------------------------------------------------------------------------- /core/assets/crank-frames-4x-table-13-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/crank-frames-4x-table-13-10.png -------------------------------------------------------------------------------- /core/assets/crank-frames-8x-table-6-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/crank-frames-8x-table-6-5.png -------------------------------------------------------------------------------- /core/assets/crank-frames-table-52-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/crank-frames-table-52-19.png -------------------------------------------------------------------------------- /core/assets/crank-frames-table-52-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/crank-frames-table-52-38.png -------------------------------------------------------------------------------- /core/assets/crank-notice-bubble-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/crank-notice-bubble-2x.png -------------------------------------------------------------------------------- /core/assets/crank-notice-bubble-4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/crank-notice-bubble-4x.png -------------------------------------------------------------------------------- /core/assets/crank-notice-bubble-8x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/crank-notice-bubble-8x.png -------------------------------------------------------------------------------- /core/assets/crank-notice-bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/crank-notice-bubble.png -------------------------------------------------------------------------------- /core/assets/crank-notice-text-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/crank-notice-text-2x.png -------------------------------------------------------------------------------- /core/assets/crank-notice-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/crank-notice-text.png -------------------------------------------------------------------------------- /core/assets/menu-cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/menu-cancel.png -------------------------------------------------------------------------------- /core/assets/menu-del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/menu-del.png -------------------------------------------------------------------------------- /core/assets/menu-ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/menu-ok.png -------------------------------------------------------------------------------- /core/assets/menu-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/assets/menu-space.png -------------------------------------------------------------------------------- /core/gen/AshevilleSans14Bold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/AshevilleSans14Bold.hpp -------------------------------------------------------------------------------- /core/gen/AshevilleSans14Light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/AshevilleSans14Light.hpp -------------------------------------------------------------------------------- /core/gen/AshevilleSans14LightOblique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/AshevilleSans14LightOblique.hpp -------------------------------------------------------------------------------- /core/gen/AshevilleSans24Light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/AshevilleSans24Light.hpp -------------------------------------------------------------------------------- /core/gen/BounceSound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/BounceSound.hpp -------------------------------------------------------------------------------- /core/gen/CrankFrames.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/CrankFrames.hpp -------------------------------------------------------------------------------- /core/gen/CrankFrames2X.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/CrankFrames2X.hpp -------------------------------------------------------------------------------- /core/gen/CrankFrames4X.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/CrankFrames4X.hpp -------------------------------------------------------------------------------- /core/gen/CrankFrames8X.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/CrankFrames8X.hpp -------------------------------------------------------------------------------- /core/gen/CrankNoticeBubble.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/CrankNoticeBubble.hpp -------------------------------------------------------------------------------- /core/gen/CrankNoticeBubble2X.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/CrankNoticeBubble2X.hpp -------------------------------------------------------------------------------- /core/gen/CrankNoticeBubble4X.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/CrankNoticeBubble4X.hpp -------------------------------------------------------------------------------- /core/gen/CrankNoticeBubble8X.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/CrankNoticeBubble8X.hpp -------------------------------------------------------------------------------- /core/gen/CrankNoticeText.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/CrankNoticeText.hpp -------------------------------------------------------------------------------- /core/gen/CrankNoticeText2X.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/CrankNoticeText2X.hpp -------------------------------------------------------------------------------- /core/gen/LuaPatchesSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/LuaPatchesSource.hpp -------------------------------------------------------------------------------- /core/gen/LuaRuntimeSource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/LuaRuntimeSource.hpp -------------------------------------------------------------------------------- /core/gen/MenuCancel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/MenuCancel.hpp -------------------------------------------------------------------------------- /core/gen/MenuDel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/MenuDel.hpp -------------------------------------------------------------------------------- /core/gen/MenuOk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/MenuOk.hpp -------------------------------------------------------------------------------- /core/gen/MenuSpace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/MenuSpace.hpp -------------------------------------------------------------------------------- /core/gen/PlaydateAPI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/PlaydateAPI.hpp -------------------------------------------------------------------------------- /core/gen/PlaydateFunctionMappings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/gen/PlaydateFunctionMappings.cpp -------------------------------------------------------------------------------- /core/resources/Asheville-Sans-14-Bold.pft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/Asheville-Sans-14-Bold.pft -------------------------------------------------------------------------------- /core/resources/Asheville-Sans-14-Light-Oblique.pft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/Asheville-Sans-14-Light-Oblique.pft -------------------------------------------------------------------------------- /core/resources/Asheville-Sans-14-Light.pft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/Asheville-Sans-14-Light.pft -------------------------------------------------------------------------------- /core/resources/Asheville-Sans-24-Light.pft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/Asheville-Sans-24-Light.pft -------------------------------------------------------------------------------- /core/resources/bounce.pda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/bounce.pda -------------------------------------------------------------------------------- /core/resources/crank-frames-2x.pdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/crank-frames-2x.pdt -------------------------------------------------------------------------------- /core/resources/crank-frames-4x.pdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/crank-frames-4x.pdt -------------------------------------------------------------------------------- /core/resources/crank-frames-8x.pdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/crank-frames-8x.pdt -------------------------------------------------------------------------------- /core/resources/crank-frames.pdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/crank-frames.pdt -------------------------------------------------------------------------------- /core/resources/crank-notice-bubble-2x.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/crank-notice-bubble-2x.pdi -------------------------------------------------------------------------------- /core/resources/crank-notice-bubble-4x.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/crank-notice-bubble-4x.pdi -------------------------------------------------------------------------------- /core/resources/crank-notice-bubble-8x.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/crank-notice-bubble-8x.pdi -------------------------------------------------------------------------------- /core/resources/crank-notice-bubble.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/crank-notice-bubble.pdi -------------------------------------------------------------------------------- /core/resources/crank-notice-text-2x.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/crank-notice-text-2x.pdi -------------------------------------------------------------------------------- /core/resources/crank-notice-text.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/crank-notice-text.pdi -------------------------------------------------------------------------------- /core/resources/menu-cancel.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/menu-cancel.pdi -------------------------------------------------------------------------------- /core/resources/menu-del.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/menu-del.pdi -------------------------------------------------------------------------------- /core/resources/menu-ok.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/menu-ok.pdi -------------------------------------------------------------------------------- /core/resources/menu-space.pdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/menu-space.pdi -------------------------------------------------------------------------------- /core/resources/patches.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/patches.lua -------------------------------------------------------------------------------- /core/resources/runtime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/core/resources/runtime.lua -------------------------------------------------------------------------------- /desktop/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/desktop/CMakeLists.txt -------------------------------------------------------------------------------- /desktop/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/desktop/main.cpp -------------------------------------------------------------------------------- /docs/Audio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/docs/Audio.md -------------------------------------------------------------------------------- /gdb_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/gdb_layout.xml -------------------------------------------------------------------------------- /gdb_setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/gdb_setup -------------------------------------------------------------------------------- /intellij-plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/intellij-plugin/.gitignore -------------------------------------------------------------------------------- /intellij-plugin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/intellij-plugin/build.gradle.kts -------------------------------------------------------------------------------- /intellij-plugin/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/intellij-plugin/gradle.properties -------------------------------------------------------------------------------- /intellij-plugin/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/intellij-plugin/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /intellij-plugin/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/intellij-plugin/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /intellij-plugin/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/intellij-plugin/gradlew -------------------------------------------------------------------------------- /intellij-plugin/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/intellij-plugin/gradlew.bat -------------------------------------------------------------------------------- /intellij-plugin/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/intellij-plugin/settings.gradle.kts -------------------------------------------------------------------------------- /intellij-plugin/src/main/kotlin/com/thelogicmaster/crankedplugin/Cranked.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/intellij-plugin/src/main/kotlin/com/thelogicmaster/crankedplugin/Cranked.kt -------------------------------------------------------------------------------- /intellij-plugin/src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/intellij-plugin/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /intellij-plugin/src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/intellij-plugin/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/java/CMakeLists.txt -------------------------------------------------------------------------------- /java/java.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/java/java.cpp -------------------------------------------------------------------------------- /java/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/java/jni.h -------------------------------------------------------------------------------- /java/jni_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/java/jni_md.h -------------------------------------------------------------------------------- /libretro/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/libretro/CMakeLists.txt -------------------------------------------------------------------------------- /libretro/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/libretro/core.cpp -------------------------------------------------------------------------------- /libretro/libretro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/libretro/libretro.h -------------------------------------------------------------------------------- /media/Debugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/media/Debugging.png -------------------------------------------------------------------------------- /media/Flippy_Fish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/media/Flippy_Fish.png -------------------------------------------------------------------------------- /media/Hammer_Down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/media/Hammer_Down.png -------------------------------------------------------------------------------- /media/Shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/media/Shapes.png -------------------------------------------------------------------------------- /media/Sprite_Collisions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/media/Sprite_Collisions.png -------------------------------------------------------------------------------- /scripts/embed_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/scripts/embed_resource.py -------------------------------------------------------------------------------- /scripts/pdex2elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/scripts/pdex2elf.py -------------------------------------------------------------------------------- /scripts/pdz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/scripts/pdz.py -------------------------------------------------------------------------------- /scripts/process_headers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/scripts/process_headers.py -------------------------------------------------------------------------------- /testing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/.gitignore -------------------------------------------------------------------------------- /testing/.lua-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/.lua-format -------------------------------------------------------------------------------- /testing/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/.vscode/extensions.json -------------------------------------------------------------------------------- /testing/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/.vscode/launch.json -------------------------------------------------------------------------------- /testing/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/.vscode/settings.json -------------------------------------------------------------------------------- /testing/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/.vscode/tasks.json -------------------------------------------------------------------------------- /testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/CMakeLists.txt -------------------------------------------------------------------------------- /testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/Makefile -------------------------------------------------------------------------------- /testing/Requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/Requirements.txt -------------------------------------------------------------------------------- /testing/Source/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/Source/main.lua -------------------------------------------------------------------------------- /testing/Source/pdxinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/Source/pdxinfo -------------------------------------------------------------------------------- /testing/Source/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/Source/test.lua -------------------------------------------------------------------------------- /testing/Source/tests.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/Source/tests.lua -------------------------------------------------------------------------------- /testing/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/main.c -------------------------------------------------------------------------------- /testing/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLogicMaster/Cranked/HEAD/testing/verify.py --------------------------------------------------------------------------------