├── .gitignore ├── README.md ├── Rakefile ├── ext ├── LiteRGSS │ ├── Bitmap.cpp │ ├── Bitmap.h │ ├── BlendMode.cpp │ ├── BlendMode.h │ ├── CBitmap_Element.cpp │ ├── CBitmap_Element.h │ ├── CDrawableStack.cpp │ ├── CDrawableStack.h │ ├── CDrawable_Element.cpp │ ├── CDrawable_Element.h │ ├── CGraphics.cpp │ ├── CGraphics.h │ ├── CGraphicsConfig.cpp │ ├── CGraphicsConfig.h │ ├── CGraphicsCppStack.cpp │ ├── CGraphicsCppStack.h │ ├── CGraphicsCppStackItem.h │ ├── CGraphicsDraw.cpp │ ├── CGraphicsDraw.h │ ├── CGraphicsRubyStack.cpp │ ├── CGraphicsRubyStack.h │ ├── CGraphicsRubyStackItem.cpp │ ├── CGraphicsRubyStackItem.h │ ├── CGraphicsSnapshot.cpp │ ├── CGraphicsSnapshot.h │ ├── CGraphicsStack.cpp │ ├── CGraphicsStack.h │ ├── CGraphicsStackItem.cpp │ ├── CGraphicsStackItem.h │ ├── CGraphicsUpdateMessage.h │ ├── CRect_Element.h │ ├── CRubyGlobalBitmaps.cpp │ ├── CRubyGlobalBitmaps.h │ ├── CShaderFactory.cpp │ ├── CShaderFactory.h │ ├── CShaderSprite_Element.cpp │ ├── CShaderSprite_Element.h │ ├── CShape_Element.cpp │ ├── CShape_Element.h │ ├── CSpriteMap_Element.cpp │ ├── CSpriteMap_Element.h │ ├── CSprite_Element.cpp │ ├── CSprite_Element.h │ ├── CText_Element.cpp │ ├── CText_Element.h │ ├── CTone_Element.h │ ├── CView_Element.cpp │ ├── CView_Element.h │ ├── CViewport_Element.cpp │ ├── CViewport_Element.h │ ├── CWindow_Element.cpp │ ├── CWindow_Element.h │ ├── Color.cpp │ ├── Color.h │ ├── Drawable_Disposable.cpp │ ├── Drawable_Disposable.h │ ├── Fonts.cpp │ ├── Fonts.h │ ├── Graphics.cpp │ ├── Graphics.h │ ├── Image.cpp │ ├── Image.h │ ├── Input.cpp │ ├── Input.h │ ├── LiteRGSS.cpp │ ├── LiteRGSS.h │ ├── Rect.cpp │ ├── Rect.h │ ├── Shader.cpp │ ├── Shader.h │ ├── ShaderSprite.cpp │ ├── ShaderSprite.h │ ├── Shape.cpp │ ├── Shape.h │ ├── Sprite.cpp │ ├── Sprite.h │ ├── SpriteDisposer.cpp │ ├── SpriteDisposer.h │ ├── SpriteMap.cpp │ ├── SpriteMap.h │ ├── Table.cpp │ ├── Table.h │ ├── Table32.cpp │ ├── Table32.h │ ├── Text.cpp │ ├── Text.h │ ├── Texture.hpp │ ├── Tone.cpp │ ├── Tone.h │ ├── Viewport.cpp │ ├── Viewport.h │ ├── Window.cpp │ ├── Window.h │ ├── Yuki.cpp │ ├── Yuki.h │ ├── Yuki_Gif.cpp │ ├── Yuki_Gif.h │ ├── common.h │ ├── extconf.rb │ ├── libnsgif.c │ ├── libnsgif.h │ ├── libnsgif.hpp │ ├── lodepng.cpp │ ├── lodepng.h │ ├── log.h │ ├── lzw.c │ ├── lzw.h │ ├── metadata.h │ ├── rbAdapter.h │ ├── ruby_common.h │ ├── sf_Text2.cpp │ ├── sf_Text2.hpp │ └── vector_tracker.h ├── LiteRGSS_test │ ├── LiteRGSS_test.cpp │ ├── ShaderFactory_test.cpp │ ├── ShaderFactory_test.h │ ├── extconf.rb │ └── mkmf_unit_test.rb └── LiteRGSS_work.code-workspace ├── tests ├── test1.rb ├── test10.rb ├── test11.rb ├── test12.rb ├── test13.rb ├── test14.rb ├── test15.rb ├── test16.rb ├── test2.rb ├── test3.rb ├── test4.rb ├── test5.rb ├── test6.rb ├── test7.rb ├── test8.rb └── test9.rb ├── unit-test ├── test_graphics.rb ├── test_graphics_stack.rb ├── test_shader_factory.rb └── test_table.rb └── yard ├── .yardopts ├── LiteRGSS.rb ├── README.md └── clean_yard.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/Rakefile -------------------------------------------------------------------------------- /ext/LiteRGSS/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Bitmap.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Bitmap.h -------------------------------------------------------------------------------- /ext/LiteRGSS/BlendMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/BlendMode.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/BlendMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/BlendMode.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CBitmap_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CBitmap_Element.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CBitmap_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CBitmap_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CDrawableStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CDrawableStack.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CDrawableStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CDrawableStack.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CDrawable_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CDrawable_Element.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CDrawable_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CDrawable_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphics.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphics.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsConfig.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsConfig.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsCppStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsCppStack.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsCppStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsCppStack.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsCppStackItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsCppStackItem.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsDraw.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsDraw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsDraw.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsRubyStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsRubyStack.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsRubyStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsRubyStack.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsRubyStackItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsRubyStackItem.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsRubyStackItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsRubyStackItem.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsSnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsSnapshot.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsSnapshot.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsStack.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsStack.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsStackItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsStackItem.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsStackItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsStackItem.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CGraphicsUpdateMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CGraphicsUpdateMessage.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CRect_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CRect_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CRubyGlobalBitmaps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CRubyGlobalBitmaps.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CRubyGlobalBitmaps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CRubyGlobalBitmaps.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CShaderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CShaderFactory.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CShaderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CShaderFactory.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CShaderSprite_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CShaderSprite_Element.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CShaderSprite_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CShaderSprite_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CShape_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CShape_Element.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CShape_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CShape_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CSpriteMap_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CSpriteMap_Element.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CSpriteMap_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CSpriteMap_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CSprite_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CSprite_Element.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CSprite_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CSprite_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CText_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CText_Element.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CText_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CText_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CTone_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CTone_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CView_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CView_Element.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CView_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CView_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CViewport_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CViewport_Element.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CViewport_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CViewport_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/CWindow_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CWindow_Element.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/CWindow_Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/CWindow_Element.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Color.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Color.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Drawable_Disposable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Drawable_Disposable.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Drawable_Disposable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Drawable_Disposable.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Fonts.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Fonts.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Graphics.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Graphics.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Image.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Image.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Input.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Input.h -------------------------------------------------------------------------------- /ext/LiteRGSS/LiteRGSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/LiteRGSS.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/LiteRGSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/LiteRGSS.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Rect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Rect.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Rect.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Shader.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Shader.h -------------------------------------------------------------------------------- /ext/LiteRGSS/ShaderSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/ShaderSprite.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/ShaderSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/ShaderSprite.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Shape.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Shape.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Sprite.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Sprite.h -------------------------------------------------------------------------------- /ext/LiteRGSS/SpriteDisposer.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/LiteRGSS/SpriteDisposer.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/LiteRGSS/SpriteMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/SpriteMap.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/SpriteMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/SpriteMap.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Table.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Table.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Table32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Table32.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Table32.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Text.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Text.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Texture.hpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Tone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Tone.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Tone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Tone.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Viewport.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Viewport.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Window.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Window.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Yuki.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Yuki.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Yuki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Yuki.h -------------------------------------------------------------------------------- /ext/LiteRGSS/Yuki_Gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Yuki_Gif.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/Yuki_Gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/Yuki_Gif.h -------------------------------------------------------------------------------- /ext/LiteRGSS/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/common.h -------------------------------------------------------------------------------- /ext/LiteRGSS/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/extconf.rb -------------------------------------------------------------------------------- /ext/LiteRGSS/libnsgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/libnsgif.c -------------------------------------------------------------------------------- /ext/LiteRGSS/libnsgif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/libnsgif.h -------------------------------------------------------------------------------- /ext/LiteRGSS/libnsgif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/libnsgif.hpp -------------------------------------------------------------------------------- /ext/LiteRGSS/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/lodepng.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/lodepng.h -------------------------------------------------------------------------------- /ext/LiteRGSS/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/log.h -------------------------------------------------------------------------------- /ext/LiteRGSS/lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/lzw.c -------------------------------------------------------------------------------- /ext/LiteRGSS/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/lzw.h -------------------------------------------------------------------------------- /ext/LiteRGSS/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/metadata.h -------------------------------------------------------------------------------- /ext/LiteRGSS/rbAdapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/rbAdapter.h -------------------------------------------------------------------------------- /ext/LiteRGSS/ruby_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/ruby_common.h -------------------------------------------------------------------------------- /ext/LiteRGSS/sf_Text2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/sf_Text2.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS/sf_Text2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/sf_Text2.hpp -------------------------------------------------------------------------------- /ext/LiteRGSS/vector_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS/vector_tracker.h -------------------------------------------------------------------------------- /ext/LiteRGSS_test/LiteRGSS_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS_test/LiteRGSS_test.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS_test/ShaderFactory_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS_test/ShaderFactory_test.cpp -------------------------------------------------------------------------------- /ext/LiteRGSS_test/ShaderFactory_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS_test/ShaderFactory_test.h -------------------------------------------------------------------------------- /ext/LiteRGSS_test/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS_test/extconf.rb -------------------------------------------------------------------------------- /ext/LiteRGSS_test/mkmf_unit_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS_test/mkmf_unit_test.rb -------------------------------------------------------------------------------- /ext/LiteRGSS_work.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/ext/LiteRGSS_work.code-workspace -------------------------------------------------------------------------------- /tests/test1.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test1.rb -------------------------------------------------------------------------------- /tests/test10.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test10.rb -------------------------------------------------------------------------------- /tests/test11.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test11.rb -------------------------------------------------------------------------------- /tests/test12.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test12.rb -------------------------------------------------------------------------------- /tests/test13.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test13.rb -------------------------------------------------------------------------------- /tests/test14.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test14.rb -------------------------------------------------------------------------------- /tests/test15.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test15.rb -------------------------------------------------------------------------------- /tests/test16.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test16.rb -------------------------------------------------------------------------------- /tests/test2.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test2.rb -------------------------------------------------------------------------------- /tests/test3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test3.rb -------------------------------------------------------------------------------- /tests/test4.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test4.rb -------------------------------------------------------------------------------- /tests/test5.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test5.rb -------------------------------------------------------------------------------- /tests/test6.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test6.rb -------------------------------------------------------------------------------- /tests/test7.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test7.rb -------------------------------------------------------------------------------- /tests/test8.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test8.rb -------------------------------------------------------------------------------- /tests/test9.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/tests/test9.rb -------------------------------------------------------------------------------- /unit-test/test_graphics.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/unit-test/test_graphics.rb -------------------------------------------------------------------------------- /unit-test/test_graphics_stack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/unit-test/test_graphics_stack.rb -------------------------------------------------------------------------------- /unit-test/test_shader_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/unit-test/test_shader_factory.rb -------------------------------------------------------------------------------- /unit-test/test_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/unit-test/test_table.rb -------------------------------------------------------------------------------- /yard/.yardopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/yard/.yardopts -------------------------------------------------------------------------------- /yard/LiteRGSS.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/yard/LiteRGSS.rb -------------------------------------------------------------------------------- /yard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/yard/README.md -------------------------------------------------------------------------------- /yard/clean_yard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NuriYuri/LiteRGSS/HEAD/yard/clean_yard.rb --------------------------------------------------------------------------------