├── .gitignore ├── DisplayLib ├── DirectX │ ├── CustomVertex.h │ ├── Display.cpp │ ├── Display.h │ ├── DisplayLib.suo │ ├── DisplayLib2010.vcxproj │ ├── DisplayLib2010.vcxproj.filters │ ├── DisplayLib2010.vcxproj.user │ ├── DisplayLib2012.vcxproj │ ├── DisplayLib2012.vcxproj.filters │ ├── DisplayLib2012.vcxproj.user │ ├── DisplayLib2013.vcxproj │ ├── DisplayLib2013.vcxproj.filters │ ├── DisplayLib2013.vcxproj.user │ ├── IndexBuffer.cpp │ ├── IndexBuffer.h │ ├── SpriteBatch.cpp │ ├── SpriteBatch.h │ ├── Texture.cpp │ ├── Texture.h │ ├── VertexBuffer.cpp │ └── VertexBuffer.h ├── Include │ ├── IDisplay.h │ ├── IIndexBuffer.h │ ├── ISpriteBatch.h │ ├── ITexture.h │ └── IVertexBuffer.h ├── OpenGL-ES2 │ ├── CustomVertex.h │ ├── Display.cpp │ ├── Display.h │ ├── Display.mk │ ├── Display.mkb │ ├── Display.project │ ├── DisplayEmscripten.sln │ ├── DisplayEmscripten.vcxproj │ ├── DisplayEmscripten.vcxproj.filters │ ├── DisplayEmscripten.vcxproj.user │ ├── DisplayLibAndroid.sln │ ├── DisplayLibAndroid.vcxproj │ ├── DisplayLibAndroid.vcxproj.filters │ ├── DisplayLibAndroid.vcxproj.user │ ├── DisplayLibAngle.vcxproj │ ├── DisplayLibAngle.vcxproj.filters │ ├── DisplayLibAngle.vcxproj.user │ ├── DisplayLibGL2010.vcxproj │ ├── DisplayLibGL2010.vcxproj.filters │ ├── DisplayLibGL2010.vcxproj.user │ ├── DisplayNaCl.sln │ ├── DisplayNaCl.vcxproj │ ├── DisplayNaCl.vcxproj.filters │ ├── DisplayNaCl.vcxproj.user │ ├── GLAndroid.cpp │ ├── GLAndroid.h │ ├── GLAngle.cpp │ ├── GLAngle.h │ ├── GLEmscripten.cpp │ ├── GLEmscripten.h │ ├── GLLinux.cpp │ ├── GLLinux.h │ ├── GLMacOSX.cpp │ ├── GLMacOSX.h │ ├── GLMarmalade.cpp │ ├── GLMarmalade.h │ ├── GLNaCl.cpp │ ├── GLNaCl.h │ ├── GLWin32.cpp │ ├── GLWin32.h │ ├── GLiOS.cpp │ ├── GLiOS.h │ ├── IndexBuffer.cpp │ ├── IndexBuffer.h │ ├── PixelShader.h │ ├── SpriteBatch.cpp │ ├── SpriteBatch.h │ ├── Texture.cpp │ ├── Texture.h │ ├── VMath │ │ ├── vmath.cpp │ │ └── vmath.h │ ├── VertexBuffer.cpp │ ├── VertexBuffer.h │ ├── VertexShader.h │ ├── glew.cpp │ └── makefile ├── OpenGL │ ├── CustomVertex.h │ ├── Display.cpp │ ├── Display.h │ ├── Display.mk │ ├── Display.mkb │ ├── Display.project │ ├── Display │ │ └── Display.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcuserdata │ │ │ ├── User.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── Display.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── mac.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Display.xcscheme │ │ │ └── xcschememanagement.plist │ ├── DisplayEmscripten.sln │ ├── DisplayEmscripten.vcxproj │ ├── DisplayEmscripten.vcxproj.filters │ ├── DisplayEmscripten.vcxproj.user │ ├── DisplayLibAndroid.sdf │ ├── DisplayLibAndroid.sln │ ├── DisplayLibAndroid.suo │ ├── DisplayLibAndroid.vcxproj │ ├── DisplayLibAndroid.vcxproj.filters │ ├── DisplayLibAndroid.vcxproj.user │ ├── DisplayLibGL2010.vcxproj │ ├── DisplayLibGL2010.vcxproj.filters │ ├── DisplayLibGL2010.vcxproj.user │ ├── GL │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── GLAndroid.cpp │ ├── GLAndroid.h │ ├── GLEmscripten.cpp │ ├── GLEmscripten.h │ ├── GLLinux.cpp │ ├── GLLinux.h │ ├── GLMacOSX.cpp │ ├── GLMacOSX.h │ ├── GLMarmalade.cpp │ ├── GLMarmalade.h │ ├── GLWin32.cpp │ ├── GLWin32.h │ ├── GLiOS.cpp │ ├── GLiOS.h │ ├── IndexBuffer.cpp │ ├── IndexBuffer.h │ ├── SpriteBatch.cpp │ ├── SpriteBatch.h │ ├── Texture.cpp │ ├── Texture.h │ ├── VertexBuffer.cpp │ ├── VertexBuffer.h │ ├── glew.cpp │ ├── iOS │ │ └── Display.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── Display.xcscheme │ │ │ └── xcuserdata │ │ │ ├── User.xcuserdatad │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ │ └── mac.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Display.xcscheme │ │ │ └── xcschememanagement.plist │ └── makefile ├── RaspberryPi │ ├── CustomVertex.h │ ├── Display.cpp │ ├── Display.h │ ├── Display.mk │ ├── Display.project │ ├── GL │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── GLPlatform.cpp │ ├── GLPlatform.h │ ├── IndexBuffer.cpp │ ├── IndexBuffer.h │ ├── SpriteBatch.cpp │ ├── SpriteBatch.h │ ├── Texture.cpp │ ├── Texture.h │ ├── VertexBuffer.cpp │ ├── VertexBuffer.h │ ├── makefile │ └── nbproject │ │ ├── configurations.xml │ │ ├── private │ │ ├── CodeAssistancePathMapper.properties │ │ ├── Debug.properties │ │ ├── Default-build.log.log │ │ ├── configurations.xml │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml └── SDL │ ├── CustomVertex.h │ ├── Display.cpp │ ├── Display.h │ ├── Display.mk │ ├── Display.project │ ├── DisplayLibSDL.vcxproj │ ├── DisplayLibSDL.vcxproj.filters │ ├── DisplayLibSDL.vcxproj.user │ ├── GL │ ├── glew.h │ ├── glxew.h │ └── wglew.h │ ├── GLPlatform.cpp │ ├── GLPlatform.h │ ├── IndexBuffer.cpp │ ├── IndexBuffer.h │ ├── SpriteBatch.cpp │ ├── SpriteBatch.h │ ├── Texture.cpp │ ├── Texture.h │ ├── VertexBuffer.cpp │ ├── VertexBuffer.h │ ├── glew.cpp │ └── makefile ├── Documentation ├── Resources │ ├── Logo.png │ └── Logo.psd └── SuperPlay.odt ├── Examples ├── Audio │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── Application.rc │ ├── Audio.mk │ ├── Audio.project │ ├── Audio.vcxproj │ ├── Audio.vcxproj.filters │ ├── Audio.vcxproj.user │ ├── Audio.workspace │ ├── Audio2012.vcxproj │ ├── Audio2012.vcxproj.filters │ ├── Audio2012.vcxproj.user │ ├── Audio2013.vcxproj │ ├── Audio2013.vcxproj.filters │ ├── Audio2013.vcxproj.user │ ├── AudioAndroid.vcxproj │ ├── AudioAndroid.vcxproj.filters │ ├── AudioAndroid.vcxproj.user │ ├── Environment │ │ ├── AppIcon.png │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── Music │ │ │ └── musix-pointless.mod │ │ ├── SoundEvents.xml │ │ ├── Sounds │ │ │ ├── explode.wav │ │ │ └── kill_shoot.ogg │ │ ├── d3dcompiler_46.dll │ │ ├── irrKlang.dll │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ ├── Game.cpp │ ├── Game.h │ ├── GameDefines.h │ ├── GameHeader.cpp │ ├── Icon │ │ └── Icon.ico │ ├── License.txt │ ├── Resources │ │ ├── Expire.png │ │ └── mk.bat │ ├── assets │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── Music │ │ │ └── musix-pointless.mod │ │ ├── SoundEvents.xml │ │ └── Sounds │ │ │ ├── explode.wav │ │ │ └── kill_shoot.ogg │ ├── build.xml │ ├── jni │ │ └── NativeActivity.c │ ├── libs │ │ ├── armeabi-v7a │ │ │ └── libbass.so │ │ └── armeabi │ │ │ └── libbass.so │ ├── local.properties │ ├── makefile │ ├── makefile.pi │ ├── nbproject │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── CodeAssistancePathMapper.properties │ │ │ ├── Debug.properties │ │ │ ├── Default-build.log.log │ │ │ ├── configurations.xml │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ ├── proguard-project.txt │ ├── proguard.cfg │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ ├── icon.png │ │ │ └── ouya_icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.png │ │ └── values │ │ │ └── strings.xml │ ├── resource.h │ └── src │ │ └── com │ │ └── PixlGames │ │ └── SuperPlay │ │ └── NativeActivity.java ├── BLT │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── Application.mk │ ├── Application.rc │ ├── BLT.mk │ ├── BLT.mkb │ ├── BLT.project │ ├── BLT.vcxproj │ ├── BLT.vcxproj.filters │ ├── BLT.vcxproj.user │ ├── BLT2012.vcxproj │ ├── BLT2012.vcxproj.filters │ ├── BLT2012.vcxproj.user │ ├── BLT2013.vcxproj │ ├── BLT2013.vcxproj.filters │ ├── BLT2013.vcxproj.user │ ├── BLTAndroid.vcxproj │ ├── BLTAndroid.vcxproj.filters │ ├── BLTAndroid.vcxproj.user │ ├── Background.cpp │ ├── Background.h │ ├── BaseSprite.cpp │ ├── BaseSprite.h │ ├── BulletManager.cpp │ ├── BulletManager.h │ ├── BulletSprite.cpp │ ├── BulletSprite.h │ ├── Emscripten.sln │ ├── Emscripten.vcxproj │ ├── Emscripten.vcxproj.filters │ ├── Emscripten.vcxproj.user │ ├── EnemyManager.cpp │ ├── EnemyManager.h │ ├── EnemySprite.cpp │ ├── EnemySprite.h │ ├── Environment │ │ ├── BLT.desktop │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── Maps │ │ │ ├── Map.map │ │ │ ├── Map.png │ │ │ └── Map.xml │ │ ├── Music │ │ │ └── musix-omg-plz-help.mod │ │ ├── SoundEvents.xml │ │ ├── Sounds │ │ │ ├── 8bit_gunloop_explosion.wav │ │ │ └── explode.wav │ │ ├── Sprites │ │ │ ├── Ant.png │ │ │ ├── Ant.xml │ │ │ ├── Bee.png │ │ │ ├── Bee.xml │ │ │ ├── Bug.png │ │ │ ├── Bug.xml │ │ │ ├── Explosion.png │ │ │ ├── Explosion.xml │ │ │ ├── Mosquito.png │ │ │ ├── Mosquito.xml │ │ │ ├── Player.png │ │ │ ├── Player.xml │ │ │ ├── Shot.png │ │ │ └── Shot.xml │ │ ├── d3dcompiler_46.dll │ │ ├── frame.png │ │ ├── icon.png │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ ├── FPS.cpp │ ├── FPS.h │ ├── Game.cpp │ ├── Game.h │ ├── GameDefines.h │ ├── GameHeader.cpp │ ├── GameResources.cpp │ ├── GameResources.h │ ├── Icon │ │ └── Icon.ico │ ├── License.txt │ ├── NaCl.filters │ ├── NaCl.sln │ ├── NaCl.vcxproj │ ├── NaCl.vcxproj.filters │ ├── NaCl.vcxproj.user │ ├── PNaCl │ │ └── BLT.nmf │ ├── PlayerSprite.cpp │ ├── PlayerSprite.h │ ├── Resources │ │ ├── Ant.pickle │ │ ├── Bee.pickle │ │ ├── Bug.pickle │ │ ├── Expire.png │ │ ├── Explosion.pickle │ │ ├── Map.fmp │ │ ├── Mosquito.pickle │ │ ├── Player.nanim │ │ ├── Shot.pickle │ │ ├── Source │ │ │ └── OuyaIcon.psd │ │ └── mk.bat │ ├── ScoreBar.cpp │ ├── ScoreBar.h │ ├── assets │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── Maps │ │ │ ├── Map.map │ │ │ ├── Map.png │ │ │ └── Map.xml │ │ ├── Music │ │ │ └── musix-omg-plz-help.mod │ │ ├── SoundEvents.xml │ │ ├── Sounds │ │ │ ├── 8bit_gunloop_explosion.wav │ │ │ └── explode.wav │ │ └── Sprites │ │ │ ├── Ant.png │ │ │ ├── Ant.xml │ │ │ ├── Bee.png │ │ │ ├── Bee.xml │ │ │ ├── Bug.png │ │ │ ├── Bug.xml │ │ │ ├── Explosion.png │ │ │ ├── Explosion.xml │ │ │ ├── Mosquito.png │ │ │ ├── Mosquito.xml │ │ │ ├── Player.png │ │ │ ├── Player.xml │ │ │ ├── Shot.png │ │ │ └── Shot.xml │ ├── build.xml │ ├── data │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── Maps │ │ │ ├── Map.map │ │ │ ├── Map.png │ │ │ └── Map.xml │ │ ├── Music │ │ │ └── musix-omg-plz-help.mod │ │ ├── SoundEvents.xml │ │ ├── Sounds │ │ │ ├── 8bit_gunloop_explosion.wav │ │ │ └── explode.wav │ │ ├── Sprites │ │ │ ├── Ant.png │ │ │ ├── Ant.xml │ │ │ ├── Bee.png │ │ │ ├── Bee.xml │ │ │ ├── Bug.png │ │ │ ├── Bug.xml │ │ │ ├── Explosion.png │ │ │ ├── Explosion.xml │ │ │ ├── Mosquito.png │ │ │ ├── Mosquito.xml │ │ │ ├── Player.png │ │ │ ├── Player.xml │ │ │ ├── Shot.png │ │ │ └── Shot.xml │ │ ├── app.config.txt │ │ ├── app.icf │ │ └── development.icf │ ├── debug.bat │ ├── go.bat │ ├── gs.bat │ ├── iOS │ │ ├── BLT.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcuserdata │ │ │ │ ├── User.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ │ ├── BLT.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ └── cdoty.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ └── BLT.xcscheme │ │ ├── BLT │ │ │ ├── BLT-Prefix.pch │ │ │ ├── Default.png │ │ │ ├── Info.plist │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── Icon-Small.png │ │ └── Icon.png │ ├── install.bat │ ├── jni │ │ └── NativeActivity.c │ ├── libs │ │ ├── armeabi-v7a │ │ │ └── libbass.so │ │ ├── armeabi │ │ │ └── libbass.so │ │ └── com.bda.controller.jar │ ├── local.properties │ ├── makefile │ ├── makefile.pi │ ├── nbproject │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── CodeAssistancePathMapper.properties │ │ │ ├── Debug.properties │ │ │ ├── Default-build.log.log │ │ │ ├── configurations.xml │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ ├── proguard-project.txt │ ├── proguard.cfg │ ├── project.properties │ ├── project_BLT │ │ ├── android (default).config │ │ ├── iphone (default).config │ │ ├── mkb-windows.txt │ │ ├── project.config │ │ ├── project.ini │ │ ├── roku (default).config │ │ ├── wp8 (default).config │ │ ├── ws80 (default).config │ │ └── ws81 (default).config │ ├── release.keystore │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ ├── icon.png │ │ │ └── ouya_icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.png │ │ └── values │ │ │ └── strings.xml │ ├── resource.h │ ├── secure_properties.xml │ └── src │ │ └── com │ │ └── PixlGames │ │ └── SuperPlay │ │ └── BLT │ │ └── NativeActivity.java ├── HDMA │ ├── Application.rc │ ├── Environment │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── HDMA │ │ │ └── HDMA.png │ │ ├── Maps │ │ │ ├── Background.map │ │ │ ├── Background.png │ │ │ └── Background.xml │ │ ├── d3dcompiler_46.dll │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ ├── FPS.cpp │ ├── FPS.h │ ├── Game.cpp │ ├── Game.h │ ├── GameDefines.h │ ├── GameHeader.cpp │ ├── HDMA.mk │ ├── HDMA.project │ ├── HDMA.vcxproj │ ├── HDMA.vcxproj.filters │ ├── HDMA.vcxproj.user │ ├── HDMA2012.vcxproj │ ├── HDMA2012.vcxproj.filters │ ├── HDMA2012.vcxproj.user │ ├── HDMA2013.vcxproj │ ├── HDMA2013.vcxproj.filters │ ├── HDMA2013.vcxproj.user │ ├── Icon │ │ └── Icon.ico │ ├── License.txt │ ├── Resources │ │ ├── Background.png │ │ ├── Background.tmx │ │ ├── Expire.png │ │ └── mk.bat │ ├── makefile │ ├── makefile.pi │ ├── nbproject │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── configurations.xml │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ └── resource.h ├── Joypad │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── Application.mk │ ├── Application.rc │ ├── Environment │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── Maps │ │ │ ├── Background.map │ │ │ ├── Background.png │ │ │ └── Background.xml │ │ ├── Sprites │ │ │ ├── Dot.png │ │ │ └── Dot.xml │ │ ├── d3dcompiler_46.dll │ │ ├── irrKlang.dll │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ ├── Game.cpp │ ├── Game.h │ ├── GameDefines.h │ ├── GameHeader.cpp │ ├── Icon │ │ └── Icon.ico │ ├── Joypad.vcxproj │ ├── Joypad.vcxproj.filters │ ├── Joypad.vcxproj.user │ ├── Joypad2012.vcxproj │ ├── Joypad2012.vcxproj.filters │ ├── Joypad2012.vcxproj.user │ ├── Joypad2013.vcxproj │ ├── Joypad2013.vcxproj.filters │ ├── Joypad2013.vcxproj.user │ ├── JoypadAndroid.vcxproj │ ├── JoypadAndroid.vcxproj.filters │ ├── JoypadAndroid.vcxproj.user │ ├── License.txt │ ├── Resources │ │ ├── Background.fmp │ │ ├── Dot.ase │ │ ├── Expire.png │ │ └── mk.bat │ ├── assets │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── Maps │ │ │ ├── Background.map │ │ │ ├── Background.png │ │ │ └── Background.xml │ │ ├── Music │ │ │ └── musix-pointless.mod │ │ ├── SoundEvents.xml │ │ ├── Sounds │ │ │ ├── explode.wav │ │ │ └── kill_shoot.ogg │ │ └── Sprites │ │ │ ├── Dot.png │ │ │ └── Dot.xml │ ├── build.xml │ ├── go.bat │ ├── gs.bat │ ├── install.bat │ ├── libs │ │ ├── armeabi-v7a │ │ │ └── libbass.so │ │ └── armeabi │ │ │ └── libbass.so │ ├── local.properties │ ├── makefile │ ├── makefile.pi │ ├── proguard-project.txt │ ├── proguard.cfg │ ├── project.properties │ ├── release.keystore │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ ├── icon.png │ │ │ └── ouya_icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.png │ │ └── values │ │ │ └── strings.xml │ ├── resource.h │ └── secure_properties.xml ├── Mosaic │ ├── Application.rc │ ├── Environment │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── Maps │ │ │ ├── Scroll.map │ │ │ ├── Scroll.png │ │ │ └── Scroll.xml │ │ ├── d3dcompiler_46.dll │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ ├── Game.cpp │ ├── Game.h │ ├── GameDefines.h │ ├── GameHeader.cpp │ ├── Icon │ │ └── Icon.ico │ ├── License.txt │ ├── Mosaic.vcxproj │ ├── Mosaic.vcxproj.filters │ ├── Mosaic.vcxproj.user │ ├── Mosaic2012.vcxproj │ ├── Mosaic2012.vcxproj.filters │ ├── Mosaic2012.vcxproj.user │ ├── Mosaic2013.vcxproj │ ├── Mosaic2013.vcxproj.filters │ ├── Mosaic2013.vcxproj.user │ ├── Resources │ │ ├── Formula.png │ │ ├── Scroll.fmp │ │ └── mk.bat │ └── resource.h ├── SRAM │ ├── Application.rc │ ├── Environment │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── SRAM │ │ │ ├── SRAM1.sram │ │ │ ├── SRAM2.sram │ │ │ └── SRAM3.sram │ │ ├── d3dcompiler_46.dll │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ ├── Game.cpp │ ├── Game.h │ ├── GameDefines.h │ ├── GameHeader.cpp │ ├── Icon │ │ └── Icon.ico │ ├── License.txt │ ├── Resources │ │ ├── SaikyoBlack.png │ │ ├── SaikyoBlack8.png │ │ └── mk.bat │ ├── SRAM.vcxproj │ ├── SRAM.vcxproj.filters │ ├── SRAM.vcxproj.user │ ├── SRAM │ │ ├── SRAM1.sram │ │ ├── SRAM2.sram │ │ └── SRAM3.sram │ ├── SRAM2012.vcxproj │ ├── SRAM2012.vcxproj.user │ ├── SRAM2013.vcxproj │ ├── SRAM2013.vcxproj.user │ ├── SRAMStructure.h │ └── resource.h ├── Sprites │ ├── Application.rc │ ├── Environment │ │ ├── Sprites │ │ │ ├── Skeleton.png │ │ │ └── Skeleton.xml │ │ ├── d3dcompiler_46.dll │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ ├── Game.cpp │ ├── Game.h │ ├── GameDefines.h │ ├── GameHeader.cpp │ ├── Icon │ │ └── Icon.ico │ ├── License.txt │ ├── Resources │ │ ├── Skeleton.ase │ │ └── mk.bat │ ├── Sprites.vcxproj │ ├── Sprites.vcxproj.filters │ ├── Sprites.vcxproj.user │ ├── Sprites2012.vcxproj │ ├── Sprites2012.vcxproj.filters │ ├── Sprites2012.vcxproj.user │ ├── Sprites2013.vcxproj │ ├── Sprites2013.vcxproj.filters │ ├── Sprites2013.vcxproj.user │ ├── makefile │ └── resource.h ├── Starter │ ├── Application.rc │ ├── Emscripten.sln │ ├── Emscripten.vcxproj │ ├── Emscripten.vcxproj.filters │ ├── Emscripten.vcxproj.user │ ├── Environment │ │ ├── d3dcompiler_46.dll │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ ├── Game.cpp │ ├── Game.h │ ├── GameDefines.h │ ├── GameHeader.cpp │ ├── Icon │ │ └── Icon.ico │ ├── Starter.mkb │ ├── Starter.vcxproj │ ├── Starter.vcxproj.filters │ ├── Starter.vcxproj.user │ ├── Starter2012.vcxproj │ ├── Starter2012.vcxproj.filters │ ├── Starter2012.vcxproj.user │ ├── Starter2013.vcxproj │ ├── Starter2013.vcxproj.filters │ ├── Starter2013.vcxproj.user │ ├── data │ │ ├── app.config.txt │ │ ├── app.icf │ │ └── development.icf │ ├── makefile │ ├── makefile.pi │ └── resource.h ├── Text │ ├── Android.mk │ ├── AndroidManifest.xml │ ├── Application.mk │ ├── Application.rc │ ├── Emscripten.sln │ ├── Emscripten.vcxproj │ ├── Emscripten.vcxproj.filters │ ├── Emscripten.vcxproj.user │ ├── Environment │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── d3dcompiler_46.dll │ │ ├── libEGL.dll │ │ └── libGLESv2.dll │ ├── FPS.cpp │ ├── FPS.cpp.PVS-Studio.cfg │ ├── FPS.h │ ├── Game.cpp │ ├── Game.h │ ├── GameDefines.h │ ├── GameHeader.cpp │ ├── Icon │ │ └── Icon.ico │ ├── License.txt │ ├── Resources │ │ ├── SaikyoBlack.png │ │ ├── SaikyoBlack8.png │ │ └── mk.bat │ ├── Text.mkb │ ├── Text.vcxproj │ ├── Text.vcxproj.filters │ ├── Text.vcxproj.user │ ├── Text │ │ ├── Text.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcuserdata │ │ │ │ ├── User.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ │ ├── Text.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ ├── cdoty.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ │ └── Text.xcscheme │ │ │ │ └── mac.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── Text.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ ├── Text │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Text-Info.plist │ │ │ ├── Text-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ └── build │ │ │ └── Text.build │ │ │ └── Debug │ │ │ └── Text.build │ │ │ ├── Text-all-target-headers.hmap │ │ │ ├── Text-generated-files.hmap │ │ │ ├── Text-own-target-headers.hmap │ │ │ ├── Text-project-headers.hmap │ │ │ └── Text.hmap │ ├── Text2012.vcxproj │ ├── Text2012.vcxproj.filters │ ├── Text2012.vcxproj.user │ ├── Text2013.vcxproj │ ├── Text2013.vcxproj.filters │ ├── Text2013.vcxproj.user │ ├── TextAndroid.vcxproj │ ├── TextAndroid.vcxproj.filters │ ├── TextAndroid.vcxproj.user │ ├── assets │ │ └── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ ├── build.xml │ ├── data │ │ ├── Fonts │ │ │ ├── Font.png │ │ │ └── Font.xml │ │ ├── app.config.txt │ │ ├── app.icf │ │ └── development.icf │ ├── go.bat │ ├── gs.bat │ ├── iOS │ │ ├── Icon-Small.png │ │ ├── Icon.png │ │ ├── Text.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcuserdata │ │ │ │ ├── User.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ │ ├── Text.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ ├── cdoty.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ │ └── Text.xcscheme │ │ │ │ └── mac.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── Text.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ └── Text │ │ │ ├── Default.png │ │ │ ├── Info.plist │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── install.bat │ ├── local.properties │ ├── makefile │ ├── makefile.pi │ ├── nbproject │ │ ├── configurations.xml │ │ ├── private │ │ │ ├── CodeAssistancePathMapper.properties │ │ │ ├── Debug.properties │ │ │ ├── Default-build.log.log │ │ │ ├── configurations.xml │ │ │ ├── launcher.properties │ │ │ └── private.xml │ │ └── project.xml │ ├── proguard-project.txt │ ├── proguard.cfg │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ ├── icon.png │ │ │ └── ouya_icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable-xxxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.png │ │ └── values │ │ │ └── strings.xml │ ├── resource.h │ └── secure_properties.xml └── Tilemap │ ├── Application.rc │ ├── Environment │ ├── AppIcon.png │ ├── Maps │ │ ├── Scroll.map │ │ ├── Scroll.png │ │ └── Scroll.xml │ ├── Temp.bin │ ├── d3dcompiler_46.dll │ ├── irrKlang.dll │ ├── libEGL.dll │ └── libGLESv2.dll │ ├── Game.cpp │ ├── Game.h │ ├── GameDefines.h │ ├── GameHeader.cpp │ ├── Icon │ └── Icon.ico │ ├── License.txt │ ├── Resources │ ├── Scroll.fmp │ └── mk.bat │ ├── Tilemap.mk │ ├── Tilemap.project │ ├── Tilemap.vcxproj │ ├── Tilemap.vcxproj.filters │ ├── Tilemap.vcxproj.user │ ├── Tilemap2012.vcxproj │ ├── Tilemap2012.vcxproj.filters │ ├── Tilemap2012.vcxproj.user │ ├── Tilemap2013.vcxproj │ ├── Tilemap2013.vcxproj.filters │ ├── Tilemap2013.vcxproj.user │ ├── makefile │ ├── makefile.pi │ ├── nbproject │ ├── configurations.xml │ ├── private │ │ ├── CodeAssistancePathMapper.properties │ │ ├── Default-build.log.log │ │ ├── Default.properties │ │ ├── configurations.xml │ │ ├── launcher.properties │ │ └── private.xml │ └── project.xml │ └── resource.h ├── ExpansionLib ├── AudioLoader │ └── AudioLoader.cpp ├── Expansion.mkb ├── Expansion │ └── Expansion.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ ├── User.xcuserdatad │ │ └── xcschemes │ │ │ ├── Expansion.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── cdoty.xcuserdatad │ │ └── xcschemes │ │ │ └── Expansion.xcscheme │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ ├── Expansion.xcscheme │ │ └── xcschememanagement.plist ├── Expansion2010.vcxproj ├── Expansion2010.vcxproj.filters ├── Expansion2010.vcxproj.user ├── Expansion2012.vcxproj ├── Expansion2012.vcxproj.filters ├── Expansion2012.vcxproj.user ├── Expansion2013.vcxproj ├── Expansion2013.vcxproj.filters ├── Expansion2013.vcxproj.user ├── ExpansionAndroid.sln ├── ExpansionAndroid.suo ├── ExpansionAndroid.vcxproj ├── ExpansionAndroid.vcxproj.filters ├── ExpansionAndroid.vcxproj.user ├── ExpansionEmscripten.sln ├── ExpansionEmscripten.vcxproj ├── ExpansionEmscripten.vcxproj.filters ├── ExpansionEmscripten.vcxproj.user ├── ExpansionLib.mk ├── ExpansionLib.project ├── FontLoader │ ├── FontLoader.cpp │ └── yspng │ │ ├── yspng.cpp │ │ └── yspng.h ├── HDMALoader │ └── HDMALoader.cpp ├── LICENSE ├── MapLoader │ └── MapLoader.cpp ├── SpriteLoader │ └── SpriteLoader.cpp ├── iOS │ └── Expansion.xcodeproj │ │ ├── project.pbxproj │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Expansion.xcscheme │ │ └── xcuserdata │ │ ├── User.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ ├── Expansion.xcscheme │ │ └── xcschememanagement.plist ├── makefile └── nbproject │ ├── configurations.xml │ ├── private │ ├── CodeAssistancePathMapper.properties │ ├── Debug.properties │ ├── Default-build.log.log │ ├── configurations.xml │ ├── launcher.properties │ └── private.xml │ └── project.xml ├── External ├── Angle │ └── include │ │ ├── EGL │ │ ├── egl.h │ │ ├── eglext.h │ │ └── eglplatform.h │ │ ├── GLES2 │ │ ├── gl2.h │ │ ├── gl2ext.h │ │ └── gl2platform.h │ │ ├── GLES3 │ │ ├── gl3.h │ │ ├── gl3ext.h │ │ └── gl3platform.h │ │ ├── GLSLANG │ │ └── ShaderLang.h │ │ └── KHR │ │ └── khrplatform.h ├── BASS │ ├── Include │ │ └── bass.h │ ├── Lib │ │ ├── ARM │ │ │ └── libbass.so │ │ ├── Android │ │ │ ├── armeabi-v7a │ │ │ │ └── libbass.so │ │ │ └── armeabi │ │ │ │ └── libbass.so │ │ ├── Linux │ │ │ └── libbass.so │ │ └── iOS │ │ │ └── libbass.a │ └── Readme.txt ├── DuiLib │ ├── Include │ │ ├── Control │ │ │ ├── UIActiveX.h │ │ │ ├── UIButton.h │ │ │ ├── UICheckBox.h │ │ │ ├── UICombo.h │ │ │ ├── UIComboBox.h │ │ │ ├── UIDateTime.h │ │ │ ├── UIEdit.h │ │ │ ├── UIFlash.h │ │ │ ├── UILabel.h │ │ │ ├── UIList.h │ │ │ ├── UIOption.h │ │ │ ├── UIProgress.h │ │ │ ├── UIRichEdit.h │ │ │ ├── UIScrollBar.h │ │ │ ├── UISlider.h │ │ │ ├── UIText.h │ │ │ ├── UITreeView.h │ │ │ └── UIWebBrowser.h │ │ ├── Core │ │ │ ├── UIBase.h │ │ │ ├── UIContainer.h │ │ │ ├── UIControl.h │ │ │ ├── UIDefine.h │ │ │ ├── UIDlgBuilder.h │ │ │ ├── UIManager.h │ │ │ ├── UIMarkup.h │ │ │ └── UIRender.h │ │ ├── Layout │ │ │ ├── UIChildLayout.h │ │ │ ├── UIHorizontalLayout.h │ │ │ ├── UITabLayout.h │ │ │ ├── UITileLayout.h │ │ │ └── UIVerticalLayout.h │ │ ├── UIlib.cpp │ │ ├── UIlib.h │ │ └── Utils │ │ │ ├── UIDelegate.h │ │ │ ├── Utils.h │ │ │ ├── WebBrowserEventHandler.h │ │ │ ├── WinImplBase.h │ │ │ └── downloadmgr.h │ ├── Lib │ │ ├── DuiLIb_d.lib │ │ └── DuiLib.lib │ ├── Readme.txt │ └── Source Code │ │ ├── Control │ │ ├── UIActiveX.cpp │ │ ├── UIButton.cpp │ │ ├── UICheckBox.cpp │ │ ├── UICombo.cpp │ │ ├── UIComboBox.cpp │ │ ├── UIDateTime.cpp │ │ ├── UIEdit.cpp │ │ ├── UILabel.cpp │ │ ├── UIList.cpp │ │ ├── UIOption.cpp │ │ ├── UIProgress.cpp │ │ ├── UIRichEdit.cpp │ │ ├── UIScrollBar.cpp │ │ ├── UISlider.cpp │ │ ├── UIText.cpp │ │ ├── UITreeView.cpp │ │ └── UIWebBrowser.cpp │ │ ├── Core │ │ ├── UIBase.cpp │ │ ├── UIContainer.cpp │ │ ├── UIControl.cpp │ │ ├── UIDlgBuilder.cpp │ │ ├── UIManager.cpp │ │ ├── UIMarkup.cpp │ │ └── UIRender.cpp │ │ ├── DuiLib.suo │ │ ├── DuiLib2010.vcxproj │ │ ├── DuiLib2010.vcxproj.filters │ │ ├── DuiLib2010.vcxproj.user │ │ ├── Layout │ │ ├── UIChildLayout.cpp │ │ ├── UIHorizontalLayout.cpp │ │ ├── UITabLayout.cpp │ │ ├── UITileLayout.cpp │ │ └── UIVerticalLayout.cpp │ │ ├── StdAfx.cpp │ │ ├── StdAfx.h │ │ ├── UIlib.cpp │ │ └── Utils │ │ ├── UIDelegate.cpp │ │ ├── Utils.cpp │ │ ├── WinImplBase.cpp │ │ ├── XUnzip.cpp │ │ ├── downloadmgr.h │ │ └── stb_image.c ├── GWEN │ ├── Lib │ │ └── Win32 │ │ │ ├── gwen_static.lib │ │ │ └── gwen_staticd.lib │ ├── Readme.txt │ ├── Source Code │ │ ├── Projects │ │ │ ├── Build.bat │ │ │ ├── Build.sh │ │ │ ├── inc │ │ │ │ ├── include.lua │ │ │ │ ├── linux.lua │ │ │ │ ├── macosx.lua │ │ │ │ └── windows.lua │ │ │ ├── premake4 │ │ │ ├── premake4-osx │ │ │ ├── premake4.exe │ │ │ ├── premake4.lua │ │ │ └── windows │ │ │ │ ├── codeblocks │ │ │ │ ├── ControlFactory.cbp │ │ │ │ ├── GWEN-DLL.cbp │ │ │ │ ├── GWEN-Static.cbp │ │ │ │ ├── GWEN.workspace │ │ │ │ ├── ImportExport.cbp │ │ │ │ ├── Renderer-Allegro.cbp │ │ │ │ ├── Renderer-Direct2D.cbp │ │ │ │ ├── Renderer-DirectX9.cbp │ │ │ │ ├── Renderer-GDI.cbp │ │ │ │ ├── Renderer-OpenGL.cbp │ │ │ │ ├── Renderer-OpenGL_DebugFont.cbp │ │ │ │ ├── Renderer-SFML.cbp │ │ │ │ ├── Renderer-SFML2.cbp │ │ │ │ ├── Sample-Allegro.cbp │ │ │ │ ├── Sample-CrossPlatform.cbp │ │ │ │ ├── Sample-Direct2D.cbp │ │ │ │ ├── Sample-DirectX9.cbp │ │ │ │ ├── Sample-OpenGL.cbp │ │ │ │ ├── Sample-OpenGL_DebugFont.cbp │ │ │ │ ├── Sample-SFML.cbp │ │ │ │ ├── Sample-SFML2.cbp │ │ │ │ ├── Sample-WindowsGDI.cbp │ │ │ │ └── UnitTest.cbp │ │ │ │ ├── codelite │ │ │ │ ├── ControlFactory.project │ │ │ │ ├── GWEN-DLL.project │ │ │ │ ├── GWEN-Static.project │ │ │ │ ├── GWEN.workspace │ │ │ │ ├── ImportExport.project │ │ │ │ ├── Renderer-Allegro.project │ │ │ │ ├── Renderer-Direct2D.project │ │ │ │ ├── Renderer-DirectX9.project │ │ │ │ ├── Renderer-GDI.project │ │ │ │ ├── Renderer-OpenGL.project │ │ │ │ ├── Renderer-OpenGL_DebugFont.project │ │ │ │ ├── Renderer-SFML.project │ │ │ │ ├── Renderer-SFML2.project │ │ │ │ ├── Sample-Allegro.project │ │ │ │ ├── Sample-CrossPlatform.project │ │ │ │ ├── Sample-Direct2D.project │ │ │ │ ├── Sample-DirectX9.project │ │ │ │ ├── Sample-OpenGL.project │ │ │ │ ├── Sample-OpenGL_DebugFont.project │ │ │ │ ├── Sample-SFML.project │ │ │ │ ├── Sample-SFML2.project │ │ │ │ ├── Sample-WindowsGDI.project │ │ │ │ └── UnitTest.project │ │ │ │ ├── vs2005 │ │ │ │ ├── ControlFactory.vcproj │ │ │ │ ├── ControlFactory.vcproj.user │ │ │ │ ├── GWEN-DLL.vcproj │ │ │ │ ├── GWEN-DLL.vcproj.user │ │ │ │ ├── GWEN-Static.vcproj │ │ │ │ ├── GWEN-Static.vcproj.user │ │ │ │ ├── GWEN.sln │ │ │ │ ├── ImportExport.vcproj │ │ │ │ ├── ImportExport.vcproj.user │ │ │ │ ├── Renderer-Allegro.vcproj │ │ │ │ ├── Renderer-Allegro.vcproj.user │ │ │ │ ├── Renderer-Direct2D.vcproj │ │ │ │ ├── Renderer-Direct2D.vcproj.user │ │ │ │ ├── Renderer-DirectX9.vcproj │ │ │ │ ├── Renderer-DirectX9.vcproj.user │ │ │ │ ├── Renderer-GDI.vcproj │ │ │ │ ├── Renderer-GDI.vcproj.user │ │ │ │ ├── Renderer-OpenGL.vcproj │ │ │ │ ├── Renderer-OpenGL.vcproj.user │ │ │ │ ├── Renderer-OpenGL_DebugFont.vcproj │ │ │ │ ├── Renderer-OpenGL_DebugFont.vcproj.user │ │ │ │ ├── Renderer-SFML.vcproj │ │ │ │ ├── Renderer-SFML.vcproj.user │ │ │ │ ├── Renderer-SFML2.vcproj │ │ │ │ ├── Renderer-SFML2.vcproj.user │ │ │ │ ├── Sample-Allegro.vcproj │ │ │ │ ├── Sample-Allegro.vcproj.user │ │ │ │ ├── Sample-CrossPlatform.vcproj │ │ │ │ ├── Sample-CrossPlatform.vcproj.user │ │ │ │ ├── Sample-Direct2D.vcproj │ │ │ │ ├── Sample-Direct2D.vcproj.user │ │ │ │ ├── Sample-DirectX9.vcproj │ │ │ │ ├── Sample-DirectX9.vcproj.user │ │ │ │ ├── Sample-OpenGL.vcproj │ │ │ │ ├── Sample-OpenGL.vcproj.user │ │ │ │ ├── Sample-OpenGL_DebugFont.vcproj │ │ │ │ ├── Sample-OpenGL_DebugFont.vcproj.user │ │ │ │ ├── Sample-SFML.vcproj │ │ │ │ ├── Sample-SFML.vcproj.user │ │ │ │ ├── Sample-SFML2.vcproj │ │ │ │ ├── Sample-SFML2.vcproj.user │ │ │ │ ├── Sample-WindowsGDI.vcproj │ │ │ │ ├── Sample-WindowsGDI.vcproj.user │ │ │ │ ├── UnitTest.vcproj │ │ │ │ └── UnitTest.vcproj.user │ │ │ │ ├── vs2008 │ │ │ │ ├── ControlFactory.vcproj │ │ │ │ ├── ControlFactory.vcproj.user │ │ │ │ ├── GWEN-DLL.vcproj │ │ │ │ ├── GWEN-DLL.vcproj.user │ │ │ │ ├── GWEN-Static.vcproj │ │ │ │ ├── GWEN-Static.vcproj.user │ │ │ │ ├── GWEN.sln │ │ │ │ ├── ImportExport.vcproj │ │ │ │ ├── ImportExport.vcproj.user │ │ │ │ ├── Renderer-Allegro.vcproj │ │ │ │ ├── Renderer-Allegro.vcproj.user │ │ │ │ ├── Renderer-Direct2D.vcproj │ │ │ │ ├── Renderer-Direct2D.vcproj.user │ │ │ │ ├── Renderer-DirectX9.vcproj │ │ │ │ ├── Renderer-DirectX9.vcproj.user │ │ │ │ ├── Renderer-GDI.vcproj │ │ │ │ ├── Renderer-GDI.vcproj.user │ │ │ │ ├── Renderer-OpenGL.vcproj │ │ │ │ ├── Renderer-OpenGL.vcproj.user │ │ │ │ ├── Renderer-OpenGL_DebugFont.vcproj │ │ │ │ ├── Renderer-OpenGL_DebugFont.vcproj.user │ │ │ │ ├── Renderer-SFML.vcproj │ │ │ │ ├── Renderer-SFML.vcproj.user │ │ │ │ ├── Renderer-SFML2.vcproj │ │ │ │ ├── Renderer-SFML2.vcproj.user │ │ │ │ ├── Sample-Allegro.vcproj │ │ │ │ ├── Sample-Allegro.vcproj.user │ │ │ │ ├── Sample-CrossPlatform.vcproj │ │ │ │ ├── Sample-CrossPlatform.vcproj.user │ │ │ │ ├── Sample-Direct2D.vcproj │ │ │ │ ├── Sample-Direct2D.vcproj.user │ │ │ │ ├── Sample-DirectX9.vcproj │ │ │ │ ├── Sample-DirectX9.vcproj.user │ │ │ │ ├── Sample-OpenGL.vcproj │ │ │ │ ├── Sample-OpenGL.vcproj.user │ │ │ │ ├── Sample-OpenGL_DebugFont.vcproj │ │ │ │ ├── Sample-OpenGL_DebugFont.vcproj.user │ │ │ │ ├── Sample-SFML.vcproj │ │ │ │ ├── Sample-SFML.vcproj.user │ │ │ │ ├── Sample-SFML2.vcproj │ │ │ │ ├── Sample-SFML2.vcproj.user │ │ │ │ ├── Sample-WindowsGDI.vcproj │ │ │ │ ├── Sample-WindowsGDI.vcproj.user │ │ │ │ ├── UnitTest.vcproj │ │ │ │ └── UnitTest.vcproj.user │ │ │ │ └── vs2010 │ │ │ │ ├── ControlFactory.vcxproj │ │ │ │ ├── ControlFactory.vcxproj.filters │ │ │ │ ├── ControlFactory.vcxproj.user │ │ │ │ ├── GWEN-DLL.vcxproj │ │ │ │ ├── GWEN-DLL.vcxproj.filters │ │ │ │ ├── GWEN-DLL.vcxproj.user │ │ │ │ ├── GWEN-Static.vcxproj │ │ │ │ ├── GWEN-Static.vcxproj.filters │ │ │ │ ├── GWEN-Static.vcxproj.user │ │ │ │ ├── GWEN.sln │ │ │ │ ├── GWEN.suo │ │ │ │ ├── ImportExport.vcxproj │ │ │ │ ├── ImportExport.vcxproj.filters │ │ │ │ ├── ImportExport.vcxproj.user │ │ │ │ ├── Renderer-Allegro.vcxproj │ │ │ │ ├── Renderer-Allegro.vcxproj.filters │ │ │ │ ├── Renderer-Allegro.vcxproj.user │ │ │ │ ├── Renderer-Direct2D.vcxproj │ │ │ │ ├── Renderer-Direct2D.vcxproj.filters │ │ │ │ ├── Renderer-Direct2D.vcxproj.user │ │ │ │ ├── Renderer-DirectX9.vcxproj │ │ │ │ ├── Renderer-DirectX9.vcxproj.filters │ │ │ │ ├── Renderer-DirectX9.vcxproj.user │ │ │ │ ├── Renderer-GDI.vcxproj │ │ │ │ ├── Renderer-GDI.vcxproj.filters │ │ │ │ ├── Renderer-GDI.vcxproj.user │ │ │ │ ├── Renderer-OpenGL.vcxproj │ │ │ │ ├── Renderer-OpenGL.vcxproj.filters │ │ │ │ ├── Renderer-OpenGL.vcxproj.user │ │ │ │ ├── Renderer-OpenGL_DebugFont.vcxproj │ │ │ │ ├── Renderer-OpenGL_DebugFont.vcxproj.filters │ │ │ │ ├── Renderer-OpenGL_DebugFont.vcxproj.user │ │ │ │ ├── Renderer-SFML.vcxproj │ │ │ │ ├── Renderer-SFML.vcxproj.filters │ │ │ │ ├── Renderer-SFML.vcxproj.user │ │ │ │ ├── Renderer-SFML2.vcxproj │ │ │ │ ├── Renderer-SFML2.vcxproj.filters │ │ │ │ ├── Renderer-SFML2.vcxproj.user │ │ │ │ ├── Sample-Allegro.vcxproj │ │ │ │ ├── Sample-Allegro.vcxproj.filters │ │ │ │ ├── Sample-Allegro.vcxproj.user │ │ │ │ ├── Sample-CrossPlatform.vcxproj │ │ │ │ ├── Sample-CrossPlatform.vcxproj.filters │ │ │ │ ├── Sample-CrossPlatform.vcxproj.user │ │ │ │ ├── Sample-Direct2D.vcxproj │ │ │ │ ├── Sample-Direct2D.vcxproj.filters │ │ │ │ ├── Sample-Direct2D.vcxproj.user │ │ │ │ ├── Sample-DirectX9.vcxproj │ │ │ │ ├── Sample-DirectX9.vcxproj.filters │ │ │ │ ├── Sample-DirectX9.vcxproj.user │ │ │ │ ├── Sample-OpenGL.vcxproj │ │ │ │ ├── Sample-OpenGL.vcxproj.filters │ │ │ │ ├── Sample-OpenGL.vcxproj.user │ │ │ │ ├── Sample-OpenGL_DebugFont.vcxproj │ │ │ │ ├── Sample-OpenGL_DebugFont.vcxproj.filters │ │ │ │ ├── Sample-OpenGL_DebugFont.vcxproj.user │ │ │ │ ├── Sample-SFML.vcxproj │ │ │ │ ├── Sample-SFML.vcxproj.filters │ │ │ │ ├── Sample-SFML.vcxproj.user │ │ │ │ ├── Sample-SFML2.vcxproj │ │ │ │ ├── Sample-SFML2.vcxproj.filters │ │ │ │ ├── Sample-SFML2.vcxproj.user │ │ │ │ ├── Sample-WindowsGDI.vcxproj │ │ │ │ ├── Sample-WindowsGDI.vcxproj.filters │ │ │ │ ├── Sample-WindowsGDI.vcxproj.user │ │ │ │ ├── UnitTest.vcxproj │ │ │ │ ├── UnitTest.vcxproj.filters │ │ │ │ └── UnitTest.vcxproj.user │ │ ├── Renderers │ │ │ ├── Allegro │ │ │ │ └── Allegro.cpp │ │ │ ├── Direct2D │ │ │ │ └── Direct2D.cpp │ │ │ ├── DirectX9 │ │ │ │ ├── DirectX9.cpp │ │ │ │ ├── DirectX9Renderer.sln │ │ │ │ └── DirectX9Renderer.vcproj │ │ │ ├── GDIPlus │ │ │ │ ├── GDIPlus.cpp │ │ │ │ ├── GDIPlusBuffered.cpp │ │ │ │ └── GDIPlusRenderer.h │ │ │ ├── OpenGL │ │ │ │ ├── DebugFont │ │ │ │ │ ├── FontData.h │ │ │ │ │ └── OpenGL_DebugFont.cpp │ │ │ │ ├── FreeImage │ │ │ │ │ └── FreeImage.h │ │ │ │ └── OpenGL.cpp │ │ │ ├── SFML │ │ │ │ └── SFML.cpp │ │ │ └── SFML2 │ │ │ │ └── SFML2.cpp │ │ ├── Util │ │ │ ├── ControlFactory │ │ │ │ ├── Base_Factory.cpp │ │ │ │ ├── Button_Factory.cpp │ │ │ │ ├── CheckBox_Factory.cpp │ │ │ │ ├── ComboBox_Factory.cpp │ │ │ │ ├── ControlFactory.cpp │ │ │ │ ├── DesignerCanvas_Factory.cpp │ │ │ │ ├── FilePicker_Factory.cpp │ │ │ │ ├── FolderPicker_Factory.cpp │ │ │ │ ├── Image_Factory.cpp │ │ │ │ ├── Label_Factory.cpp │ │ │ │ ├── ListBox_Factory.cpp │ │ │ │ ├── MenuStrip_Factory.cpp │ │ │ │ ├── PageControl_Factory.cpp │ │ │ │ ├── ProgressBar_Factory.cpp │ │ │ │ ├── Rectangle_Factory.cpp │ │ │ │ ├── Slider_Factory.cpp │ │ │ │ ├── TextBox_Factory.cpp │ │ │ │ └── VerticalSplitter_Factory.cpp │ │ │ └── ImportExport │ │ │ │ ├── Base.cpp │ │ │ │ ├── DesignerFormat.cpp │ │ │ │ └── DesignerFormat.h │ │ └── src │ │ │ ├── Anim.cpp │ │ │ ├── BaseRender.cpp │ │ │ ├── ControlList.cpp │ │ │ ├── Controls │ │ │ ├── Base.cpp │ │ │ ├── Button.cpp │ │ │ ├── Canvas.cpp │ │ │ ├── CheckBox.cpp │ │ │ ├── CollapsibleCategory.cpp │ │ │ ├── ColorControls.cpp │ │ │ ├── ColorPicker.cpp │ │ │ ├── ComboBox.cpp │ │ │ ├── CrossSplitter.cpp │ │ │ ├── Dialog │ │ │ │ ├── FileOpen.cpp │ │ │ │ ├── FileSave.cpp │ │ │ │ ├── FolderOpen.cpp │ │ │ │ └── Query.cpp │ │ │ ├── DockBase.cpp │ │ │ ├── DockedTabControl.cpp │ │ │ ├── Dragger.cpp │ │ │ ├── GroupBox.cpp │ │ │ ├── HSVColorPicker.cpp │ │ │ ├── HorizontalScrollBar.cpp │ │ │ ├── HorizontalSlider.cpp │ │ │ ├── ImagePanel.cpp │ │ │ ├── Label.cpp │ │ │ ├── LabelClickable.cpp │ │ │ ├── ListBox.cpp │ │ │ ├── Menu.cpp │ │ │ ├── MenuItem.cpp │ │ │ ├── MenuStrip.cpp │ │ │ ├── NumericUpDown.cpp │ │ │ ├── PageControl.cpp │ │ │ ├── ProgressBar.cpp │ │ │ ├── Properties.cpp │ │ │ ├── PropertyTree.cpp │ │ │ ├── RadioButton.cpp │ │ │ ├── RadioButtonController.cpp │ │ │ ├── Rectangle.cpp │ │ │ ├── ResizableControl.cpp │ │ │ ├── Resizer.cpp │ │ │ ├── RichLabel.cpp │ │ │ ├── ScrollBar.cpp │ │ │ ├── ScrollBarBar.cpp │ │ │ ├── ScrollBarButton.cpp │ │ │ ├── ScrollControl.cpp │ │ │ ├── Slider.cpp │ │ │ ├── SplitterBar.cpp │ │ │ ├── TabButton.cpp │ │ │ ├── TabControl.cpp │ │ │ ├── TabStrip.cpp │ │ │ ├── Text.cpp │ │ │ ├── TextBox.cpp │ │ │ ├── TextBoxNumeric.cpp │ │ │ ├── TreeControl.cpp │ │ │ ├── TreeNode.cpp │ │ │ ├── VerticalScrollBar.cpp │ │ │ ├── VerticalSlider.cpp │ │ │ ├── WindowCanvas.cpp │ │ │ └── WindowControl.cpp │ │ │ ├── DragAndDrop.cpp │ │ │ ├── Gwen.cpp │ │ │ ├── Hook.cpp │ │ │ ├── Platforms │ │ │ ├── AllegroPlatform.cpp │ │ │ ├── Null.cpp │ │ │ └── Windows.cpp │ │ │ ├── Skin.cpp │ │ │ ├── ToolTip.cpp │ │ │ ├── Utility.cpp │ │ │ ├── events.cpp │ │ │ └── inputhandler.cpp │ └── include │ │ ├── GL │ │ └── glew.h │ │ └── Gwen │ │ ├── Align.h │ │ ├── Anim.h │ │ ├── BaseRender.h │ │ ├── Config.h │ │ ├── ControlList.h │ │ ├── Controls.h │ │ ├── Controls │ │ ├── Base.h │ │ ├── Button.h │ │ ├── Canvas.h │ │ ├── CheckBox.h │ │ ├── CollapsibleCategory.h │ │ ├── CollapsibleList.h │ │ ├── ColorControls.h │ │ ├── ColorPicker.h │ │ ├── ComboBox.h │ │ ├── CrossSplitter.h │ │ ├── Dialogs │ │ │ ├── FileOpen.h │ │ │ ├── FileSave.h │ │ │ ├── FolderOpen.h │ │ │ └── Query.h │ │ ├── DockBase.h │ │ ├── DockedTabControl.h │ │ ├── Dragger.h │ │ ├── FieldLabel.h │ │ ├── FilePicker.h │ │ ├── FolderPicker.h │ │ ├── GroupBox.h │ │ ├── HSVColorPicker.h │ │ ├── Highlight.h │ │ ├── HorizontalScrollBar.h │ │ ├── HorizontalSlider.h │ │ ├── ImagePanel.h │ │ ├── Label.h │ │ ├── LabelClickable.h │ │ ├── Layout │ │ │ ├── Position.h │ │ │ ├── Table.h │ │ │ └── Tile.h │ │ ├── ListBox.h │ │ ├── Menu.h │ │ ├── MenuItem.h │ │ ├── MenuStrip.h │ │ ├── Modal.h │ │ ├── NumericUpDown.h │ │ ├── PageControl.h │ │ ├── ProgressBar.h │ │ ├── Properties.h │ │ ├── Property │ │ │ ├── BaseProperty.h │ │ │ ├── Checkbox.h │ │ │ ├── ColorSelector.h │ │ │ ├── ComboBox.h │ │ │ ├── File.h │ │ │ ├── Folder.h │ │ │ └── Text.h │ │ ├── PropertyTree.h │ │ ├── RadioButton.h │ │ ├── RadioButtonController.h │ │ ├── Rectangle.h │ │ ├── ResizableControl.h │ │ ├── Resizer.h │ │ ├── RichLabel.h │ │ ├── ScrollBar.h │ │ ├── ScrollBarBar.h │ │ ├── ScrollBarButton.h │ │ ├── ScrollControl.h │ │ ├── Slider.h │ │ ├── SplitterBar.h │ │ ├── Splitters.h │ │ ├── StatusBar.h │ │ ├── TabButton.h │ │ ├── TabControl.h │ │ ├── TabStrip.h │ │ ├── TabTitleBar.h │ │ ├── Text.h │ │ ├── TextBox.h │ │ ├── ToolBar.h │ │ ├── TreeControl.h │ │ ├── TreeNode.h │ │ ├── VerticalScrollBar.h │ │ ├── VerticalSlider.h │ │ ├── WindowButtons.h │ │ ├── WindowCanvas.h │ │ └── WindowControl.h │ │ ├── DragAndDrop.h │ │ ├── Events.h │ │ ├── Exports.h │ │ ├── Font.h │ │ ├── Gwen.h │ │ ├── Hook.h │ │ ├── Input │ │ ├── Allegro.h │ │ ├── SDL13.h │ │ ├── SFML.h │ │ └── Windows.h │ │ ├── InputHandler.h │ │ ├── Macros.h │ │ ├── Platform.h │ │ ├── Skin.h │ │ ├── Skins │ │ ├── Simple.h │ │ ├── TexturedBase.h │ │ └── Texturing.h │ │ ├── Structures.h │ │ ├── TextObject.h │ │ ├── Texture.h │ │ ├── ToolTip.h │ │ ├── UserData.h │ │ ├── Util │ │ ├── ControlFactory.h │ │ └── ImportExport.h │ │ ├── Utility.h │ │ └── WindowProvider.h ├── Hekkus │ └── Readme.txt ├── SDL2-2.0.1 │ ├── Lib │ │ └── Win32 │ │ │ ├── SDL2.lib │ │ │ ├── SDL2_d.lib │ │ │ ├── SDL2main.lib │ │ │ └── SDL2main_d.lib │ ├── Readme.txt │ └── include │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.h │ │ ├── SDL_gamecontroller.h │ │ ├── SDL_gesture.h │ │ ├── SDL_haptic.h │ │ ├── SDL_hints.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keycode.h │ │ ├── SDL_loadso.h │ │ ├── SDL_log.h │ │ ├── SDL_main.h │ │ ├── SDL_messagebox.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_pixels.h │ │ ├── SDL_platform.h │ │ ├── SDL_power.h │ │ ├── SDL_quit.h │ │ ├── SDL_rect.h │ │ ├── SDL_render.h │ │ ├── SDL_revision.h │ │ ├── SDL_rwops.h │ │ ├── SDL_scancode.h │ │ ├── SDL_shape.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_surface.h │ │ ├── SDL_system.h │ │ ├── SDL_syswm.h │ │ ├── SDL_test.h │ │ ├── SDL_test_assert.h │ │ ├── SDL_test_common.h │ │ ├── SDL_test_compare.h │ │ ├── SDL_test_crc32.h │ │ ├── SDL_test_font.h │ │ ├── SDL_test_fuzzer.h │ │ ├── SDL_test_harness.h │ │ ├── SDL_test_images.h │ │ ├── SDL_test_log.h │ │ ├── SDL_test_md5.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ ├── close_code.h │ │ └── doxyfile └── irrKlang-1.4.0b │ ├── Readme.txt │ ├── include │ ├── ik_ESoundEngineOptions.h │ ├── ik_ESoundOutputDrivers.h │ ├── ik_EStreamModes.h │ ├── ik_IAudioRecorder.h │ ├── ik_IAudioStream.h │ ├── ik_IAudioStreamLoader.h │ ├── ik_IFileFactory.h │ ├── ik_IFileReader.h │ ├── ik_IRefCounted.h │ ├── ik_ISound.h │ ├── ik_ISoundDeviceList.h │ ├── ik_ISoundEffectControl.h │ ├── ik_ISoundEngine.h │ ├── ik_ISoundMixedOutputReceiver.h │ ├── ik_ISoundSource.h │ ├── ik_ISoundStopEventReceiver.h │ ├── ik_IVirtualRefCounted.h │ ├── ik_SAudioStreamFormat.h │ ├── ik_irrKlangTypes.h │ ├── ik_vec3d.h │ └── irrKlang.h │ ├── irrKlang.dll │ └── lib │ ├── Linux │ └── libIrrKlang.so │ └── Win32 │ ├── irrKlang.exp │ └── irrKlang.lib ├── Include ├── AssertLog.h ├── BG.h ├── BGVRAM.h ├── DMA.h ├── Expansion │ ├── AudioLoader.h │ ├── FontLoader.h │ ├── HDMALoader.h │ ├── MapLoader.h │ └── SpriteLoader.h ├── File.h ├── GameHeader.h ├── HDMA.h ├── Hardware.h ├── HardwareDefines.h ├── IGame.h ├── IVRAM.h ├── Image.h ├── Joypad.h ├── Log.h ├── Macros.h ├── OAM.h ├── Obj.h ├── ObjVRAM.h ├── PathDefines.h ├── Point.h ├── Rect.h ├── RenderParams.h ├── ResourceManager.h ├── SPC.h ├── SRAM.h ├── STLMacros.h ├── Text.h ├── TinySTL │ ├── allocator.h │ ├── buffer.h │ ├── hash.h │ ├── hash_base.h │ ├── new.h │ ├── stddef.h │ ├── stdint.h │ ├── string.h │ ├── traits.h │ ├── unordered_map.h │ ├── unordered_set.h │ └── vector.h ├── TinyXML2 │ └── tinyxml2.h └── Types.h ├── JoypadConfig ├── License.txt └── UI │ ├── ButtonClick.png │ ├── ButtonHover.png │ ├── ButtonInactive.png │ ├── ButtonNormal.png │ ├── Icon.png │ ├── JoypadConfig.xml │ ├── ListHeader.png │ ├── ListHeaderHover.png │ ├── ListHeaderSelected.png │ ├── ListHeaderSeparator.png │ └── Window.png ├── LICENSE ├── Lib ├── Android │ ├── BASS │ │ ├── libSound.a │ │ └── libSound_d.a │ ├── Hekkus │ │ ├── libSound.a │ │ └── libSound_d.a │ ├── libDisplay.a │ ├── libDisplay_d.a │ ├── libExpansion.a │ ├── libExpansion_d.a │ ├── libPlatform.a │ ├── libPlatform_d.a │ ├── libSuperPlay.a │ └── libSuperPlay_d.a ├── Emscripten │ ├── Display.bc │ ├── Display_d.bc │ ├── Expansion.bc │ ├── Expansion_d.bc │ ├── Platform.bc │ ├── Platform_d.bc │ ├── Sound.bc │ ├── Sound_d.bc │ ├── SuperPlay.bc │ └── SuperPlay_d.bc ├── Marmalade │ ├── Hekkus │ │ ├── Sound.lib │ │ ├── Sound_d.lib │ │ ├── libSound.a │ │ └── libSound_d.a │ ├── Platform.lib │ ├── Platform_d.lib │ ├── libDisplay.a │ ├── libDisplay_d.a │ ├── libExpansion.a │ ├── libExpansion_d.a │ ├── libPlatform.a │ ├── libPlatform_d.a │ ├── libSuperPlay.a │ └── libSuperPlay_d.a ├── VS2010 │ ├── Display.lib │ ├── DisplayAngle.lib │ ├── DisplayAngle_d.lib │ ├── DisplayGL_d.lib │ ├── Display_d.lib │ ├── Expansion.lib │ ├── Expansion_d.lib │ ├── Hekkus │ │ ├── Sound.lib │ │ └── Sound_d.lib │ ├── IrrKlang │ │ ├── Sound.lib │ │ └── Sound_d.lib │ ├── Platform.lib │ ├── Platform_d.lib │ ├── SuperPlay.lib │ └── SuperPlay_d.lib └── VS2013 │ ├── Display_d.lib │ ├── Expansion_d.lib │ ├── Platform_d.lib │ ├── Sound_d.lib │ └── SuperPlay_d.lib ├── PlatformLib ├── Android │ ├── Android.sln │ ├── Android.suo │ ├── Android.vcxproj │ ├── Android.vcxproj.filters │ ├── Android.vcxproj.user │ ├── File.cpp │ ├── Input.cpp │ ├── Input.h │ ├── Log.cpp │ ├── Main.cpp │ ├── Platform.cpp │ ├── Platform.h │ ├── PlatformDefines.h │ ├── StoragePath.cpp │ ├── SystemDefines.h │ ├── Timer.cpp │ ├── Timer.h │ ├── Window.cpp │ ├── Window.h │ ├── android_native_app_glue.c │ ├── android_native_app_glue.h │ ├── controller.cpp │ └── controller.h ├── Emscripten │ ├── File.cpp │ ├── Input.cpp │ ├── Input.h │ ├── Log.cpp │ ├── Main.cpp │ ├── Platform.cpp │ ├── Platform.h │ ├── Platform.sln │ ├── Platform.vcxproj │ ├── Platform.vcxproj.filters │ ├── Platform.vcxproj.user │ ├── PlatformDefines.h │ ├── StoragePath.cpp │ ├── Timer.cpp │ ├── Timer.h │ ├── Window.cpp │ └── Window.h ├── Include │ ├── IInput.h │ ├── JoystickGUIDs.h │ ├── PlatformLib.h │ └── StoragePath.h ├── Linux │ ├── Archive │ │ ├── Keyboard.cpp │ │ ├── Keyboard.h │ │ ├── Platform.cpp │ │ ├── Timer.cpp │ │ ├── Timer.h │ │ ├── Window.cpp │ │ └── Window.h │ ├── File.cpp │ ├── Input.cpp │ ├── Input.h │ ├── Log.cpp │ ├── Main.cpp │ ├── Platform.cpp │ ├── Platform.h │ ├── Platform.mk │ ├── Platform.project │ ├── PlatformDefines.h │ ├── StoragePath.cpp │ ├── Timer.cpp │ ├── Timer.h │ ├── Window.cpp │ ├── Window.h │ └── makefile ├── MacOSX │ ├── File.cpp │ ├── Input.cpp │ ├── Input.h │ ├── Log.cpp │ ├── Main.cpp │ ├── Platform.cpp │ ├── Platform.h │ ├── Platform │ │ ├── MainController.h │ │ ├── MainController.mm │ │ ├── Platform.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcuserdata │ │ │ │ ├── User.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ │ ├── Platform.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ ├── cdoty.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ │ └── Platform.xcscheme │ │ │ │ └── mac.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── Platform.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ ├── SPOpenGLView.h │ │ └── SPOpenGLView.mm │ ├── PlatformDefines.h │ ├── StoragePath.cpp │ ├── Timer.cpp │ ├── Timer.h │ ├── Window.cpp │ └── Window.h ├── Marmalade │ ├── File.cpp │ ├── Input.cpp │ ├── Input.h │ ├── Log.cpp │ ├── Main.cpp │ ├── Platform.cpp │ ├── Platform.h │ ├── Platform.mkb │ ├── PlatformDefines.h │ ├── StoragePath.cpp │ ├── Timer.cpp │ ├── Timer.h │ ├── Window.cpp │ └── Window.h ├── NaCl │ ├── BaseInstance.cpp │ ├── BaseInstance.h │ ├── BaseModule.cpp │ ├── BaseModule.h │ ├── File.cpp │ ├── Input.cpp │ ├── Input.h │ ├── Log.cpp │ ├── Main.cpp │ ├── Platform.cpp │ ├── Platform.h │ ├── Platform.sln │ ├── Platform.vcxproj │ ├── Platform.vcxproj.filters │ ├── Platform.vcxproj.user │ ├── PlatformDefines.h │ ├── SPlayInstance.cpp │ ├── SPlayInstance.h │ ├── StoragePath.cpp │ ├── Timer.cpp │ ├── Timer.h │ ├── Window.cpp │ └── Window.h ├── RaspberryPi │ ├── File.cpp │ ├── Input.cpp │ ├── Input.h │ ├── Log.cpp │ ├── Main.cpp │ ├── Platform.cpp │ ├── Platform.h │ ├── Platform.mk │ ├── Platform.project │ ├── PlatformDefines.h │ ├── StoragePath.cpp │ ├── Timer.cpp │ ├── Timer.h │ ├── Window.cpp │ ├── Window.h │ ├── makefile │ └── nbproject │ │ ├── configurations.xml │ │ ├── private │ │ ├── configurations.xml │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── SDL │ ├── File.cpp │ ├── Input.cpp │ ├── Input.h │ ├── Log.cpp │ ├── Main.cpp │ ├── Platform.cpp │ ├── Platform.h │ ├── PlatformDefines.h │ ├── PlatformLibSDL.vcxproj │ ├── PlatformLibSDL.vcxproj.filters │ ├── PlatformLibSDL.vcxproj.user │ ├── StoragePath.cpp │ ├── Timer.cpp │ ├── Timer.h │ ├── Window.cpp │ └── Window.h ├── Win32 │ ├── File.cpp │ ├── Input.cpp │ ├── Input.h │ ├── Log.cpp │ ├── Main.cpp │ ├── Platform.cpp │ ├── Platform.h │ ├── PlatformDefines.h │ ├── PlatformLib2010.vcxproj │ ├── PlatformLib2010.vcxproj.filters │ ├── PlatformLib2010.vcxproj.user │ ├── PlatformLib2012.vcxproj │ ├── PlatformLib2012.vcxproj.filters │ ├── PlatformLib2012.vcxproj.user │ ├── PlatformLib2013.vcxproj │ ├── PlatformLib2013.vcxproj.filters │ ├── PlatformLib2013.vcxproj.user │ ├── Resources │ │ ├── Application.ico │ │ ├── Application.rc │ │ └── resource.h │ ├── StoragePath.cpp │ ├── Timer.cpp │ ├── Timer.h │ ├── Window.cpp │ └── Window.h └── iOS │ ├── .idea │ ├── .name │ ├── MacOSX.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── vcs.xml │ └── workspace.xml │ ├── File.cpp │ ├── Input.cpp │ ├── Input.h │ ├── Log.mm │ ├── Main.cpp │ ├── Platform.cpp │ ├── Platform.h │ ├── Platform │ ├── DuoGamerSDK.h │ ├── DuoGamerSDK.m │ ├── GLView.h │ ├── GLView.mm │ ├── GLViewController.h │ ├── GLViewController.mm │ ├── Platform.xcodeproj │ │ ├── project.pbxproj │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── Platform.xcscheme │ │ └── xcuserdata │ │ │ ├── User.xcuserdatad │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ │ └── mac.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Platform.xcscheme │ │ │ └── xcschememanagement.plist │ ├── SuperPlayDelegate.h │ ├── SuperPlayDelegate.mm │ ├── iMpulse │ │ ├── iMpulseReaderView.h │ │ ├── iMpulseReaderView.m │ │ └── iMpulseState.h │ └── main.m │ ├── PlatformDefines.h │ ├── RenderBuffer.cpp │ ├── RenderBuffer.h │ ├── StoragePath.cpp │ ├── Window.cpp │ └── Window.h ├── README.md ├── SoundLib ├── BASS │ ├── BASSAndroid.sln │ ├── BASSAndroid.vcxproj │ ├── BASSAndroid.vcxproj.filters │ ├── BASSAndroid.vcxproj.user │ ├── Sound.cpp │ ├── SoundSystem.cpp │ ├── SoundSystem.h │ ├── iOS │ │ └── BASS.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcuserdata │ │ │ ├── User.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── BASS.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── cdoty.xcuserdatad │ │ │ └── xcschemes │ │ │ └── BASS.xcscheme │ ├── makefile │ └── nbproject │ │ ├── configurations.xml │ │ ├── private │ │ ├── configurations.xml │ │ ├── launcher.properties │ │ └── private.xml │ │ └── project.xml ├── Hekkus │ ├── Sound.cpp │ ├── Sound.mkb │ ├── SoundLib2010.vcxproj │ ├── SoundLib2010.vcxproj.filters │ ├── SoundLib2010.vcxproj.user │ ├── SoundLib2012.vcxproj │ ├── SoundLib2012.vcxproj.filters │ ├── SoundLib2012.vcxproj.user │ ├── SoundLib2013.vcxproj │ ├── SoundLib2013.vcxproj.filters │ ├── SoundLib2013.vcxproj.user │ ├── SoundLibAndroid.sln │ ├── SoundLibAndroid.suo │ ├── SoundLibAndroid.vcxproj │ ├── SoundLibAndroid.vcxproj.filters │ ├── SoundLibAndroid.vcxproj.user │ ├── SoundLibEmscripten.sln │ ├── SoundLibEmscripten.vcxproj │ ├── SoundLibEmscripten.vcxproj.filters │ ├── SoundLibEmscripten.vcxproj.user │ ├── SoundSystem.cpp │ ├── SoundSystem.h │ └── makefile ├── Include │ ├── ISoundSystem.h │ └── Sound.h └── irrKlang │ ├── Sound.cpp │ ├── Sound.mk │ ├── Sound.project │ ├── Sound │ └── Sound.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ ├── User.xcuserdatad │ │ └── xcschemes │ │ │ ├── Sound.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── cdoty.xcuserdatad │ │ └── xcschemes │ │ │ └── Sound.xcscheme │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ ├── Sound.xcscheme │ │ └── xcschememanagement.plist │ ├── SoundLib2010IrrKlang.vcxproj │ ├── SoundLib2010IrrKlang.vcxproj.filters │ ├── SoundLib2010IrrKlang.vcxproj.user │ ├── SoundLib2012.vcxproj │ ├── SoundLib2012.vcxproj.filters │ ├── SoundLib2012.vcxproj.user │ ├── SoundSystem.cpp │ ├── SoundSystem.h │ ├── iOS │ └── Sound.xcodeproj │ │ ├── project.pbxproj │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── Sound.xcscheme │ │ └── xcuserdata │ │ ├── User.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ ├── Sound.xcscheme │ │ └── xcschememanagement.plist │ └── makefile ├── SuperPlay.batch_build ├── SuperPlay.tags ├── SuperPlay.workspace ├── SuperPlay.workspace.session ├── SuperPlay2010.sln ├── SuperPlay2012.sln ├── SuperPlay2013.sln ├── SuperPlayAndroid.sln ├── SuperPlayLib ├── Engine │ ├── Image.cpp │ ├── ResourceManager.cpp │ ├── System.cpp │ └── Utilities.cpp ├── Hardware │ ├── Archive │ │ ├── ShadowOAM.cpp │ │ └── ShadowOAM.h │ ├── BG.cpp │ ├── BGManager.cpp │ ├── BGManager.h │ ├── BGVRAM.cpp │ ├── CRC32.cpp │ ├── CRC32.h │ ├── DMA.cpp │ ├── HDMA.cpp │ ├── Hardware.cpp │ ├── Joypad.cpp │ ├── OAM.cpp │ ├── Obj.cpp │ ├── ObjVRAM.cpp │ ├── SPC.cpp │ ├── SRAM.cpp │ ├── ShadowOAM.cpp │ ├── ShadowOAM.h │ └── Text.cpp ├── Include │ ├── System.h │ └── Utilities.h ├── LICENSE ├── Libraries │ ├── TinyXML2 │ │ └── tinyxml2.cpp │ ├── mtrand │ │ ├── mtrand.cpp │ │ └── mtrand.h │ └── stb_image │ │ ├── stb_image.cpp │ │ └── stb_image.h ├── SuperPlay.mk ├── SuperPlay.mkb ├── SuperPlay.project ├── SuperPlay │ └── SuperPlay.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ ├── User.xcuserdatad │ │ └── xcschemes │ │ │ ├── SuperPlay.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── cdoty.xcuserdatad │ │ └── xcschemes │ │ │ └── SuperPlay.xcscheme │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ ├── SuperPlay.xcscheme │ │ └── xcschememanagement.plist ├── SuperPlay2010.vcxproj ├── SuperPlay2010.vcxproj.filters ├── SuperPlay2010.vcxproj.user ├── SuperPlay2012.vcxproj ├── SuperPlay2012.vcxproj.filters ├── SuperPlay2012.vcxproj.user ├── SuperPlay2013.vcxproj ├── SuperPlay2013.vcxproj.filters ├── SuperPlay2013.vcxproj.user ├── SuperPlayAndroid.sln ├── SuperPlayAndroid.vcxproj ├── SuperPlayAndroid.vcxproj.filters ├── SuperPlayAndroid.vcxproj.user ├── SuperPlayEmscripten.sln ├── SuperPlayEmscripten.vcxproj ├── SuperPlayEmscripten.vcxproj.filters ├── SuperPlayEmscripten.vcxproj.user ├── iOS │ └── SuperPlay.xcodeproj │ │ ├── project.pbxproj │ │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── SuperPlay.xcscheme │ │ └── xcuserdata │ │ ├── User.xcuserdatad │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ │ └── mac.xcuserdatad │ │ └── xcschemes │ │ ├── SuperPlay.xcscheme │ │ └── xcschememanagement.plist ├── makefile └── nbproject │ ├── configurations.xml │ ├── private │ ├── configurations.xml │ ├── launcher.properties │ └── private.xml │ └── project.xml ├── SuperPlaySDL.sln ├── Tools ├── ASEConvert │ ├── ASE.cpp │ ├── ASE.h │ ├── ASEConvert.sln │ ├── ASEConvert.vcxproj │ ├── ASEConvert.vcxproj.filters │ ├── ASEConvert.vcxproj.user │ ├── ASEStructs.h │ ├── Application.rc │ ├── Main.cpp │ └── resource.h ├── FontConvert │ ├── Application.rc │ ├── Font.cpp │ ├── Font.h │ ├── FontConvert.sln │ ├── FontConvert.vcxproj │ ├── FontConvert.vcxproj.filters │ ├── FontConvert.vcxproj.user │ ├── Main.cpp │ └── resource.h ├── JoypadConfig │ ├── Application.rc │ ├── Config.cpp │ ├── Config.h │ ├── ControllerConfig.sln │ ├── ControllerConfig.vcxproj │ ├── ControllerConfig.vcxproj.filters │ ├── ControllerConfig.vcxproj.user │ ├── DuiUtilities.cpp │ ├── DuiUtilities.h │ ├── Input.cpp │ ├── Input.h │ ├── Main.cpp │ ├── Resources │ │ ├── Icon.ico │ │ ├── Skin.bmp │ │ ├── Skin.rgn │ │ └── mk.bat │ ├── Skin │ │ ├── Skin.cpp │ │ ├── Skin.h │ │ ├── Window.cpp │ │ └── Window.h │ ├── Tools │ │ └── regioncreator.exe │ └── resource.h ├── JoypadConfigGWEN │ ├── Application.rc │ ├── Config.cpp │ ├── Config.h │ ├── Defines.h │ ├── DirectX9.cpp │ ├── DirectX9.h │ ├── Display.cpp │ ├── Display.h │ ├── Environment │ │ ├── DefaultSkin.png │ │ ├── Gamepad.png │ │ └── Indicator.png │ ├── Input.cpp │ ├── Input.h │ ├── JoypadConfig.sln │ ├── JoypadConfig.vcxproj │ ├── JoypadConfig.vcxproj.filters │ ├── JoypadConfig.vcxproj.user │ ├── Main.cpp │ ├── Resources │ │ └── Icon.ico │ └── resource.h ├── MappyConvert │ ├── Application.rc │ ├── Main.cpp │ ├── MappyConvert.sln │ ├── MappyConvert.vcxproj │ ├── MappyConvert.vcxproj.filters │ ├── MappyConvert.vcxproj.user │ ├── MappyMap.cpp │ ├── MappyMap.h │ └── resource.h ├── NAnimConvert │ ├── Application.rc │ ├── Main.cpp │ ├── NAnim.cpp │ ├── NAnim.h │ ├── NAnimConvert.sln │ ├── NAnimConvert.vcxproj │ ├── NAnimConvert.vcxproj.filters │ ├── NAnimConvert.vcxproj.user │ ├── NAnimStructs.h │ ├── Proto │ │ ├── nanim.pb.cpp │ │ ├── nanim.pb.h │ │ ├── nanim.proto │ │ └── protoc.exe │ └── resource.h ├── PickleConvert │ ├── Application.rc │ ├── Main.cpp │ ├── Pickle.cpp │ ├── Pickle.h │ ├── PickleConvert.sln │ ├── PickleConvert.vcxproj │ ├── PickleConvert.vcxproj.filters │ ├── PickleConvert.vcxproj.user │ ├── PickleStructs.h │ └── resource.h ├── ProMotionConvert │ ├── Application.rc │ ├── Main.cpp │ ├── ProMotion.cpp │ ├── ProMotion.h │ ├── ProMotionConvert.sln │ ├── ProMotionConvert.vcxproj │ ├── ProMotionConvert.vcxproj.filters │ ├── ProMotionConvert.vcxproj.user │ └── resource.h ├── PyxelConvert │ ├── Application.rc │ ├── Main.cpp │ ├── Pyxel.cpp │ ├── Pyxel.h │ ├── PyxelConvert.sln │ ├── PyxelConvert.vcxproj │ ├── PyxelConvert.vcxproj.filters │ ├── PyxelConvert.vcxproj.user │ ├── PyxelStructs.h │ └── resource.h ├── Shared │ ├── AssertLog.h │ ├── File.cpp │ ├── File.h │ ├── Functions.cpp │ ├── Functions.h │ ├── Icon │ │ └── Icon.ico │ ├── Libraries │ │ ├── JSON │ │ │ └── JSON.h │ │ ├── LodePNG │ │ │ ├── lodepng.cpp │ │ │ └── lodepng.h │ │ ├── MiniZ │ │ │ ├── miniz.c │ │ │ └── miniz.h │ │ ├── Proto │ │ │ ├── Readme.txt │ │ │ ├── include │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── descriptor.h │ │ │ │ │ ├── descriptor.pb.h │ │ │ │ │ ├── descriptor.proto │ │ │ │ │ ├── descriptor_database.h │ │ │ │ │ ├── dynamic_message.h │ │ │ │ │ ├── extension_set.h │ │ │ │ │ ├── generated_enum_reflection.h │ │ │ │ │ ├── generated_message_reflection.h │ │ │ │ │ ├── generated_message_util.h │ │ │ │ │ ├── io │ │ │ │ │ ├── coded_stream.cc │ │ │ │ │ ├── coded_stream.h │ │ │ │ │ ├── coded_stream_inl.h │ │ │ │ │ ├── coded_stream_unittest.cc │ │ │ │ │ ├── gzip_stream.cc │ │ │ │ │ ├── gzip_stream.h │ │ │ │ │ ├── gzip_stream_unittest.sh │ │ │ │ │ ├── package_info.h │ │ │ │ │ ├── printer.cc │ │ │ │ │ ├── printer.h │ │ │ │ │ ├── printer_unittest.cc │ │ │ │ │ ├── tokenizer.cc │ │ │ │ │ ├── tokenizer.h │ │ │ │ │ ├── tokenizer_unittest.cc │ │ │ │ │ ├── zero_copy_stream.cc │ │ │ │ │ ├── zero_copy_stream.h │ │ │ │ │ ├── zero_copy_stream_impl.cc │ │ │ │ │ ├── zero_copy_stream_impl.h │ │ │ │ │ ├── zero_copy_stream_impl_lite.cc │ │ │ │ │ ├── zero_copy_stream_impl_lite.h │ │ │ │ │ └── zero_copy_stream_unittest.cc │ │ │ │ │ ├── message.h │ │ │ │ │ ├── message_lite.h │ │ │ │ │ ├── package_info.h │ │ │ │ │ ├── reflection_ops.h │ │ │ │ │ ├── repeated_field.h │ │ │ │ │ ├── service.h │ │ │ │ │ ├── stubs │ │ │ │ │ ├── atomicops.h │ │ │ │ │ ├── atomicops_internals_arm_gcc.h │ │ │ │ │ ├── atomicops_internals_arm_qnx.h │ │ │ │ │ ├── atomicops_internals_atomicword_compat.h │ │ │ │ │ ├── atomicops_internals_macosx.h │ │ │ │ │ ├── atomicops_internals_mips_gcc.h │ │ │ │ │ ├── atomicops_internals_pnacl.h │ │ │ │ │ ├── atomicops_internals_x86_gcc.cc │ │ │ │ │ ├── atomicops_internals_x86_gcc.h │ │ │ │ │ ├── atomicops_internals_x86_msvc.cc │ │ │ │ │ ├── atomicops_internals_x86_msvc.h │ │ │ │ │ ├── common.cc │ │ │ │ │ ├── common.h │ │ │ │ │ ├── common_unittest.cc │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── map-util.h │ │ │ │ │ ├── once.cc │ │ │ │ │ ├── once.h │ │ │ │ │ ├── once_unittest.cc │ │ │ │ │ ├── platform_macros.h │ │ │ │ │ ├── stl_util.h │ │ │ │ │ ├── stringprintf.cc │ │ │ │ │ ├── stringprintf.h │ │ │ │ │ ├── stringprintf_unittest.cc │ │ │ │ │ ├── structurally_valid.cc │ │ │ │ │ ├── structurally_valid_unittest.cc │ │ │ │ │ ├── strutil.cc │ │ │ │ │ ├── strutil.h │ │ │ │ │ ├── strutil_unittest.cc │ │ │ │ │ ├── substitute.cc │ │ │ │ │ ├── substitute.h │ │ │ │ │ ├── template_util.h │ │ │ │ │ ├── template_util_unittest.cc │ │ │ │ │ ├── type_traits.h │ │ │ │ │ └── type_traits_unittest.cc │ │ │ │ │ ├── test_util.h │ │ │ │ │ ├── test_util_lite.h │ │ │ │ │ ├── text_format.h │ │ │ │ │ ├── unknown_field_set.h │ │ │ │ │ ├── wire_format.h │ │ │ │ │ ├── wire_format_lite.h │ │ │ │ │ └── wire_format_lite_inl.h │ │ │ └── lib │ │ │ │ ├── libprotobuf.lib │ │ │ │ └── libprotobuf_d.lib │ │ ├── TinyXML2 │ │ │ ├── tinyxml2.cpp │ │ │ └── tinyxml2.h │ │ └── stb_image │ │ │ ├── stb_image.cpp │ │ │ └── stb_image.h │ ├── Log.cpp │ ├── Log.h │ └── Macros.h └── TiledConvert │ ├── Application.rc │ ├── Main.cpp │ ├── Tiled.cpp │ ├── Tiled.h │ ├── TiledConvert.sln │ ├── TiledConvert.vcxproj │ ├── TiledConvert.vcxproj.filters │ ├── TiledConvert.vcxproj.user │ └── resource.h ├── iOS.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ ├── User.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── WorkspaceSettings.xcsettings │ └── mac.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── WorkspaceSettings.xcsettings ├── makefile └── makefile.pi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/.gitignore -------------------------------------------------------------------------------- /DisplayLib/DirectX/CustomVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/CustomVertex.h -------------------------------------------------------------------------------- /DisplayLib/DirectX/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/Display.cpp -------------------------------------------------------------------------------- /DisplayLib/DirectX/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/Display.h -------------------------------------------------------------------------------- /DisplayLib/DirectX/DisplayLib.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/DisplayLib.suo -------------------------------------------------------------------------------- /DisplayLib/DirectX/IndexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/IndexBuffer.cpp -------------------------------------------------------------------------------- /DisplayLib/DirectX/IndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/IndexBuffer.h -------------------------------------------------------------------------------- /DisplayLib/DirectX/SpriteBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/SpriteBatch.cpp -------------------------------------------------------------------------------- /DisplayLib/DirectX/SpriteBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/SpriteBatch.h -------------------------------------------------------------------------------- /DisplayLib/DirectX/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/Texture.cpp -------------------------------------------------------------------------------- /DisplayLib/DirectX/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/Texture.h -------------------------------------------------------------------------------- /DisplayLib/DirectX/VertexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/VertexBuffer.cpp -------------------------------------------------------------------------------- /DisplayLib/DirectX/VertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/DirectX/VertexBuffer.h -------------------------------------------------------------------------------- /DisplayLib/Include/IDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/Include/IDisplay.h -------------------------------------------------------------------------------- /DisplayLib/Include/IIndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/Include/IIndexBuffer.h -------------------------------------------------------------------------------- /DisplayLib/Include/ISpriteBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/Include/ISpriteBatch.h -------------------------------------------------------------------------------- /DisplayLib/Include/ITexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/Include/ITexture.h -------------------------------------------------------------------------------- /DisplayLib/Include/IVertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/Include/IVertexBuffer.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/CustomVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/CustomVertex.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/Display.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/Display.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/Display.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/Display.mk -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/Display.mkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/Display.mkb -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLAndroid.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLAndroid.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLAngle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLAngle.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLAngle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLAngle.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLEmscripten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLEmscripten.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLLinux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLLinux.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLLinux.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLMacOSX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLMacOSX.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLMacOSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLMacOSX.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLMarmalade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLMarmalade.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLNaCl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLNaCl.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLNaCl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLNaCl.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLWin32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLWin32.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLWin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLWin32.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLiOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLiOS.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/GLiOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/GLiOS.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/IndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/IndexBuffer.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/PixelShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/PixelShader.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/SpriteBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/SpriteBatch.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/Texture.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/Texture.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/VMath/vmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/VMath/vmath.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/VertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/VertexBuffer.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/VertexShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/VertexShader.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/glew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/glew.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL-ES2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL-ES2/makefile -------------------------------------------------------------------------------- /DisplayLib/OpenGL/CustomVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/CustomVertex.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/Display.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/Display.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/Display.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/Display.mk -------------------------------------------------------------------------------- /DisplayLib/OpenGL/Display.mkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/Display.mkb -------------------------------------------------------------------------------- /DisplayLib/OpenGL/Display.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/Display.project -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GL/glew.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GL/glxew.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GL/wglew.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLAndroid.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLAndroid.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLEmscripten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLEmscripten.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLEmscripten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLEmscripten.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLLinux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLLinux.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLLinux.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLMacOSX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLMacOSX.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLMacOSX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLMacOSX.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLMarmalade.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLMarmalade.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLMarmalade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLMarmalade.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLWin32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLWin32.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLWin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLWin32.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLiOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLiOS.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/GLiOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/GLiOS.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/IndexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/IndexBuffer.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/IndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/IndexBuffer.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/SpriteBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/SpriteBatch.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/SpriteBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/SpriteBatch.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/Texture.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/Texture.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/VertexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/VertexBuffer.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/VertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/VertexBuffer.h -------------------------------------------------------------------------------- /DisplayLib/OpenGL/glew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/glew.cpp -------------------------------------------------------------------------------- /DisplayLib/OpenGL/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/OpenGL/makefile -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/Display.cpp -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/Display.h -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/Display.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/Display.mk -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/GL/glew.h -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/GL/glxew.h -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/GL/wglew.h -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/GLPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/GLPlatform.h -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/IndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/IndexBuffer.h -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/SpriteBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/SpriteBatch.h -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/Texture.cpp -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/Texture.h -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/RaspberryPi/makefile -------------------------------------------------------------------------------- /DisplayLib/RaspberryPi/nbproject/private/Debug.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DisplayLib/SDL/CustomVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/CustomVertex.h -------------------------------------------------------------------------------- /DisplayLib/SDL/Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/Display.cpp -------------------------------------------------------------------------------- /DisplayLib/SDL/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/Display.h -------------------------------------------------------------------------------- /DisplayLib/SDL/Display.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/Display.mk -------------------------------------------------------------------------------- /DisplayLib/SDL/Display.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/Display.project -------------------------------------------------------------------------------- /DisplayLib/SDL/DisplayLibSDL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/DisplayLibSDL.vcxproj -------------------------------------------------------------------------------- /DisplayLib/SDL/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/GL/glew.h -------------------------------------------------------------------------------- /DisplayLib/SDL/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/GL/glxew.h -------------------------------------------------------------------------------- /DisplayLib/SDL/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/GL/wglew.h -------------------------------------------------------------------------------- /DisplayLib/SDL/GLPlatform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/GLPlatform.cpp -------------------------------------------------------------------------------- /DisplayLib/SDL/GLPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/GLPlatform.h -------------------------------------------------------------------------------- /DisplayLib/SDL/IndexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/IndexBuffer.cpp -------------------------------------------------------------------------------- /DisplayLib/SDL/IndexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/IndexBuffer.h -------------------------------------------------------------------------------- /DisplayLib/SDL/SpriteBatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/SpriteBatch.cpp -------------------------------------------------------------------------------- /DisplayLib/SDL/SpriteBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/SpriteBatch.h -------------------------------------------------------------------------------- /DisplayLib/SDL/Texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/Texture.cpp -------------------------------------------------------------------------------- /DisplayLib/SDL/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/Texture.h -------------------------------------------------------------------------------- /DisplayLib/SDL/VertexBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/VertexBuffer.cpp -------------------------------------------------------------------------------- /DisplayLib/SDL/VertexBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/VertexBuffer.h -------------------------------------------------------------------------------- /DisplayLib/SDL/glew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/glew.cpp -------------------------------------------------------------------------------- /DisplayLib/SDL/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/DisplayLib/SDL/makefile -------------------------------------------------------------------------------- /Documentation/Resources/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Documentation/Resources/Logo.png -------------------------------------------------------------------------------- /Documentation/Resources/Logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Documentation/Resources/Logo.psd -------------------------------------------------------------------------------- /Documentation/SuperPlay.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Documentation/SuperPlay.odt -------------------------------------------------------------------------------- /Examples/Audio/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Android.mk -------------------------------------------------------------------------------- /Examples/Audio/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/AndroidManifest.xml -------------------------------------------------------------------------------- /Examples/Audio/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Application.rc -------------------------------------------------------------------------------- /Examples/Audio/Audio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Audio.mk -------------------------------------------------------------------------------- /Examples/Audio/Audio.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Audio.project -------------------------------------------------------------------------------- /Examples/Audio/Audio.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Audio.vcxproj -------------------------------------------------------------------------------- /Examples/Audio/Audio.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Audio.vcxproj.filters -------------------------------------------------------------------------------- /Examples/Audio/Audio.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Audio.vcxproj.user -------------------------------------------------------------------------------- /Examples/Audio/Audio.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Audio.workspace -------------------------------------------------------------------------------- /Examples/Audio/Audio2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Audio2012.vcxproj -------------------------------------------------------------------------------- /Examples/Audio/Audio2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Audio2013.vcxproj -------------------------------------------------------------------------------- /Examples/Audio/AudioAndroid.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/AudioAndroid.vcxproj -------------------------------------------------------------------------------- /Examples/Audio/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Game.cpp -------------------------------------------------------------------------------- /Examples/Audio/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Game.h -------------------------------------------------------------------------------- /Examples/Audio/GameDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/GameDefines.h -------------------------------------------------------------------------------- /Examples/Audio/GameHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/GameHeader.cpp -------------------------------------------------------------------------------- /Examples/Audio/Icon/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Icon/Icon.ico -------------------------------------------------------------------------------- /Examples/Audio/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/License.txt -------------------------------------------------------------------------------- /Examples/Audio/Resources/Expire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Resources/Expire.png -------------------------------------------------------------------------------- /Examples/Audio/Resources/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/Resources/mk.bat -------------------------------------------------------------------------------- /Examples/Audio/assets/Fonts/Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/assets/Fonts/Font.png -------------------------------------------------------------------------------- /Examples/Audio/assets/Fonts/Font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/assets/Fonts/Font.xml -------------------------------------------------------------------------------- /Examples/Audio/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/build.xml -------------------------------------------------------------------------------- /Examples/Audio/jni/NativeActivity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/jni/NativeActivity.c -------------------------------------------------------------------------------- /Examples/Audio/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/local.properties -------------------------------------------------------------------------------- /Examples/Audio/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/makefile -------------------------------------------------------------------------------- /Examples/Audio/makefile.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/makefile.pi -------------------------------------------------------------------------------- /Examples/Audio/nbproject/private/CodeAssistancePathMapper.properties: -------------------------------------------------------------------------------- 1 | # Automatic path mapper. CRC = 1 2 | -------------------------------------------------------------------------------- /Examples/Audio/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/nbproject/project.xml -------------------------------------------------------------------------------- /Examples/Audio/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/proguard-project.txt -------------------------------------------------------------------------------- /Examples/Audio/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/proguard.cfg -------------------------------------------------------------------------------- /Examples/Audio/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/project.properties -------------------------------------------------------------------------------- /Examples/Audio/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/res/drawable/icon.png -------------------------------------------------------------------------------- /Examples/Audio/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Audio/resource.h -------------------------------------------------------------------------------- /Examples/BLT/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Android.mk -------------------------------------------------------------------------------- /Examples/BLT/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/AndroidManifest.xml -------------------------------------------------------------------------------- /Examples/BLT/Application.mk: -------------------------------------------------------------------------------- 1 | # Generated by VisualGDB 2 | 3 | APP_ABI := all 4 | -------------------------------------------------------------------------------- /Examples/BLT/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Application.rc -------------------------------------------------------------------------------- /Examples/BLT/BLT.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT.mk -------------------------------------------------------------------------------- /Examples/BLT/BLT.mkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT.mkb -------------------------------------------------------------------------------- /Examples/BLT/BLT.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT.project -------------------------------------------------------------------------------- /Examples/BLT/BLT.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT.vcxproj -------------------------------------------------------------------------------- /Examples/BLT/BLT.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT.vcxproj.filters -------------------------------------------------------------------------------- /Examples/BLT/BLT.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT.vcxproj.user -------------------------------------------------------------------------------- /Examples/BLT/BLT2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT2012.vcxproj -------------------------------------------------------------------------------- /Examples/BLT/BLT2012.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT2012.vcxproj.filters -------------------------------------------------------------------------------- /Examples/BLT/BLT2012.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT2012.vcxproj.user -------------------------------------------------------------------------------- /Examples/BLT/BLT2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT2013.vcxproj -------------------------------------------------------------------------------- /Examples/BLT/BLT2013.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT2013.vcxproj.filters -------------------------------------------------------------------------------- /Examples/BLT/BLT2013.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLT2013.vcxproj.user -------------------------------------------------------------------------------- /Examples/BLT/BLTAndroid.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLTAndroid.vcxproj -------------------------------------------------------------------------------- /Examples/BLT/BLTAndroid.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BLTAndroid.vcxproj.user -------------------------------------------------------------------------------- /Examples/BLT/Background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Background.cpp -------------------------------------------------------------------------------- /Examples/BLT/Background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Background.h -------------------------------------------------------------------------------- /Examples/BLT/BaseSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BaseSprite.cpp -------------------------------------------------------------------------------- /Examples/BLT/BaseSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BaseSprite.h -------------------------------------------------------------------------------- /Examples/BLT/BulletManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BulletManager.cpp -------------------------------------------------------------------------------- /Examples/BLT/BulletManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BulletManager.h -------------------------------------------------------------------------------- /Examples/BLT/BulletSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BulletSprite.cpp -------------------------------------------------------------------------------- /Examples/BLT/BulletSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/BulletSprite.h -------------------------------------------------------------------------------- /Examples/BLT/Emscripten.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Emscripten.sln -------------------------------------------------------------------------------- /Examples/BLT/Emscripten.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Emscripten.vcxproj -------------------------------------------------------------------------------- /Examples/BLT/Emscripten.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Emscripten.vcxproj.user -------------------------------------------------------------------------------- /Examples/BLT/EnemyManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/EnemyManager.cpp -------------------------------------------------------------------------------- /Examples/BLT/EnemyManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/EnemyManager.h -------------------------------------------------------------------------------- /Examples/BLT/EnemySprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/EnemySprite.cpp -------------------------------------------------------------------------------- /Examples/BLT/EnemySprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/EnemySprite.h -------------------------------------------------------------------------------- /Examples/BLT/Environment/BLT.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Environment/BLT.desktop -------------------------------------------------------------------------------- /Examples/BLT/Environment/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Environment/frame.png -------------------------------------------------------------------------------- /Examples/BLT/Environment/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Environment/icon.png -------------------------------------------------------------------------------- /Examples/BLT/Environment/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Environment/libEGL.dll -------------------------------------------------------------------------------- /Examples/BLT/FPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/FPS.cpp -------------------------------------------------------------------------------- /Examples/BLT/FPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/FPS.h -------------------------------------------------------------------------------- /Examples/BLT/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Game.cpp -------------------------------------------------------------------------------- /Examples/BLT/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Game.h -------------------------------------------------------------------------------- /Examples/BLT/GameDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/GameDefines.h -------------------------------------------------------------------------------- /Examples/BLT/GameHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/GameHeader.cpp -------------------------------------------------------------------------------- /Examples/BLT/GameResources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/GameResources.cpp -------------------------------------------------------------------------------- /Examples/BLT/GameResources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/GameResources.h -------------------------------------------------------------------------------- /Examples/BLT/Icon/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Icon/Icon.ico -------------------------------------------------------------------------------- /Examples/BLT/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/License.txt -------------------------------------------------------------------------------- /Examples/BLT/NaCl.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/NaCl.filters -------------------------------------------------------------------------------- /Examples/BLT/NaCl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/NaCl.sln -------------------------------------------------------------------------------- /Examples/BLT/NaCl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/NaCl.vcxproj -------------------------------------------------------------------------------- /Examples/BLT/NaCl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/NaCl.vcxproj.filters -------------------------------------------------------------------------------- /Examples/BLT/NaCl.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/NaCl.vcxproj.user -------------------------------------------------------------------------------- /Examples/BLT/PNaCl/BLT.nmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/PNaCl/BLT.nmf -------------------------------------------------------------------------------- /Examples/BLT/PlayerSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/PlayerSprite.cpp -------------------------------------------------------------------------------- /Examples/BLT/PlayerSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/PlayerSprite.h -------------------------------------------------------------------------------- /Examples/BLT/Resources/Ant.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Resources/Ant.pickle -------------------------------------------------------------------------------- /Examples/BLT/Resources/Bee.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Resources/Bee.pickle -------------------------------------------------------------------------------- /Examples/BLT/Resources/Bug.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Resources/Bug.pickle -------------------------------------------------------------------------------- /Examples/BLT/Resources/Expire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Resources/Expire.png -------------------------------------------------------------------------------- /Examples/BLT/Resources/Map.fmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Resources/Map.fmp -------------------------------------------------------------------------------- /Examples/BLT/Resources/Player.nanim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Resources/Player.nanim -------------------------------------------------------------------------------- /Examples/BLT/Resources/Shot.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Resources/Shot.pickle -------------------------------------------------------------------------------- /Examples/BLT/Resources/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/Resources/mk.bat -------------------------------------------------------------------------------- /Examples/BLT/ScoreBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/ScoreBar.cpp -------------------------------------------------------------------------------- /Examples/BLT/ScoreBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/ScoreBar.h -------------------------------------------------------------------------------- /Examples/BLT/assets/Fonts/Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Fonts/Font.png -------------------------------------------------------------------------------- /Examples/BLT/assets/Fonts/Font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Fonts/Font.xml -------------------------------------------------------------------------------- /Examples/BLT/assets/Maps/Map.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Maps/Map.map -------------------------------------------------------------------------------- /Examples/BLT/assets/Maps/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Maps/Map.png -------------------------------------------------------------------------------- /Examples/BLT/assets/Maps/Map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Maps/Map.xml -------------------------------------------------------------------------------- /Examples/BLT/assets/SoundEvents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/SoundEvents.xml -------------------------------------------------------------------------------- /Examples/BLT/assets/Sprites/Ant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Sprites/Ant.png -------------------------------------------------------------------------------- /Examples/BLT/assets/Sprites/Ant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Sprites/Ant.xml -------------------------------------------------------------------------------- /Examples/BLT/assets/Sprites/Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Sprites/Bee.png -------------------------------------------------------------------------------- /Examples/BLT/assets/Sprites/Bee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Sprites/Bee.xml -------------------------------------------------------------------------------- /Examples/BLT/assets/Sprites/Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Sprites/Bug.png -------------------------------------------------------------------------------- /Examples/BLT/assets/Sprites/Bug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Sprites/Bug.xml -------------------------------------------------------------------------------- /Examples/BLT/assets/Sprites/Shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Sprites/Shot.png -------------------------------------------------------------------------------- /Examples/BLT/assets/Sprites/Shot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/assets/Sprites/Shot.xml -------------------------------------------------------------------------------- /Examples/BLT/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/build.xml -------------------------------------------------------------------------------- /Examples/BLT/data/Fonts/Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Fonts/Font.png -------------------------------------------------------------------------------- /Examples/BLT/data/Fonts/Font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Fonts/Font.xml -------------------------------------------------------------------------------- /Examples/BLT/data/Maps/Map.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Maps/Map.map -------------------------------------------------------------------------------- /Examples/BLT/data/Maps/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Maps/Map.png -------------------------------------------------------------------------------- /Examples/BLT/data/Maps/Map.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Maps/Map.xml -------------------------------------------------------------------------------- /Examples/BLT/data/SoundEvents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/SoundEvents.xml -------------------------------------------------------------------------------- /Examples/BLT/data/Sounds/explode.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Sounds/explode.wav -------------------------------------------------------------------------------- /Examples/BLT/data/Sprites/Ant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Sprites/Ant.png -------------------------------------------------------------------------------- /Examples/BLT/data/Sprites/Ant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Sprites/Ant.xml -------------------------------------------------------------------------------- /Examples/BLT/data/Sprites/Bee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Sprites/Bee.png -------------------------------------------------------------------------------- /Examples/BLT/data/Sprites/Bee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Sprites/Bee.xml -------------------------------------------------------------------------------- /Examples/BLT/data/Sprites/Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Sprites/Bug.png -------------------------------------------------------------------------------- /Examples/BLT/data/Sprites/Bug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Sprites/Bug.xml -------------------------------------------------------------------------------- /Examples/BLT/data/Sprites/Player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Sprites/Player.png -------------------------------------------------------------------------------- /Examples/BLT/data/Sprites/Player.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Sprites/Player.xml -------------------------------------------------------------------------------- /Examples/BLT/data/Sprites/Shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Sprites/Shot.png -------------------------------------------------------------------------------- /Examples/BLT/data/Sprites/Shot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/Sprites/Shot.xml -------------------------------------------------------------------------------- /Examples/BLT/data/app.config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/app.config.txt -------------------------------------------------------------------------------- /Examples/BLT/data/app.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/app.icf -------------------------------------------------------------------------------- /Examples/BLT/data/development.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/data/development.icf -------------------------------------------------------------------------------- /Examples/BLT/debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/debug.bat -------------------------------------------------------------------------------- /Examples/BLT/go.bat: -------------------------------------------------------------------------------- 1 | adb shell am start -n com.PixlGames.SuperPlay.BLT/android.app.NativeActivity -------------------------------------------------------------------------------- /Examples/BLT/gs.bat: -------------------------------------------------------------------------------- 1 | adb connect 192.168.1.187 2 | -------------------------------------------------------------------------------- /Examples/BLT/iOS/BLT/BLT-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/iOS/BLT/BLT-Prefix.pch -------------------------------------------------------------------------------- /Examples/BLT/iOS/BLT/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/iOS/BLT/Default.png -------------------------------------------------------------------------------- /Examples/BLT/iOS/BLT/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/iOS/BLT/Info.plist -------------------------------------------------------------------------------- /Examples/BLT/iOS/BLT/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/BLT/iOS/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/iOS/Icon-Small.png -------------------------------------------------------------------------------- /Examples/BLT/iOS/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/iOS/Icon.png -------------------------------------------------------------------------------- /Examples/BLT/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/install.bat -------------------------------------------------------------------------------- /Examples/BLT/jni/NativeActivity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/jni/NativeActivity.c -------------------------------------------------------------------------------- /Examples/BLT/libs/armeabi/libbass.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/libs/armeabi/libbass.so -------------------------------------------------------------------------------- /Examples/BLT/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/local.properties -------------------------------------------------------------------------------- /Examples/BLT/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/makefile -------------------------------------------------------------------------------- /Examples/BLT/makefile.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/makefile.pi -------------------------------------------------------------------------------- /Examples/BLT/nbproject/private/CodeAssistancePathMapper.properties: -------------------------------------------------------------------------------- 1 | # Automatic path mapper. CRC = 1 2 | -------------------------------------------------------------------------------- /Examples/BLT/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/nbproject/project.xml -------------------------------------------------------------------------------- /Examples/BLT/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/proguard-project.txt -------------------------------------------------------------------------------- /Examples/BLT/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/proguard.cfg -------------------------------------------------------------------------------- /Examples/BLT/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/project.properties -------------------------------------------------------------------------------- /Examples/BLT/project_BLT/mkb-windows.txt: -------------------------------------------------------------------------------- 1 | VC10;build_blt_vc10; 2 | -------------------------------------------------------------------------------- /Examples/BLT/project_BLT/project.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/project_BLT/project.ini -------------------------------------------------------------------------------- /Examples/BLT/release.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/release.keystore -------------------------------------------------------------------------------- /Examples/BLT/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/res/drawable/icon.png -------------------------------------------------------------------------------- /Examples/BLT/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/res/values/strings.xml -------------------------------------------------------------------------------- /Examples/BLT/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/resource.h -------------------------------------------------------------------------------- /Examples/BLT/secure_properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/BLT/secure_properties.xml -------------------------------------------------------------------------------- /Examples/HDMA/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/Application.rc -------------------------------------------------------------------------------- /Examples/HDMA/Environment/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/Environment/libEGL.dll -------------------------------------------------------------------------------- /Examples/HDMA/FPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/FPS.cpp -------------------------------------------------------------------------------- /Examples/HDMA/FPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/FPS.h -------------------------------------------------------------------------------- /Examples/HDMA/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/Game.cpp -------------------------------------------------------------------------------- /Examples/HDMA/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/Game.h -------------------------------------------------------------------------------- /Examples/HDMA/GameDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/GameDefines.h -------------------------------------------------------------------------------- /Examples/HDMA/GameHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/GameHeader.cpp -------------------------------------------------------------------------------- /Examples/HDMA/HDMA.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/HDMA.mk -------------------------------------------------------------------------------- /Examples/HDMA/HDMA.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/HDMA.project -------------------------------------------------------------------------------- /Examples/HDMA/HDMA.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/HDMA.vcxproj -------------------------------------------------------------------------------- /Examples/HDMA/HDMA.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/HDMA.vcxproj.filters -------------------------------------------------------------------------------- /Examples/HDMA/HDMA.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/HDMA.vcxproj.user -------------------------------------------------------------------------------- /Examples/HDMA/HDMA2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/HDMA2012.vcxproj -------------------------------------------------------------------------------- /Examples/HDMA/HDMA2012.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/HDMA2012.vcxproj.user -------------------------------------------------------------------------------- /Examples/HDMA/HDMA2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/HDMA2013.vcxproj -------------------------------------------------------------------------------- /Examples/HDMA/HDMA2013.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/HDMA2013.vcxproj.user -------------------------------------------------------------------------------- /Examples/HDMA/Icon/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/Icon/Icon.ico -------------------------------------------------------------------------------- /Examples/HDMA/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/License.txt -------------------------------------------------------------------------------- /Examples/HDMA/Resources/Expire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/Resources/Expire.png -------------------------------------------------------------------------------- /Examples/HDMA/Resources/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/Resources/mk.bat -------------------------------------------------------------------------------- /Examples/HDMA/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/makefile -------------------------------------------------------------------------------- /Examples/HDMA/makefile.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/makefile.pi -------------------------------------------------------------------------------- /Examples/HDMA/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/nbproject/project.xml -------------------------------------------------------------------------------- /Examples/HDMA/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/HDMA/resource.h -------------------------------------------------------------------------------- /Examples/Joypad/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Android.mk -------------------------------------------------------------------------------- /Examples/Joypad/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/AndroidManifest.xml -------------------------------------------------------------------------------- /Examples/Joypad/Application.mk: -------------------------------------------------------------------------------- 1 | # Generated by VisualGDB 2 | 3 | APP_ABI := all 4 | -------------------------------------------------------------------------------- /Examples/Joypad/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Application.rc -------------------------------------------------------------------------------- /Examples/Joypad/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Game.cpp -------------------------------------------------------------------------------- /Examples/Joypad/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Game.h -------------------------------------------------------------------------------- /Examples/Joypad/GameDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/GameDefines.h -------------------------------------------------------------------------------- /Examples/Joypad/GameHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/GameHeader.cpp -------------------------------------------------------------------------------- /Examples/Joypad/Icon/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Icon/Icon.ico -------------------------------------------------------------------------------- /Examples/Joypad/Joypad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Joypad.vcxproj -------------------------------------------------------------------------------- /Examples/Joypad/Joypad.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Joypad.vcxproj.user -------------------------------------------------------------------------------- /Examples/Joypad/Joypad2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Joypad2012.vcxproj -------------------------------------------------------------------------------- /Examples/Joypad/Joypad2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Joypad2013.vcxproj -------------------------------------------------------------------------------- /Examples/Joypad/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/License.txt -------------------------------------------------------------------------------- /Examples/Joypad/Resources/Dot.ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Resources/Dot.ase -------------------------------------------------------------------------------- /Examples/Joypad/Resources/Expire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Resources/Expire.png -------------------------------------------------------------------------------- /Examples/Joypad/Resources/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/Resources/mk.bat -------------------------------------------------------------------------------- /Examples/Joypad/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/build.xml -------------------------------------------------------------------------------- /Examples/Joypad/go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/go.bat -------------------------------------------------------------------------------- /Examples/Joypad/gs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/gs.bat -------------------------------------------------------------------------------- /Examples/Joypad/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/install.bat -------------------------------------------------------------------------------- /Examples/Joypad/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/local.properties -------------------------------------------------------------------------------- /Examples/Joypad/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/makefile -------------------------------------------------------------------------------- /Examples/Joypad/makefile.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/makefile.pi -------------------------------------------------------------------------------- /Examples/Joypad/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/proguard-project.txt -------------------------------------------------------------------------------- /Examples/Joypad/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/proguard.cfg -------------------------------------------------------------------------------- /Examples/Joypad/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/project.properties -------------------------------------------------------------------------------- /Examples/Joypad/release.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/release.keystore -------------------------------------------------------------------------------- /Examples/Joypad/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Joypad/resource.h -------------------------------------------------------------------------------- /Examples/Mosaic/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/Application.rc -------------------------------------------------------------------------------- /Examples/Mosaic/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/Game.cpp -------------------------------------------------------------------------------- /Examples/Mosaic/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/Game.h -------------------------------------------------------------------------------- /Examples/Mosaic/GameDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/GameDefines.h -------------------------------------------------------------------------------- /Examples/Mosaic/GameHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/GameHeader.cpp -------------------------------------------------------------------------------- /Examples/Mosaic/Icon/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/Icon/Icon.ico -------------------------------------------------------------------------------- /Examples/Mosaic/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/License.txt -------------------------------------------------------------------------------- /Examples/Mosaic/Mosaic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/Mosaic.vcxproj -------------------------------------------------------------------------------- /Examples/Mosaic/Mosaic.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/Mosaic.vcxproj.user -------------------------------------------------------------------------------- /Examples/Mosaic/Mosaic2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/Mosaic2012.vcxproj -------------------------------------------------------------------------------- /Examples/Mosaic/Mosaic2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/Mosaic2013.vcxproj -------------------------------------------------------------------------------- /Examples/Mosaic/Resources/Scroll.fmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/Resources/Scroll.fmp -------------------------------------------------------------------------------- /Examples/Mosaic/Resources/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/Resources/mk.bat -------------------------------------------------------------------------------- /Examples/Mosaic/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Mosaic/resource.h -------------------------------------------------------------------------------- /Examples/SRAM/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/Application.rc -------------------------------------------------------------------------------- /Examples/SRAM/Environment/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/Environment/libEGL.dll -------------------------------------------------------------------------------- /Examples/SRAM/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/Game.cpp -------------------------------------------------------------------------------- /Examples/SRAM/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/Game.h -------------------------------------------------------------------------------- /Examples/SRAM/GameDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/GameDefines.h -------------------------------------------------------------------------------- /Examples/SRAM/GameHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/GameHeader.cpp -------------------------------------------------------------------------------- /Examples/SRAM/Icon/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/Icon/Icon.ico -------------------------------------------------------------------------------- /Examples/SRAM/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/License.txt -------------------------------------------------------------------------------- /Examples/SRAM/Resources/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/Resources/mk.bat -------------------------------------------------------------------------------- /Examples/SRAM/SRAM.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/SRAM.vcxproj -------------------------------------------------------------------------------- /Examples/SRAM/SRAM.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/SRAM.vcxproj.filters -------------------------------------------------------------------------------- /Examples/SRAM/SRAM.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/SRAM.vcxproj.user -------------------------------------------------------------------------------- /Examples/SRAM/SRAM/SRAM1.sram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/SRAM/SRAM1.sram -------------------------------------------------------------------------------- /Examples/SRAM/SRAM/SRAM2.sram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/SRAM/SRAM2.sram -------------------------------------------------------------------------------- /Examples/SRAM/SRAM/SRAM3.sram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/SRAM/SRAM3.sram -------------------------------------------------------------------------------- /Examples/SRAM/SRAM2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/SRAM2012.vcxproj -------------------------------------------------------------------------------- /Examples/SRAM/SRAM2012.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/SRAM2012.vcxproj.user -------------------------------------------------------------------------------- /Examples/SRAM/SRAM2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/SRAM2013.vcxproj -------------------------------------------------------------------------------- /Examples/SRAM/SRAM2013.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/SRAM2013.vcxproj.user -------------------------------------------------------------------------------- /Examples/SRAM/SRAMStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/SRAMStructure.h -------------------------------------------------------------------------------- /Examples/SRAM/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/SRAM/resource.h -------------------------------------------------------------------------------- /Examples/Sprites/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/Application.rc -------------------------------------------------------------------------------- /Examples/Sprites/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/Game.cpp -------------------------------------------------------------------------------- /Examples/Sprites/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/Game.h -------------------------------------------------------------------------------- /Examples/Sprites/GameDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/GameDefines.h -------------------------------------------------------------------------------- /Examples/Sprites/GameHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/GameHeader.cpp -------------------------------------------------------------------------------- /Examples/Sprites/Icon/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/Icon/Icon.ico -------------------------------------------------------------------------------- /Examples/Sprites/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/License.txt -------------------------------------------------------------------------------- /Examples/Sprites/Resources/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/Resources/mk.bat -------------------------------------------------------------------------------- /Examples/Sprites/Sprites.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/Sprites.vcxproj -------------------------------------------------------------------------------- /Examples/Sprites/Sprites2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/Sprites2012.vcxproj -------------------------------------------------------------------------------- /Examples/Sprites/Sprites2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/Sprites2013.vcxproj -------------------------------------------------------------------------------- /Examples/Sprites/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/makefile -------------------------------------------------------------------------------- /Examples/Sprites/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Sprites/resource.h -------------------------------------------------------------------------------- /Examples/Starter/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/Application.rc -------------------------------------------------------------------------------- /Examples/Starter/Emscripten.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/Emscripten.sln -------------------------------------------------------------------------------- /Examples/Starter/Emscripten.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/Emscripten.vcxproj -------------------------------------------------------------------------------- /Examples/Starter/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/Game.cpp -------------------------------------------------------------------------------- /Examples/Starter/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/Game.h -------------------------------------------------------------------------------- /Examples/Starter/GameDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/GameDefines.h -------------------------------------------------------------------------------- /Examples/Starter/GameHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/GameHeader.cpp -------------------------------------------------------------------------------- /Examples/Starter/Icon/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/Icon/Icon.ico -------------------------------------------------------------------------------- /Examples/Starter/Starter.mkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/Starter.mkb -------------------------------------------------------------------------------- /Examples/Starter/Starter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/Starter.vcxproj -------------------------------------------------------------------------------- /Examples/Starter/Starter2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/Starter2012.vcxproj -------------------------------------------------------------------------------- /Examples/Starter/Starter2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/Starter2013.vcxproj -------------------------------------------------------------------------------- /Examples/Starter/data/app.config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/data/app.config.txt -------------------------------------------------------------------------------- /Examples/Starter/data/app.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/data/app.icf -------------------------------------------------------------------------------- /Examples/Starter/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/makefile -------------------------------------------------------------------------------- /Examples/Starter/makefile.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/makefile.pi -------------------------------------------------------------------------------- /Examples/Starter/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Starter/resource.h -------------------------------------------------------------------------------- /Examples/Text/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Android.mk -------------------------------------------------------------------------------- /Examples/Text/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/AndroidManifest.xml -------------------------------------------------------------------------------- /Examples/Text/Application.mk: -------------------------------------------------------------------------------- 1 | # Generated by VisualGDB 2 | 3 | APP_ABI := all 4 | -------------------------------------------------------------------------------- /Examples/Text/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Application.rc -------------------------------------------------------------------------------- /Examples/Text/Emscripten.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Emscripten.sln -------------------------------------------------------------------------------- /Examples/Text/Emscripten.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Emscripten.vcxproj -------------------------------------------------------------------------------- /Examples/Text/Environment/libEGL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Environment/libEGL.dll -------------------------------------------------------------------------------- /Examples/Text/FPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/FPS.cpp -------------------------------------------------------------------------------- /Examples/Text/FPS.cpp.PVS-Studio.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/FPS.cpp.PVS-Studio.cfg -------------------------------------------------------------------------------- /Examples/Text/FPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/FPS.h -------------------------------------------------------------------------------- /Examples/Text/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Game.cpp -------------------------------------------------------------------------------- /Examples/Text/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Game.h -------------------------------------------------------------------------------- /Examples/Text/GameDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/GameDefines.h -------------------------------------------------------------------------------- /Examples/Text/GameHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/GameHeader.cpp -------------------------------------------------------------------------------- /Examples/Text/Icon/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Icon/Icon.ico -------------------------------------------------------------------------------- /Examples/Text/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/License.txt -------------------------------------------------------------------------------- /Examples/Text/Resources/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Resources/mk.bat -------------------------------------------------------------------------------- /Examples/Text/Text.mkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Text.mkb -------------------------------------------------------------------------------- /Examples/Text/Text.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Text.vcxproj -------------------------------------------------------------------------------- /Examples/Text/Text.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Text.vcxproj.filters -------------------------------------------------------------------------------- /Examples/Text/Text.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Text.vcxproj.user -------------------------------------------------------------------------------- /Examples/Text/Text/Text/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/Text/Text/Text/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Text/Text/main.m -------------------------------------------------------------------------------- /Examples/Text/Text2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Text2012.vcxproj -------------------------------------------------------------------------------- /Examples/Text/Text2012.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Text2012.vcxproj.user -------------------------------------------------------------------------------- /Examples/Text/Text2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Text2013.vcxproj -------------------------------------------------------------------------------- /Examples/Text/Text2013.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/Text2013.vcxproj.user -------------------------------------------------------------------------------- /Examples/Text/TextAndroid.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/TextAndroid.vcxproj -------------------------------------------------------------------------------- /Examples/Text/assets/Fonts/Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/assets/Fonts/Font.png -------------------------------------------------------------------------------- /Examples/Text/assets/Fonts/Font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/assets/Fonts/Font.xml -------------------------------------------------------------------------------- /Examples/Text/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/build.xml -------------------------------------------------------------------------------- /Examples/Text/data/Fonts/Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/data/Fonts/Font.png -------------------------------------------------------------------------------- /Examples/Text/data/Fonts/Font.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/data/Fonts/Font.xml -------------------------------------------------------------------------------- /Examples/Text/data/app.config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/data/app.config.txt -------------------------------------------------------------------------------- /Examples/Text/data/app.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/data/app.icf -------------------------------------------------------------------------------- /Examples/Text/data/development.icf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/data/development.icf -------------------------------------------------------------------------------- /Examples/Text/go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/go.bat -------------------------------------------------------------------------------- /Examples/Text/gs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/gs.bat -------------------------------------------------------------------------------- /Examples/Text/iOS/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/iOS/Icon-Small.png -------------------------------------------------------------------------------- /Examples/Text/iOS/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/iOS/Icon.png -------------------------------------------------------------------------------- /Examples/Text/iOS/Text/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/iOS/Text/Default.png -------------------------------------------------------------------------------- /Examples/Text/iOS/Text/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/iOS/Text/Info.plist -------------------------------------------------------------------------------- /Examples/Text/iOS/Text/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/Text/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/install.bat -------------------------------------------------------------------------------- /Examples/Text/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/local.properties -------------------------------------------------------------------------------- /Examples/Text/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/makefile -------------------------------------------------------------------------------- /Examples/Text/makefile.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/makefile.pi -------------------------------------------------------------------------------- /Examples/Text/nbproject/private/CodeAssistancePathMapper.properties: -------------------------------------------------------------------------------- 1 | # Automatic path mapper. CRC = 1 2 | -------------------------------------------------------------------------------- /Examples/Text/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/nbproject/project.xml -------------------------------------------------------------------------------- /Examples/Text/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/proguard-project.txt -------------------------------------------------------------------------------- /Examples/Text/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/proguard.cfg -------------------------------------------------------------------------------- /Examples/Text/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/project.properties -------------------------------------------------------------------------------- /Examples/Text/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/res/drawable/icon.png -------------------------------------------------------------------------------- /Examples/Text/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/res/values/strings.xml -------------------------------------------------------------------------------- /Examples/Text/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/resource.h -------------------------------------------------------------------------------- /Examples/Text/secure_properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Text/secure_properties.xml -------------------------------------------------------------------------------- /Examples/Tilemap/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/Application.rc -------------------------------------------------------------------------------- /Examples/Tilemap/Environment/Temp.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/Tilemap/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/Game.cpp -------------------------------------------------------------------------------- /Examples/Tilemap/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/Game.h -------------------------------------------------------------------------------- /Examples/Tilemap/GameDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/GameDefines.h -------------------------------------------------------------------------------- /Examples/Tilemap/GameHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/GameHeader.cpp -------------------------------------------------------------------------------- /Examples/Tilemap/Icon/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/Icon/Icon.ico -------------------------------------------------------------------------------- /Examples/Tilemap/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/License.txt -------------------------------------------------------------------------------- /Examples/Tilemap/Resources/mk.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/Resources/mk.bat -------------------------------------------------------------------------------- /Examples/Tilemap/Tilemap.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/Tilemap.mk -------------------------------------------------------------------------------- /Examples/Tilemap/Tilemap.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/Tilemap.project -------------------------------------------------------------------------------- /Examples/Tilemap/Tilemap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/Tilemap.vcxproj -------------------------------------------------------------------------------- /Examples/Tilemap/Tilemap2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/Tilemap2012.vcxproj -------------------------------------------------------------------------------- /Examples/Tilemap/Tilemap2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/Tilemap2013.vcxproj -------------------------------------------------------------------------------- /Examples/Tilemap/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/makefile -------------------------------------------------------------------------------- /Examples/Tilemap/makefile.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/makefile.pi -------------------------------------------------------------------------------- /Examples/Tilemap/nbproject/private/CodeAssistancePathMapper.properties: -------------------------------------------------------------------------------- 1 | # Automatic path mapper. CRC = 1 2 | -------------------------------------------------------------------------------- /Examples/Tilemap/nbproject/private/Default.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Examples/Tilemap/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Examples/Tilemap/resource.h -------------------------------------------------------------------------------- /ExpansionLib/Expansion.mkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/Expansion.mkb -------------------------------------------------------------------------------- /ExpansionLib/Expansion2010.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/Expansion2010.vcxproj -------------------------------------------------------------------------------- /ExpansionLib/Expansion2012.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/Expansion2012.vcxproj -------------------------------------------------------------------------------- /ExpansionLib/Expansion2013.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/Expansion2013.vcxproj -------------------------------------------------------------------------------- /ExpansionLib/ExpansionAndroid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/ExpansionAndroid.sln -------------------------------------------------------------------------------- /ExpansionLib/ExpansionAndroid.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/ExpansionAndroid.suo -------------------------------------------------------------------------------- /ExpansionLib/ExpansionEmscripten.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/ExpansionEmscripten.sln -------------------------------------------------------------------------------- /ExpansionLib/ExpansionLib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/ExpansionLib.mk -------------------------------------------------------------------------------- /ExpansionLib/ExpansionLib.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/ExpansionLib.project -------------------------------------------------------------------------------- /ExpansionLib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/LICENSE -------------------------------------------------------------------------------- /ExpansionLib/MapLoader/MapLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/MapLoader/MapLoader.cpp -------------------------------------------------------------------------------- /ExpansionLib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/makefile -------------------------------------------------------------------------------- /ExpansionLib/nbproject/private/CodeAssistancePathMapper.properties: -------------------------------------------------------------------------------- 1 | # Automatic path mapper. CRC = 1 2 | -------------------------------------------------------------------------------- /ExpansionLib/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/ExpansionLib/nbproject/project.xml -------------------------------------------------------------------------------- /External/Angle/include/EGL/egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/Angle/include/EGL/egl.h -------------------------------------------------------------------------------- /External/Angle/include/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/Angle/include/EGL/eglext.h -------------------------------------------------------------------------------- /External/Angle/include/GLES2/gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/Angle/include/GLES2/gl2.h -------------------------------------------------------------------------------- /External/Angle/include/GLES3/gl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/Angle/include/GLES3/gl3.h -------------------------------------------------------------------------------- /External/BASS/Include/bass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/BASS/Include/bass.h -------------------------------------------------------------------------------- /External/BASS/Lib/ARM/libbass.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/BASS/Lib/ARM/libbass.so -------------------------------------------------------------------------------- /External/BASS/Lib/Linux/libbass.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/BASS/Lib/Linux/libbass.so -------------------------------------------------------------------------------- /External/BASS/Lib/iOS/libbass.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/BASS/Lib/iOS/libbass.a -------------------------------------------------------------------------------- /External/BASS/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/BASS/Readme.txt -------------------------------------------------------------------------------- /External/DuiLib/Include/UIlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/DuiLib/Include/UIlib.cpp -------------------------------------------------------------------------------- /External/DuiLib/Include/UIlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/DuiLib/Include/UIlib.h -------------------------------------------------------------------------------- /External/DuiLib/Lib/DuiLIb_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/DuiLib/Lib/DuiLIb_d.lib -------------------------------------------------------------------------------- /External/DuiLib/Lib/DuiLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/DuiLib/Lib/DuiLib.lib -------------------------------------------------------------------------------- /External/DuiLib/Readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains DuiLib, for Win32: 2 | https://code.google.com/p/duilib/ 3 | -------------------------------------------------------------------------------- /External/GWEN/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/GWEN/Readme.txt -------------------------------------------------------------------------------- /External/GWEN/Source Code/Util/ImportExport/DesignerFormat.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /External/GWEN/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/GWEN/include/GL/glew.h -------------------------------------------------------------------------------- /External/GWEN/include/Gwen/Anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/GWEN/include/Gwen/Anim.h -------------------------------------------------------------------------------- /External/GWEN/include/Gwen/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/GWEN/include/Gwen/Font.h -------------------------------------------------------------------------------- /External/GWEN/include/Gwen/Gwen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/GWEN/include/Gwen/Gwen.h -------------------------------------------------------------------------------- /External/GWEN/include/Gwen/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/GWEN/include/Gwen/Hook.h -------------------------------------------------------------------------------- /External/GWEN/include/Gwen/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/GWEN/include/Gwen/Skin.h -------------------------------------------------------------------------------- /External/Hekkus/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/Hekkus/Readme.txt -------------------------------------------------------------------------------- /External/SDL2-2.0.1/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/SDL2-2.0.1/Readme.txt -------------------------------------------------------------------------------- /External/SDL2-2.0.1/include/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/External/SDL2-2.0.1/include/SDL.h -------------------------------------------------------------------------------- /Include/AssertLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/AssertLog.h -------------------------------------------------------------------------------- /Include/BG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/BG.h -------------------------------------------------------------------------------- /Include/BGVRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/BGVRAM.h -------------------------------------------------------------------------------- /Include/DMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/DMA.h -------------------------------------------------------------------------------- /Include/Expansion/AudioLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Expansion/AudioLoader.h -------------------------------------------------------------------------------- /Include/Expansion/FontLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Expansion/FontLoader.h -------------------------------------------------------------------------------- /Include/Expansion/HDMALoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Expansion/HDMALoader.h -------------------------------------------------------------------------------- /Include/Expansion/MapLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Expansion/MapLoader.h -------------------------------------------------------------------------------- /Include/Expansion/SpriteLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Expansion/SpriteLoader.h -------------------------------------------------------------------------------- /Include/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/File.h -------------------------------------------------------------------------------- /Include/GameHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/GameHeader.h -------------------------------------------------------------------------------- /Include/HDMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/HDMA.h -------------------------------------------------------------------------------- /Include/Hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Hardware.h -------------------------------------------------------------------------------- /Include/HardwareDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/HardwareDefines.h -------------------------------------------------------------------------------- /Include/IGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/IGame.h -------------------------------------------------------------------------------- /Include/IVRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/IVRAM.h -------------------------------------------------------------------------------- /Include/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Image.h -------------------------------------------------------------------------------- /Include/Joypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Joypad.h -------------------------------------------------------------------------------- /Include/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Log.h -------------------------------------------------------------------------------- /Include/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Macros.h -------------------------------------------------------------------------------- /Include/OAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/OAM.h -------------------------------------------------------------------------------- /Include/Obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Obj.h -------------------------------------------------------------------------------- /Include/ObjVRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/ObjVRAM.h -------------------------------------------------------------------------------- /Include/PathDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/PathDefines.h -------------------------------------------------------------------------------- /Include/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Point.h -------------------------------------------------------------------------------- /Include/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Rect.h -------------------------------------------------------------------------------- /Include/RenderParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/RenderParams.h -------------------------------------------------------------------------------- /Include/ResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/ResourceManager.h -------------------------------------------------------------------------------- /Include/SPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/SPC.h -------------------------------------------------------------------------------- /Include/SRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/SRAM.h -------------------------------------------------------------------------------- /Include/STLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/STLMacros.h -------------------------------------------------------------------------------- /Include/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Text.h -------------------------------------------------------------------------------- /Include/TinySTL/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/allocator.h -------------------------------------------------------------------------------- /Include/TinySTL/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/buffer.h -------------------------------------------------------------------------------- /Include/TinySTL/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/hash.h -------------------------------------------------------------------------------- /Include/TinySTL/hash_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/hash_base.h -------------------------------------------------------------------------------- /Include/TinySTL/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/new.h -------------------------------------------------------------------------------- /Include/TinySTL/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/stddef.h -------------------------------------------------------------------------------- /Include/TinySTL/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/stdint.h -------------------------------------------------------------------------------- /Include/TinySTL/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/string.h -------------------------------------------------------------------------------- /Include/TinySTL/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/traits.h -------------------------------------------------------------------------------- /Include/TinySTL/unordered_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/unordered_map.h -------------------------------------------------------------------------------- /Include/TinySTL/unordered_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/unordered_set.h -------------------------------------------------------------------------------- /Include/TinySTL/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinySTL/vector.h -------------------------------------------------------------------------------- /Include/TinyXML2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/TinyXML2/tinyxml2.h -------------------------------------------------------------------------------- /Include/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Include/Types.h -------------------------------------------------------------------------------- /JoypadConfig/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/JoypadConfig/License.txt -------------------------------------------------------------------------------- /JoypadConfig/UI/ButtonClick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/JoypadConfig/UI/ButtonClick.png -------------------------------------------------------------------------------- /JoypadConfig/UI/ButtonHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/JoypadConfig/UI/ButtonHover.png -------------------------------------------------------------------------------- /JoypadConfig/UI/ButtonNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/JoypadConfig/UI/ButtonNormal.png -------------------------------------------------------------------------------- /JoypadConfig/UI/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/JoypadConfig/UI/Icon.png -------------------------------------------------------------------------------- /JoypadConfig/UI/JoypadConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/JoypadConfig/UI/JoypadConfig.xml -------------------------------------------------------------------------------- /JoypadConfig/UI/ListHeader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/JoypadConfig/UI/ListHeader.png -------------------------------------------------------------------------------- /JoypadConfig/UI/Window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/JoypadConfig/UI/Window.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/Android/BASS/libSound.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/BASS/libSound.a -------------------------------------------------------------------------------- /Lib/Android/BASS/libSound_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/BASS/libSound_d.a -------------------------------------------------------------------------------- /Lib/Android/Hekkus/libSound.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/Hekkus/libSound.a -------------------------------------------------------------------------------- /Lib/Android/Hekkus/libSound_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/Hekkus/libSound_d.a -------------------------------------------------------------------------------- /Lib/Android/libDisplay.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/libDisplay.a -------------------------------------------------------------------------------- /Lib/Android/libDisplay_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/libDisplay_d.a -------------------------------------------------------------------------------- /Lib/Android/libExpansion.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/libExpansion.a -------------------------------------------------------------------------------- /Lib/Android/libExpansion_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/libExpansion_d.a -------------------------------------------------------------------------------- /Lib/Android/libPlatform.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/libPlatform.a -------------------------------------------------------------------------------- /Lib/Android/libPlatform_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/libPlatform_d.a -------------------------------------------------------------------------------- /Lib/Android/libSuperPlay.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/libSuperPlay.a -------------------------------------------------------------------------------- /Lib/Android/libSuperPlay_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Android/libSuperPlay_d.a -------------------------------------------------------------------------------- /Lib/Emscripten/Display.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Emscripten/Display.bc -------------------------------------------------------------------------------- /Lib/Emscripten/Display_d.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Emscripten/Display_d.bc -------------------------------------------------------------------------------- /Lib/Emscripten/Expansion.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Emscripten/Expansion.bc -------------------------------------------------------------------------------- /Lib/Emscripten/Expansion_d.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Emscripten/Expansion_d.bc -------------------------------------------------------------------------------- /Lib/Emscripten/Platform.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Emscripten/Platform.bc -------------------------------------------------------------------------------- /Lib/Emscripten/Platform_d.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Emscripten/Platform_d.bc -------------------------------------------------------------------------------- /Lib/Emscripten/Sound.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Emscripten/Sound.bc -------------------------------------------------------------------------------- /Lib/Emscripten/Sound_d.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Emscripten/Sound_d.bc -------------------------------------------------------------------------------- /Lib/Emscripten/SuperPlay.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Emscripten/SuperPlay.bc -------------------------------------------------------------------------------- /Lib/Emscripten/SuperPlay_d.bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Emscripten/SuperPlay_d.bc -------------------------------------------------------------------------------- /Lib/Marmalade/Hekkus/Sound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/Hekkus/Sound.lib -------------------------------------------------------------------------------- /Lib/Marmalade/Hekkus/Sound_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/Hekkus/Sound_d.lib -------------------------------------------------------------------------------- /Lib/Marmalade/Hekkus/libSound.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/Hekkus/libSound.a -------------------------------------------------------------------------------- /Lib/Marmalade/Hekkus/libSound_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/Hekkus/libSound_d.a -------------------------------------------------------------------------------- /Lib/Marmalade/Platform.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/Platform.lib -------------------------------------------------------------------------------- /Lib/Marmalade/Platform_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/Platform_d.lib -------------------------------------------------------------------------------- /Lib/Marmalade/libDisplay.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/libDisplay.a -------------------------------------------------------------------------------- /Lib/Marmalade/libDisplay_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/libDisplay_d.a -------------------------------------------------------------------------------- /Lib/Marmalade/libExpansion.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/libExpansion.a -------------------------------------------------------------------------------- /Lib/Marmalade/libExpansion_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/libExpansion_d.a -------------------------------------------------------------------------------- /Lib/Marmalade/libPlatform.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/libPlatform.a -------------------------------------------------------------------------------- /Lib/Marmalade/libPlatform_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/libPlatform_d.a -------------------------------------------------------------------------------- /Lib/Marmalade/libSuperPlay.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/libSuperPlay.a -------------------------------------------------------------------------------- /Lib/Marmalade/libSuperPlay_d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/Marmalade/libSuperPlay_d.a -------------------------------------------------------------------------------- /Lib/VS2010/Display.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/Display.lib -------------------------------------------------------------------------------- /Lib/VS2010/DisplayAngle.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/DisplayAngle.lib -------------------------------------------------------------------------------- /Lib/VS2010/DisplayAngle_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/DisplayAngle_d.lib -------------------------------------------------------------------------------- /Lib/VS2010/DisplayGL_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/DisplayGL_d.lib -------------------------------------------------------------------------------- /Lib/VS2010/Display_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/Display_d.lib -------------------------------------------------------------------------------- /Lib/VS2010/Expansion.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/Expansion.lib -------------------------------------------------------------------------------- /Lib/VS2010/Expansion_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/Expansion_d.lib -------------------------------------------------------------------------------- /Lib/VS2010/Hekkus/Sound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/Hekkus/Sound.lib -------------------------------------------------------------------------------- /Lib/VS2010/Hekkus/Sound_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/Hekkus/Sound_d.lib -------------------------------------------------------------------------------- /Lib/VS2010/IrrKlang/Sound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/IrrKlang/Sound.lib -------------------------------------------------------------------------------- /Lib/VS2010/IrrKlang/Sound_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/IrrKlang/Sound_d.lib -------------------------------------------------------------------------------- /Lib/VS2010/Platform.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/Platform.lib -------------------------------------------------------------------------------- /Lib/VS2010/Platform_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/Platform_d.lib -------------------------------------------------------------------------------- /Lib/VS2010/SuperPlay.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/SuperPlay.lib -------------------------------------------------------------------------------- /Lib/VS2010/SuperPlay_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2010/SuperPlay_d.lib -------------------------------------------------------------------------------- /Lib/VS2013/Display_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2013/Display_d.lib -------------------------------------------------------------------------------- /Lib/VS2013/Expansion_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2013/Expansion_d.lib -------------------------------------------------------------------------------- /Lib/VS2013/Platform_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2013/Platform_d.lib -------------------------------------------------------------------------------- /Lib/VS2013/Sound_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2013/Sound_d.lib -------------------------------------------------------------------------------- /Lib/VS2013/SuperPlay_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Lib/VS2013/SuperPlay_d.lib -------------------------------------------------------------------------------- /PlatformLib/Android/Android.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Android.sln -------------------------------------------------------------------------------- /PlatformLib/Android/Android.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Android.suo -------------------------------------------------------------------------------- /PlatformLib/Android/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/File.cpp -------------------------------------------------------------------------------- /PlatformLib/Android/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Input.cpp -------------------------------------------------------------------------------- /PlatformLib/Android/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Input.h -------------------------------------------------------------------------------- /PlatformLib/Android/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Log.cpp -------------------------------------------------------------------------------- /PlatformLib/Android/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Main.cpp -------------------------------------------------------------------------------- /PlatformLib/Android/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Platform.cpp -------------------------------------------------------------------------------- /PlatformLib/Android/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Platform.h -------------------------------------------------------------------------------- /PlatformLib/Android/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Timer.cpp -------------------------------------------------------------------------------- /PlatformLib/Android/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Timer.h -------------------------------------------------------------------------------- /PlatformLib/Android/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Window.cpp -------------------------------------------------------------------------------- /PlatformLib/Android/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/Window.h -------------------------------------------------------------------------------- /PlatformLib/Android/controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Android/controller.h -------------------------------------------------------------------------------- /PlatformLib/Emscripten/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Emscripten/File.cpp -------------------------------------------------------------------------------- /PlatformLib/Emscripten/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Emscripten/Input.cpp -------------------------------------------------------------------------------- /PlatformLib/Emscripten/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Emscripten/Input.h -------------------------------------------------------------------------------- /PlatformLib/Emscripten/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Emscripten/Log.cpp -------------------------------------------------------------------------------- /PlatformLib/Emscripten/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Emscripten/Main.cpp -------------------------------------------------------------------------------- /PlatformLib/Emscripten/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Emscripten/Platform.h -------------------------------------------------------------------------------- /PlatformLib/Emscripten/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Emscripten/Timer.cpp -------------------------------------------------------------------------------- /PlatformLib/Emscripten/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Emscripten/Timer.h -------------------------------------------------------------------------------- /PlatformLib/Emscripten/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Emscripten/Window.cpp -------------------------------------------------------------------------------- /PlatformLib/Emscripten/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Emscripten/Window.h -------------------------------------------------------------------------------- /PlatformLib/Include/IInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Include/IInput.h -------------------------------------------------------------------------------- /PlatformLib/Include/PlatformLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Include/PlatformLib.h -------------------------------------------------------------------------------- /PlatformLib/Include/StoragePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Include/StoragePath.h -------------------------------------------------------------------------------- /PlatformLib/Linux/Archive/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Archive/Timer.h -------------------------------------------------------------------------------- /PlatformLib/Linux/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/File.cpp -------------------------------------------------------------------------------- /PlatformLib/Linux/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Input.cpp -------------------------------------------------------------------------------- /PlatformLib/Linux/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Input.h -------------------------------------------------------------------------------- /PlatformLib/Linux/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Log.cpp -------------------------------------------------------------------------------- /PlatformLib/Linux/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Main.cpp -------------------------------------------------------------------------------- /PlatformLib/Linux/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Platform.cpp -------------------------------------------------------------------------------- /PlatformLib/Linux/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Platform.h -------------------------------------------------------------------------------- /PlatformLib/Linux/Platform.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Platform.mk -------------------------------------------------------------------------------- /PlatformLib/Linux/StoragePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/StoragePath.cpp -------------------------------------------------------------------------------- /PlatformLib/Linux/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Timer.cpp -------------------------------------------------------------------------------- /PlatformLib/Linux/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Timer.h -------------------------------------------------------------------------------- /PlatformLib/Linux/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Window.cpp -------------------------------------------------------------------------------- /PlatformLib/Linux/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/Window.h -------------------------------------------------------------------------------- /PlatformLib/Linux/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Linux/makefile -------------------------------------------------------------------------------- /PlatformLib/MacOSX/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/MacOSX/File.cpp -------------------------------------------------------------------------------- /PlatformLib/MacOSX/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/MacOSX/Input.cpp -------------------------------------------------------------------------------- /PlatformLib/MacOSX/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/MacOSX/Input.h -------------------------------------------------------------------------------- /PlatformLib/MacOSX/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/MacOSX/Log.cpp -------------------------------------------------------------------------------- /PlatformLib/MacOSX/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/MacOSX/Main.cpp -------------------------------------------------------------------------------- /PlatformLib/MacOSX/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/MacOSX/Platform.cpp -------------------------------------------------------------------------------- /PlatformLib/MacOSX/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/MacOSX/Platform.h -------------------------------------------------------------------------------- /PlatformLib/MacOSX/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/MacOSX/Timer.cpp -------------------------------------------------------------------------------- /PlatformLib/MacOSX/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/MacOSX/Timer.h -------------------------------------------------------------------------------- /PlatformLib/MacOSX/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/MacOSX/Window.cpp -------------------------------------------------------------------------------- /PlatformLib/MacOSX/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/MacOSX/Window.h -------------------------------------------------------------------------------- /PlatformLib/Marmalade/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Marmalade/File.cpp -------------------------------------------------------------------------------- /PlatformLib/Marmalade/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Marmalade/Input.cpp -------------------------------------------------------------------------------- /PlatformLib/Marmalade/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Marmalade/Input.h -------------------------------------------------------------------------------- /PlatformLib/Marmalade/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Marmalade/Log.cpp -------------------------------------------------------------------------------- /PlatformLib/Marmalade/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Marmalade/Main.cpp -------------------------------------------------------------------------------- /PlatformLib/Marmalade/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Marmalade/Platform.h -------------------------------------------------------------------------------- /PlatformLib/Marmalade/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Marmalade/Timer.cpp -------------------------------------------------------------------------------- /PlatformLib/Marmalade/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Marmalade/Timer.h -------------------------------------------------------------------------------- /PlatformLib/Marmalade/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Marmalade/Window.cpp -------------------------------------------------------------------------------- /PlatformLib/Marmalade/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Marmalade/Window.h -------------------------------------------------------------------------------- /PlatformLib/NaCl/BaseInstance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/BaseInstance.cpp -------------------------------------------------------------------------------- /PlatformLib/NaCl/BaseInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/BaseInstance.h -------------------------------------------------------------------------------- /PlatformLib/NaCl/BaseModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/BaseModule.cpp -------------------------------------------------------------------------------- /PlatformLib/NaCl/BaseModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/BaseModule.h -------------------------------------------------------------------------------- /PlatformLib/NaCl/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/File.cpp -------------------------------------------------------------------------------- /PlatformLib/NaCl/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Input.cpp -------------------------------------------------------------------------------- /PlatformLib/NaCl/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Input.h -------------------------------------------------------------------------------- /PlatformLib/NaCl/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Log.cpp -------------------------------------------------------------------------------- /PlatformLib/NaCl/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Main.cpp -------------------------------------------------------------------------------- /PlatformLib/NaCl/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Platform.cpp -------------------------------------------------------------------------------- /PlatformLib/NaCl/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Platform.h -------------------------------------------------------------------------------- /PlatformLib/NaCl/Platform.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Platform.sln -------------------------------------------------------------------------------- /PlatformLib/NaCl/Platform.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Platform.vcxproj -------------------------------------------------------------------------------- /PlatformLib/NaCl/SPlayInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/SPlayInstance.h -------------------------------------------------------------------------------- /PlatformLib/NaCl/StoragePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/StoragePath.cpp -------------------------------------------------------------------------------- /PlatformLib/NaCl/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Timer.cpp -------------------------------------------------------------------------------- /PlatformLib/NaCl/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Timer.h -------------------------------------------------------------------------------- /PlatformLib/NaCl/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Window.cpp -------------------------------------------------------------------------------- /PlatformLib/NaCl/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/NaCl/Window.h -------------------------------------------------------------------------------- /PlatformLib/RaspberryPi/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/RaspberryPi/File.cpp -------------------------------------------------------------------------------- /PlatformLib/RaspberryPi/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/RaspberryPi/Input.cpp -------------------------------------------------------------------------------- /PlatformLib/RaspberryPi/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/RaspberryPi/Input.h -------------------------------------------------------------------------------- /PlatformLib/RaspberryPi/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/RaspberryPi/Log.cpp -------------------------------------------------------------------------------- /PlatformLib/RaspberryPi/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/RaspberryPi/Main.cpp -------------------------------------------------------------------------------- /PlatformLib/RaspberryPi/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/RaspberryPi/Timer.cpp -------------------------------------------------------------------------------- /PlatformLib/RaspberryPi/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/RaspberryPi/Timer.h -------------------------------------------------------------------------------- /PlatformLib/RaspberryPi/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/RaspberryPi/Window.h -------------------------------------------------------------------------------- /PlatformLib/RaspberryPi/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/RaspberryPi/makefile -------------------------------------------------------------------------------- /PlatformLib/SDL/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/File.cpp -------------------------------------------------------------------------------- /PlatformLib/SDL/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/Input.cpp -------------------------------------------------------------------------------- /PlatformLib/SDL/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/Input.h -------------------------------------------------------------------------------- /PlatformLib/SDL/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/Log.cpp -------------------------------------------------------------------------------- /PlatformLib/SDL/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/Main.cpp -------------------------------------------------------------------------------- /PlatformLib/SDL/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/Platform.cpp -------------------------------------------------------------------------------- /PlatformLib/SDL/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/Platform.h -------------------------------------------------------------------------------- /PlatformLib/SDL/PlatformDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/PlatformDefines.h -------------------------------------------------------------------------------- /PlatformLib/SDL/StoragePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/StoragePath.cpp -------------------------------------------------------------------------------- /PlatformLib/SDL/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/Timer.cpp -------------------------------------------------------------------------------- /PlatformLib/SDL/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/Timer.h -------------------------------------------------------------------------------- /PlatformLib/SDL/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/Window.cpp -------------------------------------------------------------------------------- /PlatformLib/SDL/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/SDL/Window.h -------------------------------------------------------------------------------- /PlatformLib/Win32/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/File.cpp -------------------------------------------------------------------------------- /PlatformLib/Win32/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/Input.cpp -------------------------------------------------------------------------------- /PlatformLib/Win32/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/Input.h -------------------------------------------------------------------------------- /PlatformLib/Win32/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/Log.cpp -------------------------------------------------------------------------------- /PlatformLib/Win32/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/Main.cpp -------------------------------------------------------------------------------- /PlatformLib/Win32/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/Platform.cpp -------------------------------------------------------------------------------- /PlatformLib/Win32/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/Platform.h -------------------------------------------------------------------------------- /PlatformLib/Win32/StoragePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/StoragePath.cpp -------------------------------------------------------------------------------- /PlatformLib/Win32/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/Timer.cpp -------------------------------------------------------------------------------- /PlatformLib/Win32/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/Timer.h -------------------------------------------------------------------------------- /PlatformLib/Win32/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/Window.cpp -------------------------------------------------------------------------------- /PlatformLib/Win32/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/Win32/Window.h -------------------------------------------------------------------------------- /PlatformLib/iOS/.idea/.name: -------------------------------------------------------------------------------- 1 | MacOSX -------------------------------------------------------------------------------- /PlatformLib/iOS/.idea/MacOSX.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/.idea/MacOSX.iml -------------------------------------------------------------------------------- /PlatformLib/iOS/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/.idea/misc.xml -------------------------------------------------------------------------------- /PlatformLib/iOS/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/.idea/modules.xml -------------------------------------------------------------------------------- /PlatformLib/iOS/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/.idea/vcs.xml -------------------------------------------------------------------------------- /PlatformLib/iOS/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/File.cpp -------------------------------------------------------------------------------- /PlatformLib/iOS/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/Input.cpp -------------------------------------------------------------------------------- /PlatformLib/iOS/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/Input.h -------------------------------------------------------------------------------- /PlatformLib/iOS/Log.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/Log.mm -------------------------------------------------------------------------------- /PlatformLib/iOS/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/Main.cpp -------------------------------------------------------------------------------- /PlatformLib/iOS/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/Platform.cpp -------------------------------------------------------------------------------- /PlatformLib/iOS/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/Platform.h -------------------------------------------------------------------------------- /PlatformLib/iOS/Platform/GLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/Platform/GLView.h -------------------------------------------------------------------------------- /PlatformLib/iOS/Platform/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/Platform/main.m -------------------------------------------------------------------------------- /PlatformLib/iOS/PlatformDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/PlatformDefines.h -------------------------------------------------------------------------------- /PlatformLib/iOS/RenderBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/RenderBuffer.cpp -------------------------------------------------------------------------------- /PlatformLib/iOS/RenderBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/RenderBuffer.h -------------------------------------------------------------------------------- /PlatformLib/iOS/StoragePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/StoragePath.cpp -------------------------------------------------------------------------------- /PlatformLib/iOS/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/Window.cpp -------------------------------------------------------------------------------- /PlatformLib/iOS/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/PlatformLib/iOS/Window.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/README.md -------------------------------------------------------------------------------- /SoundLib/BASS/BASSAndroid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/BASS/BASSAndroid.sln -------------------------------------------------------------------------------- /SoundLib/BASS/BASSAndroid.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/BASS/BASSAndroid.vcxproj -------------------------------------------------------------------------------- /SoundLib/BASS/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/BASS/Sound.cpp -------------------------------------------------------------------------------- /SoundLib/BASS/SoundSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/BASS/SoundSystem.cpp -------------------------------------------------------------------------------- /SoundLib/BASS/SoundSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/BASS/SoundSystem.h -------------------------------------------------------------------------------- /SoundLib/BASS/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/BASS/makefile -------------------------------------------------------------------------------- /SoundLib/Hekkus/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/Hekkus/Sound.cpp -------------------------------------------------------------------------------- /SoundLib/Hekkus/Sound.mkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/Hekkus/Sound.mkb -------------------------------------------------------------------------------- /SoundLib/Hekkus/SoundSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/Hekkus/SoundSystem.cpp -------------------------------------------------------------------------------- /SoundLib/Hekkus/SoundSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/Hekkus/SoundSystem.h -------------------------------------------------------------------------------- /SoundLib/Hekkus/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/Hekkus/makefile -------------------------------------------------------------------------------- /SoundLib/Include/ISoundSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/Include/ISoundSystem.h -------------------------------------------------------------------------------- /SoundLib/Include/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/Include/Sound.h -------------------------------------------------------------------------------- /SoundLib/irrKlang/Sound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/irrKlang/Sound.cpp -------------------------------------------------------------------------------- /SoundLib/irrKlang/Sound.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/irrKlang/Sound.mk -------------------------------------------------------------------------------- /SoundLib/irrKlang/Sound.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/irrKlang/Sound.project -------------------------------------------------------------------------------- /SoundLib/irrKlang/SoundSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/irrKlang/SoundSystem.cpp -------------------------------------------------------------------------------- /SoundLib/irrKlang/SoundSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/irrKlang/SoundSystem.h -------------------------------------------------------------------------------- /SoundLib/irrKlang/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SoundLib/irrKlang/makefile -------------------------------------------------------------------------------- /SuperPlay.batch_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlay.batch_build -------------------------------------------------------------------------------- /SuperPlay.tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlay.tags -------------------------------------------------------------------------------- /SuperPlay.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlay.workspace -------------------------------------------------------------------------------- /SuperPlay.workspace.session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlay.workspace.session -------------------------------------------------------------------------------- /SuperPlay2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlay2010.sln -------------------------------------------------------------------------------- /SuperPlay2012.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlay2012.sln -------------------------------------------------------------------------------- /SuperPlay2013.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlay2013.sln -------------------------------------------------------------------------------- /SuperPlayAndroid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayAndroid.sln -------------------------------------------------------------------------------- /SuperPlayLib/Engine/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Engine/Image.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Engine/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Engine/System.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Engine/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Engine/Utilities.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/BG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/BG.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/BGManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/BGManager.h -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/BGVRAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/BGVRAM.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/CRC32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/CRC32.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/CRC32.h -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/DMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/DMA.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/HDMA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/HDMA.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/Joypad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/Joypad.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/OAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/OAM.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/Obj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/Obj.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/ObjVRAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/ObjVRAM.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/SPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/SPC.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/SRAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/SRAM.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/ShadowOAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/ShadowOAM.h -------------------------------------------------------------------------------- /SuperPlayLib/Hardware/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Hardware/Text.cpp -------------------------------------------------------------------------------- /SuperPlayLib/Include/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Include/System.h -------------------------------------------------------------------------------- /SuperPlayLib/Include/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/Include/Utilities.h -------------------------------------------------------------------------------- /SuperPlayLib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/LICENSE -------------------------------------------------------------------------------- /SuperPlayLib/SuperPlay.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/SuperPlay.mk -------------------------------------------------------------------------------- /SuperPlayLib/SuperPlay.mkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/SuperPlay.mkb -------------------------------------------------------------------------------- /SuperPlayLib/SuperPlay.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/SuperPlay.project -------------------------------------------------------------------------------- /SuperPlayLib/SuperPlayAndroid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/SuperPlayAndroid.sln -------------------------------------------------------------------------------- /SuperPlayLib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlayLib/makefile -------------------------------------------------------------------------------- /SuperPlaySDL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/SuperPlaySDL.sln -------------------------------------------------------------------------------- /Tools/ASEConvert/ASE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/ASEConvert/ASE.cpp -------------------------------------------------------------------------------- /Tools/ASEConvert/ASE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/ASEConvert/ASE.h -------------------------------------------------------------------------------- /Tools/ASEConvert/ASEConvert.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/ASEConvert/ASEConvert.sln -------------------------------------------------------------------------------- /Tools/ASEConvert/ASEStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/ASEConvert/ASEStructs.h -------------------------------------------------------------------------------- /Tools/ASEConvert/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/ASEConvert/Application.rc -------------------------------------------------------------------------------- /Tools/ASEConvert/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/ASEConvert/Main.cpp -------------------------------------------------------------------------------- /Tools/ASEConvert/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/ASEConvert/resource.h -------------------------------------------------------------------------------- /Tools/FontConvert/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/FontConvert/Application.rc -------------------------------------------------------------------------------- /Tools/FontConvert/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/FontConvert/Font.cpp -------------------------------------------------------------------------------- /Tools/FontConvert/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/FontConvert/Font.h -------------------------------------------------------------------------------- /Tools/FontConvert/FontConvert.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/FontConvert/FontConvert.sln -------------------------------------------------------------------------------- /Tools/FontConvert/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/FontConvert/Main.cpp -------------------------------------------------------------------------------- /Tools/FontConvert/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/FontConvert/resource.h -------------------------------------------------------------------------------- /Tools/JoypadConfig/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfig/Application.rc -------------------------------------------------------------------------------- /Tools/JoypadConfig/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfig/Config.cpp -------------------------------------------------------------------------------- /Tools/JoypadConfig/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfig/Config.h -------------------------------------------------------------------------------- /Tools/JoypadConfig/DuiUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfig/DuiUtilities.h -------------------------------------------------------------------------------- /Tools/JoypadConfig/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfig/Input.cpp -------------------------------------------------------------------------------- /Tools/JoypadConfig/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfig/Input.h -------------------------------------------------------------------------------- /Tools/JoypadConfig/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfig/Main.cpp -------------------------------------------------------------------------------- /Tools/JoypadConfig/Skin/Skin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfig/Skin/Skin.cpp -------------------------------------------------------------------------------- /Tools/JoypadConfig/Skin/Skin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfig/Skin/Skin.h -------------------------------------------------------------------------------- /Tools/JoypadConfig/Skin/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfig/Skin/Window.h -------------------------------------------------------------------------------- /Tools/JoypadConfig/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfig/resource.h -------------------------------------------------------------------------------- /Tools/JoypadConfigGWEN/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfigGWEN/Config.cpp -------------------------------------------------------------------------------- /Tools/JoypadConfigGWEN/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfigGWEN/Config.h -------------------------------------------------------------------------------- /Tools/JoypadConfigGWEN/Defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfigGWEN/Defines.h -------------------------------------------------------------------------------- /Tools/JoypadConfigGWEN/DirectX9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfigGWEN/DirectX9.h -------------------------------------------------------------------------------- /Tools/JoypadConfigGWEN/Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfigGWEN/Display.h -------------------------------------------------------------------------------- /Tools/JoypadConfigGWEN/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfigGWEN/Input.cpp -------------------------------------------------------------------------------- /Tools/JoypadConfigGWEN/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfigGWEN/Input.h -------------------------------------------------------------------------------- /Tools/JoypadConfigGWEN/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfigGWEN/Main.cpp -------------------------------------------------------------------------------- /Tools/JoypadConfigGWEN/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/JoypadConfigGWEN/resource.h -------------------------------------------------------------------------------- /Tools/MappyConvert/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/MappyConvert/Application.rc -------------------------------------------------------------------------------- /Tools/MappyConvert/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/MappyConvert/Main.cpp -------------------------------------------------------------------------------- /Tools/MappyConvert/MappyMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/MappyConvert/MappyMap.cpp -------------------------------------------------------------------------------- /Tools/MappyConvert/MappyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/MappyConvert/MappyMap.h -------------------------------------------------------------------------------- /Tools/MappyConvert/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/MappyConvert/resource.h -------------------------------------------------------------------------------- /Tools/NAnimConvert/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/NAnimConvert/Application.rc -------------------------------------------------------------------------------- /Tools/NAnimConvert/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/NAnimConvert/Main.cpp -------------------------------------------------------------------------------- /Tools/NAnimConvert/NAnim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/NAnimConvert/NAnim.cpp -------------------------------------------------------------------------------- /Tools/NAnimConvert/NAnim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/NAnimConvert/NAnim.h -------------------------------------------------------------------------------- /Tools/NAnimConvert/NAnimStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/NAnimConvert/NAnimStructs.h -------------------------------------------------------------------------------- /Tools/NAnimConvert/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/NAnimConvert/resource.h -------------------------------------------------------------------------------- /Tools/PickleConvert/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/PickleConvert/Main.cpp -------------------------------------------------------------------------------- /Tools/PickleConvert/Pickle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/PickleConvert/Pickle.cpp -------------------------------------------------------------------------------- /Tools/PickleConvert/Pickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/PickleConvert/Pickle.h -------------------------------------------------------------------------------- /Tools/PickleConvert/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/PickleConvert/resource.h -------------------------------------------------------------------------------- /Tools/ProMotionConvert/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/ProMotionConvert/Main.cpp -------------------------------------------------------------------------------- /Tools/ProMotionConvert/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/ProMotionConvert/resource.h -------------------------------------------------------------------------------- /Tools/PyxelConvert/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/PyxelConvert/Application.rc -------------------------------------------------------------------------------- /Tools/PyxelConvert/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/PyxelConvert/Main.cpp -------------------------------------------------------------------------------- /Tools/PyxelConvert/Pyxel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/PyxelConvert/Pyxel.cpp -------------------------------------------------------------------------------- /Tools/PyxelConvert/Pyxel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/PyxelConvert/Pyxel.h -------------------------------------------------------------------------------- /Tools/PyxelConvert/PyxelStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/PyxelConvert/PyxelStructs.h -------------------------------------------------------------------------------- /Tools/PyxelConvert/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/PyxelConvert/resource.h -------------------------------------------------------------------------------- /Tools/Shared/AssertLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/Shared/AssertLog.h -------------------------------------------------------------------------------- /Tools/Shared/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/Shared/File.cpp -------------------------------------------------------------------------------- /Tools/Shared/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/Shared/File.h -------------------------------------------------------------------------------- /Tools/Shared/Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/Shared/Functions.cpp -------------------------------------------------------------------------------- /Tools/Shared/Functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/Shared/Functions.h -------------------------------------------------------------------------------- /Tools/Shared/Icon/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/Shared/Icon/Icon.ico -------------------------------------------------------------------------------- /Tools/Shared/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/Shared/Log.cpp -------------------------------------------------------------------------------- /Tools/Shared/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/Shared/Log.h -------------------------------------------------------------------------------- /Tools/Shared/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/Shared/Macros.h -------------------------------------------------------------------------------- /Tools/TiledConvert/Application.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/TiledConvert/Application.rc -------------------------------------------------------------------------------- /Tools/TiledConvert/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/TiledConvert/Main.cpp -------------------------------------------------------------------------------- /Tools/TiledConvert/Tiled.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/TiledConvert/Tiled.cpp -------------------------------------------------------------------------------- /Tools/TiledConvert/Tiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/TiledConvert/Tiled.h -------------------------------------------------------------------------------- /Tools/TiledConvert/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/Tools/TiledConvert/resource.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/makefile -------------------------------------------------------------------------------- /makefile.pi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cdoty/SuperPlay/HEAD/makefile.pi --------------------------------------------------------------------------------