├── .gitignore ├── README.md ├── documentation ├── Manual │ └── readme.txt ├── Sample-Projects │ └── Sample-project │ │ ├── Collide.angelscript │ │ ├── app.enml │ │ ├── data │ │ ├── Verdana14_shadow.fnt │ │ ├── Verdana14_shadow_0.png │ │ ├── Verdana20.fnt │ │ ├── Verdana20_0.png │ │ ├── Verdana20_shadow.fnt │ │ ├── Verdana20_shadow.png │ │ ├── Verdana24.fnt │ │ ├── Verdana24_0.png │ │ ├── Verdana24_shadow.fnt │ │ ├── Verdana24_shadow.png │ │ ├── Verdana30.fnt │ │ ├── Verdana30_0.png │ │ ├── Verdana30_shadow.fnt │ │ ├── Verdana30_shadow.png │ │ ├── Verdana64.fnt │ │ ├── Verdana64_0.png │ │ ├── Verdana64_1.png │ │ ├── Verdana64_shadow.fnt │ │ ├── Verdana64_shadow_0.png │ │ ├── Verdana64_shadow_1.png │ │ ├── default_nm.png │ │ ├── shadow.dds │ │ └── shadow.png │ │ ├── effects │ │ ├── bluegeiser.par │ │ ├── burning_oil.par │ │ ├── chrono_trigger_blue_fire.par │ │ ├── demolition.par │ │ ├── desert_sand.par │ │ ├── dragon_flame.par │ │ ├── explosion.par │ │ ├── explosion_particles.par │ │ ├── fire_ball.par │ │ ├── fire_smoke.par │ │ ├── fireball.par │ │ ├── lava_falls.par │ │ ├── meteor.par │ │ ├── purple_haze.par │ │ ├── rain.par │ │ ├── small_explosion.par │ │ ├── smoke2.par │ │ ├── snow.par │ │ ├── snow_storm.par │ │ ├── tornado.par │ │ ├── tornado2.par │ │ ├── vapor.par │ │ └── waterfall.par │ │ ├── entities │ │ ├── arvore03.png │ │ ├── arvore1.png │ │ ├── barrel.ent │ │ ├── barril.png │ │ ├── barril_gloss.png │ │ ├── black.ent │ │ ├── black.png │ │ ├── blocks_ct.ent │ │ ├── blocks_ct2.png │ │ ├── blood_decal.ent │ │ ├── blooddecal.png │ │ ├── blue_fire.ent │ │ ├── blue_fire_low_range.ent │ │ ├── blue_light.ent │ │ ├── candle.ent │ │ ├── candle2.ent │ │ ├── candles.png │ │ ├── candles_gloss.png │ │ ├── collision_wall1.ent │ │ ├── collision_wall2.ent │ │ ├── cracks_decal.png │ │ ├── crazy_teapot.ent │ │ ├── devil_ct.ent │ │ ├── devil_statue.png │ │ ├── empty_torch.png │ │ ├── explosion.ent │ │ ├── explosion_decal.dds │ │ ├── explosion_decal.ent │ │ ├── fire.ent │ │ ├── fire_ct.ent │ │ ├── fireball.ent │ │ ├── firewood.png │ │ ├── floor1x.ent │ │ ├── floor4x.ent │ │ ├── gothic_block2.png │ │ ├── green_light.ent │ │ ├── halo.bmp │ │ ├── halo1.bmp │ │ ├── halo_candle.bmp │ │ ├── invisible_ground.ent │ │ ├── jazag.ent │ │ ├── jazag.png │ │ ├── normalmaps │ │ │ ├── arvore03_normal.png │ │ │ ├── arvore1_normal.png │ │ │ ├── barril_nm.bmp │ │ │ ├── barril_nm.png │ │ │ ├── blooddecal_normal.png │ │ │ ├── candles_normal.png │ │ │ ├── firewoodnormal.png │ │ │ ├── nm_blocks_ct.bmp │ │ │ ├── nm_blocks_ct2.bmp │ │ │ ├── nm_devil_statue.png │ │ │ ├── nm_explosion_decal.png │ │ │ ├── nm_jazag_height.bmp │ │ │ ├── nm_rockwall.png │ │ │ ├── nm_spaceship_floor_4x.PNG │ │ │ ├── nm_spaceship_grill.png │ │ │ ├── nm_torch.bmp │ │ │ ├── nm_white_ground.jpg │ │ │ ├── normaltest.png │ │ │ ├── pilar_normal_ct.bmp │ │ │ ├── pilar_normal_ct_small.bmp │ │ │ ├── planta_normal.png │ │ │ └── water_nm.png │ │ ├── palm.ent │ │ ├── pilar3D.ent │ │ ├── pilar_ct_small.png │ │ ├── plant.ent │ │ ├── planta.png │ │ ├── reflection_test.ent │ │ ├── rockwall.png │ │ ├── single_fire_dyna.ent │ │ ├── single_fire_static.ent │ │ ├── soil.ent │ │ ├── spaceship_floor.ent │ │ ├── spaceship_floor.png │ │ ├── spaceship_floor2.ent │ │ ├── spaceship_floor_gloss.png │ │ ├── spaceship_grill.png │ │ ├── spot.bmp │ │ ├── sprite0_strip32nm.png │ │ ├── teapot.ent │ │ ├── test.png │ │ ├── tree.ent │ │ ├── wall_ct.ent │ │ ├── water.PNG │ │ ├── water.ent │ │ ├── white.png │ │ ├── white_ground.ent │ │ ├── white_ground.jpg │ │ └── yellow_ground.jpg │ │ ├── eth_util.angelscript │ │ ├── main.angelscript │ │ ├── particles │ │ ├── blood.png │ │ ├── explosion.JPG │ │ ├── explosion.png │ │ ├── fire.dds │ │ ├── fireball.jpg │ │ ├── flare.jpg │ │ ├── flash.bmp │ │ ├── fog.dds │ │ ├── particle.bmp │ │ ├── particle.png │ │ ├── rain.png │ │ ├── red_fire.png │ │ └── water.dds │ │ ├── sample.ethproj │ │ ├── scenes │ │ ├── level1.esc │ │ └── scene.esc │ │ └── soundfx │ │ ├── demolition.mp3 │ │ ├── demolition2.mp3 │ │ ├── distant_wind.mp3 │ │ ├── explosion.mp3 │ │ ├── explosion2.mp3 │ │ ├── fire blast.mp3 │ │ ├── fire.mp3 │ │ ├── lava.mp3 │ │ ├── rain.mp3 │ │ ├── rain2.mp3 │ │ ├── violent_wind.mp3 │ │ └── waterfall.mp3 ├── Tools │ ├── BMFont │ │ ├── doc │ │ │ ├── command_line.html │ │ │ ├── export_options.html │ │ │ ├── export_options.png │ │ │ ├── file_format.html │ │ │ ├── font_settings.html │ │ │ ├── font_settings.png │ │ │ ├── known_issues.html │ │ │ └── pixel_shader.html │ │ ├── documentation.html │ │ └── readme.txt │ └── SciTE │ │ ├── License.txt │ │ └── doc │ │ ├── CommandValues.html │ │ ├── PrintHi.png │ │ ├── SciBreak2.jpg │ │ ├── SciTE.html │ │ ├── SciTEDirector.html │ │ ├── SciTEDoc.html │ │ ├── SciTEDownload.html │ │ ├── SciTEExtension.html │ │ ├── SciTEExternalLexer.html │ │ ├── SciTEExtras.html │ │ ├── SciTEFAQ.html │ │ ├── SciTEIco.png │ │ ├── SciTEImage.html │ │ ├── SciTELexer.html │ │ ├── SciTELua.html │ │ ├── SciTERegEx.html │ │ ├── SciTEWord.jpg │ │ ├── ScriptLexer.html │ │ ├── demo.png │ │ └── scite.1 └── Vendors │ └── libjson │ ├── Documentation.pdf │ ├── Getting Started │ ├── C++ Interface │ │ ├── array.htm │ │ ├── basic_parser.htm │ │ ├── child_node.htm │ │ └── simple_write.htm │ └── Library Interface │ │ ├── array.htm │ │ ├── basic_parser.htm │ │ ├── child_node.htm │ │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushCpp.js │ │ ├── shCore.js │ │ └── shLegacy.js │ │ ├── simple_write.htm │ │ └── styles │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css │ └── TestSuite.zip ├── testbed ├── GeneralTests │ ├── Test │ │ ├── Test.angelscript │ │ ├── TestCustomData.angelscript │ │ ├── TestEntity.angelscript │ │ ├── TestFile.angelscript │ │ ├── TestLighting.angelscript │ │ ├── TestRigidBodies.angelscript │ │ ├── TestSceneScale.angelscript │ │ └── TestTempEntities.angelscript │ ├── Testbed.angelscript │ ├── app.enml │ ├── data │ │ ├── SimSun14.fnt │ │ ├── SimSun14_0.png │ │ ├── SimSun14_1.png │ │ ├── SimSun14_2.png │ │ ├── SimSun14_3.png │ │ ├── SimSun14_4.png │ │ ├── SimSun14_5.png │ │ ├── Verdana128.fnt │ │ ├── Verdana128_0.png │ │ ├── Verdana128_1.png │ │ ├── Verdana128_2.png │ │ ├── Verdana128_3.png │ │ ├── Verdana128_4.png │ │ ├── Verdana14_shadow.fnt │ │ ├── Verdana14_shadow_0.png │ │ ├── Verdana20.fnt │ │ ├── Verdana20_0.png │ │ ├── Verdana20_shadow.fnt │ │ ├── Verdana20_shadow.png │ │ ├── Verdana24.fnt │ │ ├── Verdana24_0.png │ │ ├── Verdana24_shadow.fnt │ │ ├── Verdana24_shadow.png │ │ ├── Verdana30.fnt │ │ ├── Verdana30_0.png │ │ ├── Verdana30_shadow.fnt │ │ ├── Verdana30_shadow.png │ │ ├── Verdana64.fnt │ │ ├── Verdana64_0.png │ │ ├── Verdana64_1.png │ │ ├── default_nm.png │ │ ├── shadow.dds │ │ └── shadow.png │ ├── effects │ │ ├── big_torch.par │ │ ├── bitmap_not_to_be_found.par │ │ ├── explosion.par │ │ ├── explosion_particles.par │ │ ├── fire.par │ │ ├── fire_wsound.par │ │ ├── fireball.par │ │ ├── sparkling_fire.par │ │ ├── torch.par │ │ └── wave.par │ ├── entities.zip │ ├── entities │ │ ├── CRATE.png │ │ ├── LOS-GreyBirdFly.png │ │ ├── STONE03A.JPG │ │ ├── STONE03A2.jpg │ │ ├── STONE03A4x.JPG │ │ ├── arbitrary_pivot_culling_test.ent │ │ ├── arbitrary_pivot_culling_test2.ent │ │ ├── arvore1.png │ │ ├── asteroid_64.png │ │ ├── asteroid_body.ent │ │ ├── barrel.ent │ │ ├── barrel_light.ent │ │ ├── barrel_not_found.ent │ │ ├── barrel_on_fire.ent │ │ ├── barrel_super_high_parallax.ent │ │ ├── barrel_with_data.ent │ │ ├── barril.png │ │ ├── big_torch.ent │ │ ├── bird_utf8_bom.ent │ │ ├── blood.ent │ │ ├── blooddecal.png │ │ ├── blue_light.ent │ │ ├── bump_test_floor.ent │ │ ├── bump_test_wall.ent │ │ ├── character.ent │ │ ├── colormap.jpg │ │ ├── concrete_body.ent │ │ ├── concrete_platform.ent │ │ ├── explosion1.ent │ │ ├── explosion2.ent │ │ ├── explosion_single_particle.ent │ │ ├── fire_with_sound.ent │ │ ├── fireball.ent │ │ ├── gloss.jpg │ │ ├── green_light.ent │ │ ├── half_crate.png │ │ ├── half_metal_crate.ent │ │ ├── halo.bmp │ │ ├── halo1.bmp │ │ ├── horizontalBumpOdd.ent │ │ ├── huge_light.ent │ │ ├── hunter03recolourxi8.png │ │ ├── invisible_collidable_entity.ent │ │ ├── invisible_entity.ent │ │ ├── lollipop.ent │ │ ├── lollipop.png │ │ ├── metal_crate_body.ent │ │ ├── metal_crate_body_half.ent │ │ ├── normalmaps │ │ │ ├── arvore1_normal.png │ │ │ ├── asteroid64_nm.png │ │ │ ├── barril_nm.bmp │ │ │ ├── blooddecal_normal.png │ │ │ ├── bump_test.png │ │ │ ├── bump_test_h.png │ │ │ ├── half_crate_normal.bmp │ │ │ ├── nm_heightmap.jpg │ │ │ ├── normal_map.png │ │ │ ├── pilar_normal_ct_small.bmp │ │ │ ├── spinning_cross_normal.png │ │ │ └── wall__height_nm.png │ │ ├── palm.ent │ │ ├── pilar_ct_small.png │ │ ├── pillar_fire.ent │ │ ├── quarter_wall.ent │ │ ├── raw_barrel.ent │ │ ├── red_light.ent │ │ ├── scaled_metal_crate_body.ent │ │ ├── sensor.ent │ │ ├── small_bump_test.ent │ │ ├── spinning_cross.ent │ │ ├── spinning_cross.png │ │ ├── tall_shadow_barrel.ent │ │ ├── ushape.ent │ │ ├── ushape.png │ │ ├── ushape_joint.ent │ │ ├── vertical_character.ent │ │ ├── white.bmp │ │ ├── white.png │ │ ├── white_ground.jpg │ │ ├── white_light.ent │ │ └── yellow_light.ent │ ├── eth_util.angelscript │ ├── fileEncodedWithoutUTF8BOM.angelscript │ ├── globalCallbacks.angelscript │ ├── main.angelscript │ ├── nonCoreTests.angelscript │ ├── particles │ │ ├── explosion.JPG │ │ ├── explosion.png │ │ ├── fire.png │ │ ├── onda.png │ │ └── particle.png │ ├── plane_math.angelscript │ ├── scenes │ │ ├── TestEntity.esc │ │ ├── customDataTesting.esc │ │ ├── entity_selection_test.esc │ │ ├── physicsTest.esc │ │ ├── sceneScaleTest.esc │ │ ├── shadowTests.esc │ │ ├── temporary_entity_test-esc │ │ │ ├── add20.bmp │ │ │ ├── add21.bmp │ │ │ ├── add22.bmp │ │ │ ├── add24.bmp │ │ │ ├── add32.bmp │ │ │ └── add34.bmp │ │ ├── temporary_entity_test.esc │ │ └── verticalParallaxTest.esc │ ├── soundfx │ │ ├── explosion.ogg │ │ └── fire.ogg │ ├── sprite │ │ ├── barril.png │ │ └── sphere.png │ └── testbed.ethproj ├── KeyboardTests │ ├── app.enml │ ├── data │ │ ├── Verdana20_shadow.fnt │ │ ├── Verdana20_shadow.png │ │ ├── Verdana30_shadow.fnt │ │ ├── Verdana30_shadow.png │ │ ├── default_nm.png │ │ ├── shadow.png │ │ └── splash.bmp │ ├── main.angelscript │ └── particles │ │ └── particle.png └── ShaderTests │ ├── app.enml │ ├── data │ ├── Verdana24_shadow.fnt │ ├── Verdana24_shadow.png │ ├── default_nm.png │ ├── shadow.dds │ ├── shadow.png │ └── splash.bmp │ ├── effects │ └── readme.txt │ ├── entities │ ├── arvore1.png │ ├── asteroid.ent │ ├── asteroid_64.png │ ├── barrel_blue_light.ent │ ├── barrel_red_light.ent │ ├── barril.png │ ├── ground.ent │ ├── halo.bmp │ ├── normalmaps │ │ ├── arvore1_normal.png │ │ ├── asteroid64_nm.png │ │ ├── normal_map.png │ │ └── readme.txt │ ├── tree.ent │ └── white_ground.jpg │ ├── main.angelscript │ ├── particles │ ├── particle.png │ └── readme.txt │ ├── scenes │ ├── readme.txt │ └── scene.esc │ ├── shader-tests.ethproj │ └── soundfx │ └── readme.txt ├── toolkit ├── Ethanon Toolkit │ ├── Collide.angelscript │ ├── app.enml │ ├── data │ │ ├── Verdana14_shadow.fnt │ │ ├── Verdana14_shadow_0.png │ │ ├── Verdana20.fnt │ │ ├── Verdana20_0.png │ │ ├── Verdana20_shadow.fnt │ │ ├── Verdana20_shadow.png │ │ ├── Verdana24.fnt │ │ ├── Verdana24_0.png │ │ ├── Verdana24_shadow.fnt │ │ ├── Verdana24_shadow.png │ │ ├── Verdana30.fnt │ │ ├── Verdana30_0.png │ │ ├── Verdana30_shadow.fnt │ │ ├── Verdana30_shadow.png │ │ ├── Verdana64.fnt │ │ ├── Verdana64_0.png │ │ ├── Verdana64_1.png │ │ ├── Verdana64_shadow.fnt │ │ ├── Verdana64_shadow_0.png │ │ ├── Verdana64_shadow_1.png │ │ ├── arrow.bmp │ │ ├── arrows.png │ │ ├── axis.png │ │ ├── bs.png │ │ ├── curve_right.png │ │ ├── default_nm.png │ │ ├── invisible.png │ │ ├── l.png │ │ ├── nextapp.png │ │ ├── outline.png │ │ ├── p.png │ │ ├── parallax.png │ │ ├── play.png │ │ ├── range.png │ │ ├── rich_outline.png │ │ ├── shadow.bmp │ │ ├── shadow.dds │ │ ├── shadow.png │ │ ├── soundwave.dds │ │ ├── soundwave.png │ │ ├── spot.bmp │ │ └── stop.png │ ├── editor.enml │ ├── effects │ │ └── readme.txt │ ├── entities │ │ ├── normalmaps │ │ │ └── readme.txt │ │ └── readme.txt │ ├── eth_util.angelscript │ ├── main.angelscript │ ├── particles │ │ ├── particle.png │ │ └── readme.txt │ ├── scenes │ │ └── readme.txt │ ├── soundfx │ │ └── readme.txt │ └── tools │ │ ├── 7za.exe │ │ ├── BMFont │ │ ├── bmfont.bmfc │ │ ├── bmfont.com │ │ └── bmfont.exe │ │ ├── SciTE │ │ ├── SciLexer.dll │ │ ├── SciTE.exe │ │ ├── SciTEGlobal.properties │ │ ├── cpp.properties │ │ └── locale.properties │ │ ├── ShaderToCHeader │ │ ├── app.enml │ │ ├── data │ │ │ ├── default_nm.png │ │ │ ├── shadow.dds │ │ │ └── shadow.png │ │ ├── main.angelscript │ │ ├── particles │ │ │ └── particle.png │ │ └── shader-to-c-header.ethproj │ │ ├── Sublime-Package │ │ ├── Ethanon │ │ │ ├── Default (OSX).sublime-keymap │ │ │ ├── Default (Windows).sublime-keymap │ │ │ ├── Ethanon.sublime-build │ │ │ ├── Ethanon.sublime-settings │ │ │ └── Ethanon.tmLanguage │ │ ├── JSON-tmLanguage │ │ │ └── ethanon.JSON-tmLanguage │ │ ├── how-to-install.md │ │ └── readme.md │ │ ├── pack_tools.bat │ │ ├── tools.7z │ │ └── unpack_tools.bat ├── Installer │ ├── About.rtf │ ├── MIT_LICENSE.rtf │ ├── icon.ico │ └── installer.windows.iss ├── Source │ ├── Ethanon Engine.sln │ ├── projects │ │ ├── msvc9 │ │ │ ├── Ethanon Editor │ │ │ │ └── Ethanon Editor.vcproj │ │ │ ├── Ethanon Engine │ │ │ │ └── Ethanon Engine.vcproj │ │ │ ├── Ethanon Machine │ │ │ │ └── Ethanon Machine.vcproj │ │ │ ├── afxres.h │ │ │ ├── file_version.rc │ │ │ ├── icon.ico │ │ │ ├── resource.h │ │ │ └── resource.rc │ │ └── xcode │ │ │ ├── Ethanon.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ │ ├── OSXEditor │ │ │ ├── Ethanon Editor.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Ethanon Editor │ │ │ │ ├── Ethanon Editor-Info.plist │ │ │ │ ├── Ethanon Editor-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── main.temp.cpp │ │ │ ├── editor_icon.icns │ │ │ └── icon.icns │ │ │ ├── OSXEngine │ │ │ ├── engine.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ └── engine │ │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── engine-Info.plist │ │ │ │ └── engine-Prefix.pch │ │ │ ├── OSXMachine │ │ │ ├── icon.icns │ │ │ ├── machine.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── machine │ │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── machine-Info.plist │ │ │ │ └── machine-Prefix.pch │ │ │ └── iOS │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ ├── Default-Landscape~ipad.png │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ ├── Default-Portrait~ipad.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Ethanon.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ ├── Ethanon │ │ │ ├── Classes │ │ │ │ ├── DefaultWebViewer.h │ │ │ │ ├── DefaultWebViewer.m │ │ │ │ ├── DefaultWebViewer.xib │ │ │ │ ├── GLView.h │ │ │ │ ├── GLView.mm │ │ │ │ ├── GS2DViewController.h │ │ │ │ └── GS2DViewController.mm │ │ │ ├── Ethanon-Info.plist │ │ │ ├── Ethanon-Prefix.pch │ │ │ ├── EthanonAppDelegate.h │ │ │ ├── EthanonAppDelegate.mm │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainWindow.xib │ │ │ └── main.m │ │ │ ├── assets │ │ │ └── read-me.txt │ │ │ ├── ethanon_icon_114.png │ │ │ ├── ethanon_icon_144.png │ │ │ ├── ethanon_icon_57.png │ │ │ └── ethanon_icon_72.png │ └── src │ │ ├── addons │ │ ├── aswrappedcall.h │ │ ├── scriptarray.cpp │ │ ├── scriptarray.h │ │ ├── scriptbuilder.cpp │ │ ├── scriptbuilder.h │ │ ├── scriptdictionary.cpp │ │ ├── scriptdictionary.h │ │ ├── scriptfile.cpp │ │ ├── scriptfile.h │ │ ├── scriptmath.cpp │ │ ├── scriptmath.h │ │ ├── scriptmath2d.cpp │ │ ├── scriptmath2d.h │ │ ├── scriptmath3d.cpp │ │ ├── scriptmath3d.h │ │ ├── scriptstdstring.cpp │ │ └── scriptstdstring.h │ │ ├── angelscript │ │ ├── include │ │ │ └── angelscript.h │ │ ├── lib │ │ │ └── delete.me │ │ ├── projects │ │ │ ├── BCBuilder │ │ │ │ ├── AngelScript.bpg │ │ │ │ ├── AngelScript.groupproj │ │ │ │ ├── AngelScriptBCC.cbproj │ │ │ │ ├── AngelScriptBCC_Static.cbproj │ │ │ │ ├── AngelScriptBCC_Static_CB2006.bdsproj │ │ │ │ ├── angelscript.bpf │ │ │ │ └── pch1.h │ │ │ ├── android │ │ │ │ └── Android.mk │ │ │ ├── cmake │ │ │ │ └── CMakeLists.txt │ │ │ ├── codeblocks │ │ │ │ └── angelscript.cbp │ │ │ ├── dev-cpp │ │ │ │ ├── AngelScript.dev │ │ │ │ ├── Makefile.win │ │ │ │ └── obj │ │ │ │ │ └── delete.me │ │ │ ├── dreamcast │ │ │ │ ├── Makefile │ │ │ │ ├── obj │ │ │ │ │ └── delete.me │ │ │ │ └── readme.txt │ │ │ ├── eclipse │ │ │ │ ├── .cproject │ │ │ │ └── .project │ │ │ ├── gnuc macosx │ │ │ │ └── makefile │ │ │ ├── gnuc │ │ │ │ ├── makefile │ │ │ │ ├── obj │ │ │ │ │ └── delete.me │ │ │ │ └── readme.txt │ │ │ ├── mingw │ │ │ │ ├── makefile │ │ │ │ ├── obj │ │ │ │ │ └── delete.me │ │ │ │ └── readme.txt │ │ │ ├── msvc10 │ │ │ │ ├── angelscript.sln │ │ │ │ ├── angelscript.vcxproj │ │ │ │ └── angelscript.vcxproj.filters │ │ │ ├── msvc6 │ │ │ │ ├── angelscript.dsw │ │ │ │ └── lib │ │ │ │ │ └── angelscript.dsp │ │ │ ├── msvc7 │ │ │ │ ├── msvc7.sln │ │ │ │ └── msvc7.vcproj │ │ │ ├── msvc8 │ │ │ │ ├── angelscript.sln │ │ │ │ └── angelscript.vcproj │ │ │ ├── msvc9 │ │ │ │ ├── angelscript.sln │ │ │ │ └── angelscript.vcproj │ │ │ ├── osx │ │ │ │ └── angelscript │ │ │ │ │ ├── angelscript.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ └── angelscript │ │ │ │ │ └── angelscript-Prefix.pch │ │ │ ├── trolltechqt │ │ │ │ └── angelscript.pro │ │ │ └── xcode │ │ │ │ └── angelscript.xcodeproj │ │ │ │ └── project.pbxproj │ │ └── source │ │ │ ├── as_array.h │ │ │ ├── as_atomic.cpp │ │ │ ├── as_atomic.h │ │ │ ├── as_builder.cpp │ │ │ ├── as_builder.h │ │ │ ├── as_bytecode.cpp │ │ │ ├── as_bytecode.h │ │ │ ├── as_callfunc.cpp │ │ │ ├── as_callfunc.h │ │ │ ├── as_callfunc_arm.cpp │ │ │ ├── as_callfunc_arm_gcc.S │ │ │ ├── as_callfunc_arm_msvc.asm │ │ │ ├── as_callfunc_arm_xcode.s │ │ │ ├── as_callfunc_mips.cpp │ │ │ ├── as_callfunc_ppc.cpp │ │ │ ├── as_callfunc_ppc_64.cpp │ │ │ ├── as_callfunc_sh4.cpp │ │ │ ├── as_callfunc_x64_gcc.cpp │ │ │ ├── as_callfunc_x64_mingw.cpp │ │ │ ├── as_callfunc_x64_msvc.cpp │ │ │ ├── as_callfunc_x64_msvc_asm.asm │ │ │ ├── as_callfunc_x86.cpp │ │ │ ├── as_callfunc_xenon.cpp │ │ │ ├── as_compiler.cpp │ │ │ ├── as_compiler.h │ │ │ ├── as_config.h │ │ │ ├── as_configgroup.cpp │ │ │ ├── as_configgroup.h │ │ │ ├── as_context.cpp │ │ │ ├── as_context.h │ │ │ ├── as_criticalsection.h │ │ │ ├── as_datatype.cpp │ │ │ ├── as_datatype.h │ │ │ ├── as_debug.h │ │ │ ├── as_gc.cpp │ │ │ ├── as_gc.h │ │ │ ├── as_generic.cpp │ │ │ ├── as_generic.h │ │ │ ├── as_globalproperty.cpp │ │ │ ├── as_map.h │ │ │ ├── as_memory.cpp │ │ │ ├── as_memory.h │ │ │ ├── as_module.cpp │ │ │ ├── as_module.h │ │ │ ├── as_objecttype.cpp │ │ │ ├── as_objecttype.h │ │ │ ├── as_outputbuffer.cpp │ │ │ ├── as_outputbuffer.h │ │ │ ├── as_parser.cpp │ │ │ ├── as_parser.h │ │ │ ├── as_property.h │ │ │ ├── as_restore.cpp │ │ │ ├── as_restore.h │ │ │ ├── as_scriptcode.cpp │ │ │ ├── as_scriptcode.h │ │ │ ├── as_scriptengine.cpp │ │ │ ├── as_scriptengine.h │ │ │ ├── as_scriptfunction.cpp │ │ │ ├── as_scriptfunction.h │ │ │ ├── as_scriptnode.cpp │ │ │ ├── as_scriptnode.h │ │ │ ├── as_scriptobject.cpp │ │ │ ├── as_scriptobject.h │ │ │ ├── as_string.cpp │ │ │ ├── as_string.h │ │ │ ├── as_string_util.cpp │ │ │ ├── as_string_util.h │ │ │ ├── as_symboltable.h │ │ │ ├── as_texts.h │ │ │ ├── as_thread.cpp │ │ │ ├── as_thread.h │ │ │ ├── as_tokendef.h │ │ │ ├── as_tokenizer.cpp │ │ │ ├── as_tokenizer.h │ │ │ ├── as_typeinfo.cpp │ │ │ ├── as_typeinfo.h │ │ │ ├── as_variablescope.cpp │ │ │ └── as_variablescope.h │ │ ├── box2d │ │ ├── Box2D │ │ │ ├── Box2D.h │ │ │ ├── Box2DConfig.cmake │ │ │ ├── CMakeLists.txt │ │ │ ├── Collision │ │ │ │ ├── Shapes │ │ │ │ │ ├── b2ChainShape.cpp │ │ │ │ │ ├── b2ChainShape.h │ │ │ │ │ ├── b2CircleShape.cpp │ │ │ │ │ ├── b2CircleShape.h │ │ │ │ │ ├── b2EdgeShape.cpp │ │ │ │ │ ├── b2EdgeShape.h │ │ │ │ │ ├── b2PolygonShape.cpp │ │ │ │ │ ├── b2PolygonShape.h │ │ │ │ │ └── b2Shape.h │ │ │ │ ├── b2BroadPhase.cpp │ │ │ │ ├── b2BroadPhase.h │ │ │ │ ├── b2CollideCircle.cpp │ │ │ │ ├── b2CollideEdge.cpp │ │ │ │ ├── b2CollidePolygon.cpp │ │ │ │ ├── b2Collision.cpp │ │ │ │ ├── b2Collision.h │ │ │ │ ├── b2Distance.cpp │ │ │ │ ├── b2Distance.h │ │ │ │ ├── b2DynamicTree.cpp │ │ │ │ ├── b2DynamicTree.h │ │ │ │ ├── b2TimeOfImpact.cpp │ │ │ │ └── b2TimeOfImpact.h │ │ │ ├── Common │ │ │ │ ├── b2BlockAllocator.cpp │ │ │ │ ├── b2BlockAllocator.h │ │ │ │ ├── b2Draw.cpp │ │ │ │ ├── b2Draw.h │ │ │ │ ├── b2GrowableStack.h │ │ │ │ ├── b2Math.cpp │ │ │ │ ├── b2Math.h │ │ │ │ ├── b2Settings.cpp │ │ │ │ ├── b2Settings.h │ │ │ │ ├── b2StackAllocator.cpp │ │ │ │ ├── b2StackAllocator.h │ │ │ │ ├── b2Timer.cpp │ │ │ │ └── b2Timer.h │ │ │ ├── Dynamics │ │ │ │ ├── Contacts │ │ │ │ │ ├── b2ChainAndCircleContact.cpp │ │ │ │ │ ├── b2ChainAndCircleContact.h │ │ │ │ │ ├── b2ChainAndPolygonContact.cpp │ │ │ │ │ ├── b2ChainAndPolygonContact.h │ │ │ │ │ ├── b2CircleContact.cpp │ │ │ │ │ ├── b2CircleContact.h │ │ │ │ │ ├── b2Contact.cpp │ │ │ │ │ ├── b2Contact.h │ │ │ │ │ ├── b2ContactSolver.cpp │ │ │ │ │ ├── b2ContactSolver.h │ │ │ │ │ ├── b2EdgeAndCircleContact.cpp │ │ │ │ │ ├── b2EdgeAndCircleContact.h │ │ │ │ │ ├── b2EdgeAndPolygonContact.cpp │ │ │ │ │ ├── b2EdgeAndPolygonContact.h │ │ │ │ │ ├── b2PolygonAndCircleContact.cpp │ │ │ │ │ ├── b2PolygonAndCircleContact.h │ │ │ │ │ ├── b2PolygonContact.cpp │ │ │ │ │ └── b2PolygonContact.h │ │ │ │ ├── Joints │ │ │ │ │ ├── b2DistanceJoint.cpp │ │ │ │ │ ├── b2DistanceJoint.h │ │ │ │ │ ├── b2FrictionJoint.cpp │ │ │ │ │ ├── b2FrictionJoint.h │ │ │ │ │ ├── b2GearJoint.cpp │ │ │ │ │ ├── b2GearJoint.h │ │ │ │ │ ├── b2Joint.cpp │ │ │ │ │ ├── b2Joint.h │ │ │ │ │ ├── b2MouseJoint.cpp │ │ │ │ │ ├── b2MouseJoint.h │ │ │ │ │ ├── b2PrismaticJoint.cpp │ │ │ │ │ ├── b2PrismaticJoint.h │ │ │ │ │ ├── b2PulleyJoint.cpp │ │ │ │ │ ├── b2PulleyJoint.h │ │ │ │ │ ├── b2RevoluteJoint.cpp │ │ │ │ │ ├── b2RevoluteJoint.h │ │ │ │ │ ├── b2RopeJoint.cpp │ │ │ │ │ ├── b2RopeJoint.h │ │ │ │ │ ├── b2WeldJoint.cpp │ │ │ │ │ ├── b2WeldJoint.h │ │ │ │ │ ├── b2WheelJoint.cpp │ │ │ │ │ └── b2WheelJoint.h │ │ │ │ ├── b2Body.cpp │ │ │ │ ├── b2Body.h │ │ │ │ ├── b2ContactManager.cpp │ │ │ │ ├── b2ContactManager.h │ │ │ │ ├── b2Fixture.cpp │ │ │ │ ├── b2Fixture.h │ │ │ │ ├── b2Island.cpp │ │ │ │ ├── b2Island.h │ │ │ │ ├── b2TimeStep.h │ │ │ │ ├── b2World.cpp │ │ │ │ ├── b2World.h │ │ │ │ ├── b2WorldCallbacks.cpp │ │ │ │ └── b2WorldCallbacks.h │ │ │ └── Rope │ │ │ │ ├── b2Rope.cpp │ │ │ │ └── b2Rope.h │ │ └── Build │ │ │ ├── Android.mk │ │ │ ├── eclipse │ │ │ ├── .cproject │ │ │ └── .project │ │ │ ├── msvc │ │ │ ├── Box2D.sln │ │ │ └── Box2D.vcproj │ │ │ └── xcode │ │ │ ├── box2d.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── box2d │ │ │ ├── box2d-Info.plist │ │ │ ├── box2d-Prefix.pch │ │ │ ├── box2d.h │ │ │ ├── box2d.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── editor │ │ ├── CustomDataEditor.cpp │ │ ├── CustomDataEditor.h │ │ ├── EditorBase.cpp │ │ ├── EditorBase.h │ │ ├── EditorBase.macosx.mm │ │ ├── EditorBase.windows.cpp │ │ ├── EditorCommon.h │ │ ├── EntityEditor.cpp │ │ ├── EntityEditor.h │ │ ├── IEditorPlugin.cpp │ │ ├── IEditorPlugin.h │ │ ├── ParticleFXEditor.cpp │ │ ├── ParticleFXEditor.h │ │ ├── ParticleScale.cpp │ │ ├── ParticleScale.h │ │ ├── ProjectManager.cpp │ │ ├── ProjectManager.h │ │ ├── SceneEditor.cpp │ │ ├── SceneEditor.h │ │ ├── gsgui.cpp │ │ ├── gsgui.h │ │ └── main.cpp │ │ ├── engine │ │ ├── Drawing │ │ │ ├── ETHDrawable.cpp │ │ │ ├── ETHDrawable.h │ │ │ ├── ETHDrawableManager.cpp │ │ │ ├── ETHDrawableManager.h │ │ │ ├── ETHParticleDrawer.cpp │ │ │ └── ETHParticleDrawer.h │ │ ├── ETHEngine.cpp │ │ ├── ETHEngine.h │ │ ├── ETHTypes.h │ │ ├── Entity │ │ │ ├── ETHCustomDataManager.cpp │ │ │ ├── ETHCustomDataManager.h │ │ │ ├── ETHEntity.cpp │ │ │ ├── ETHEntity.h │ │ │ ├── ETHEntityArray.cpp │ │ │ ├── ETHEntityArray.h │ │ │ ├── ETHEntityCache.cpp │ │ │ ├── ETHEntityCache.h │ │ │ ├── ETHEntityChooser.cpp │ │ │ ├── ETHEntityChooser.h │ │ │ ├── ETHEntityController.cpp │ │ │ ├── ETHEntityController.h │ │ │ ├── ETHEntityProperties.cpp │ │ │ ├── ETHEntityProperties.h │ │ │ ├── ETHLight.cpp │ │ │ ├── ETHLight.h │ │ │ ├── ETHRenderEntity.cpp │ │ │ ├── ETHRenderEntity.h │ │ │ ├── ETHScriptEntity.cpp │ │ │ ├── ETHScriptEntity.h │ │ │ ├── ETHSpriteEntity.cpp │ │ │ └── ETHSpriteEntity.h │ │ ├── Particles │ │ │ ├── ETHParticleManager.cpp │ │ │ ├── ETHParticleManager.h │ │ │ ├── ETHParticleSystem.cpp │ │ │ └── ETHParticleSystem.h │ │ ├── Physics │ │ │ ├── ETHCollisionBox.cpp │ │ │ ├── ETHCollisionBox.h │ │ │ ├── ETHCompoundShape.cpp │ │ │ ├── ETHCompoundShape.h │ │ │ ├── ETHContactListener.cpp │ │ │ ├── ETHContactListener.h │ │ │ ├── ETHDestructionListener.cpp │ │ │ ├── ETHDestructionListener.h │ │ │ ├── ETHJoint.cpp │ │ │ ├── ETHJoint.h │ │ │ ├── ETHPhysicsController.cpp │ │ │ ├── ETHPhysicsController.h │ │ │ ├── ETHPhysicsEntityController.cpp │ │ │ ├── ETHPhysicsEntityController.h │ │ │ ├── ETHPhysicsSimulator.cpp │ │ │ ├── ETHPhysicsSimulator.h │ │ │ ├── ETHPolygon.cpp │ │ │ ├── ETHPolygon.h │ │ │ ├── ETHRayCastCallback.cpp │ │ │ ├── ETHRayCastCallback.h │ │ │ ├── ETHRevoluteJoint.cpp │ │ │ └── ETHRevoluteJoint.h │ │ ├── Platform │ │ │ ├── ETHAppEnmlFile.cpp │ │ │ ├── ETHAppEnmlFile.h │ │ │ ├── ETHPlatform.abstract.cpp │ │ │ ├── ETHPlatform.h │ │ │ ├── FileListing.abstract.cpp │ │ │ ├── FileListing.h │ │ │ ├── macosx │ │ │ │ └── FileListing.mm │ │ │ └── windows │ │ │ │ ├── ETHPlatform.windows.cpp │ │ │ │ └── FileListing.windows.cpp │ │ ├── Renderer │ │ │ ├── ETHEntityHaloRenderer.cpp │ │ │ ├── ETHEntityHaloRenderer.h │ │ │ ├── ETHEntityParticleRenderer.cpp │ │ │ ├── ETHEntityParticleRenderer.h │ │ │ ├── ETHEntityPieceRenderer.cpp │ │ │ ├── ETHEntityPieceRenderer.h │ │ │ ├── ETHEntityRenderingManager.cpp │ │ │ ├── ETHEntityRenderingManager.h │ │ │ ├── ETHEntitySpriteRenderer.cpp │ │ │ └── ETHEntitySpriteRenderer.h │ │ ├── Resource │ │ │ ├── ETHDirectories.cpp │ │ │ ├── ETHDirectories.h │ │ │ ├── ETHResourceManager.cpp │ │ │ ├── ETHResourceManager.h │ │ │ ├── ETHResourceProvider.cpp │ │ │ ├── ETHResourceProvider.h │ │ │ ├── ETHSpriteDensityManager.cpp │ │ │ └── ETHSpriteDensityManager.h │ │ ├── Scene │ │ │ ├── ETHActiveEntityHandler.cpp │ │ │ ├── ETHActiveEntityHandler.h │ │ │ ├── ETHBucketManager.cpp │ │ │ ├── ETHBucketManager.h │ │ │ ├── ETHScene.cpp │ │ │ ├── ETHScene.h │ │ │ ├── ETHSceneProperties.cpp │ │ │ └── ETHSceneProperties.h │ │ ├── Script │ │ │ ├── ETHBinaryStream.cpp │ │ │ ├── ETHBinaryStream.h │ │ │ ├── ETHScriptObjRegister.cpp │ │ │ ├── ETHScriptObjRegister.generic.cpp │ │ │ ├── ETHScriptObjRegister.h │ │ │ ├── ETHScriptWrapper.Audio.cpp │ │ │ ├── ETHScriptWrapper.Drawing.cpp │ │ │ ├── ETHScriptWrapper.Math.cpp │ │ │ ├── ETHScriptWrapper.Math.generic.cpp │ │ │ ├── ETHScriptWrapper.Scene.cpp │ │ │ ├── ETHScriptWrapper.SharedData.cpp │ │ │ ├── ETHScriptWrapper.System.cpp │ │ │ ├── ETHScriptWrapper.cpp │ │ │ ├── ETHScriptWrapper.generic.cpp │ │ │ └── ETHScriptWrapper.h │ │ ├── Shader │ │ │ ├── ETHBackBufferTargetManager.cpp │ │ │ ├── ETHBackBufferTargetManager.h │ │ │ ├── ETHDefaultDynamicBackBuffer.cpp │ │ │ ├── ETHDefaultDynamicBackBuffer.h │ │ │ ├── ETHDynamicBackBuffer.h │ │ │ ├── ETHFakeEyePositionManager.cpp │ │ │ ├── ETHFakeEyePositionManager.h │ │ │ ├── ETHLightingProfile.h │ │ │ ├── ETHLightmapGen.cpp │ │ │ ├── ETHLightmapGen.h │ │ │ ├── ETHNoDynamicBackBuffer.cpp │ │ │ ├── ETHNoDynamicBackBuffer.h │ │ │ ├── ETHParallaxManager.cpp │ │ │ ├── ETHParallaxManager.h │ │ │ ├── ETHPixelLightDiffuseSpecular.cpp │ │ │ ├── ETHPixelLightDiffuseSpecular.h │ │ │ ├── ETHShaderManager.cpp │ │ │ ├── ETHShaderManager.h │ │ │ ├── ETHShaders.cg.cpp │ │ │ ├── ETHShaders.glsl.cpp │ │ │ ├── ETHShaders.h │ │ │ ├── ETHVertexLightDiffuse.cpp │ │ │ └── ETHVertexLightDiffuse.h │ │ └── Util │ │ │ ├── ETHASUtil.cpp │ │ │ ├── ETHASUtil.h │ │ │ ├── ETHDateTime.cpp │ │ │ ├── ETHDateTime.h │ │ │ ├── ETHFileChangeDetector.cpp │ │ │ ├── ETHFileChangeDetector.h │ │ │ ├── ETHFrameTimer.cpp │ │ │ ├── ETHFrameTimer.h │ │ │ ├── ETHGlobalScaleManager.cpp │ │ │ ├── ETHGlobalScaleManager.h │ │ │ ├── ETHInput.cpp │ │ │ ├── ETHInput.h │ │ │ ├── ETHSpeedTimer.cpp │ │ │ └── ETHSpeedTimer.h │ │ ├── gs2d │ │ ├── gs2d.sln │ │ ├── lib │ │ │ └── readme.txt │ │ ├── projects │ │ │ ├── Android │ │ │ │ ├── Ethanon │ │ │ │ │ ├── .classpath │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── app.enml │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── Verdana20_shadow.fnt │ │ │ │ │ │ │ ├── Verdana20_shadow.png │ │ │ │ │ │ │ ├── Verdana30_shadow.fnt │ │ │ │ │ │ │ ├── Verdana30_shadow.png │ │ │ │ │ │ │ ├── default_nm.png │ │ │ │ │ │ │ ├── shadow.png │ │ │ │ │ │ │ └── splash.png │ │ │ │ │ │ └── main.angelscript │ │ │ │ │ ├── build-how-to.txt │ │ │ │ │ ├── default.properties │ │ │ │ │ ├── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ ├── Application.mk │ │ │ │ │ │ └── ApplicationSource │ │ │ │ │ │ │ └── Android.mk │ │ │ │ │ ├── libs │ │ │ │ │ │ └── armeabi │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── proguard.cfg │ │ │ │ │ ├── project.properties │ │ │ │ │ ├── res │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ └── src │ │ │ │ │ │ └── net │ │ │ │ │ │ └── asantee │ │ │ │ │ │ ├── ethanon │ │ │ │ │ │ ├── EthanonActivity.java │ │ │ │ │ │ └── EthanonApplication.java │ │ │ │ │ │ └── gs2d │ │ │ │ │ │ ├── ConfigChooser.java │ │ │ │ │ │ ├── FrameHandler.java │ │ │ │ │ │ ├── GL2JNIView.java │ │ │ │ │ │ ├── GLContextFactory.java │ │ │ │ │ │ ├── GS2DActivity.java │ │ │ │ │ │ ├── GS2DJNI.java │ │ │ │ │ │ ├── audio │ │ │ │ │ │ ├── MediaStreamListener.java │ │ │ │ │ │ ├── MediaStreamManager.java │ │ │ │ │ │ ├── SoundCommandListener.java │ │ │ │ │ │ └── SoundEffectManager.java │ │ │ │ │ │ └── io │ │ │ │ │ │ ├── AccelerometerListener.java │ │ │ │ │ │ ├── ApplicationCommandListener.java │ │ │ │ │ │ ├── CommandForwarder.java │ │ │ │ │ │ ├── DefaultCommandListener.java │ │ │ │ │ │ ├── InputDeviceManager.java │ │ │ │ │ │ ├── InputDeviceManagerAPI12.java │ │ │ │ │ │ ├── InputDeviceManagerAPI9.java │ │ │ │ │ │ ├── InputDeviceState.java │ │ │ │ │ │ ├── KeyEventListener.java │ │ │ │ │ │ ├── NativeCommandForwarder.java │ │ │ │ │ │ └── NativeCommandListener.java │ │ │ │ └── GS2D │ │ │ │ │ ├── .classpath │ │ │ │ │ ├── .project │ │ │ │ │ ├── .settings │ │ │ │ │ ├── org.eclipse.cdt.core.prefs │ │ │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ │ │ └── org.eclipse.jdt.launching.prefs │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ └── shaders │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── add1.ps │ │ │ │ │ │ ├── default.ps │ │ │ │ │ │ ├── default.vs │ │ │ │ │ │ ├── fastRender.vs │ │ │ │ │ │ ├── modulate1.ps │ │ │ │ │ │ └── optimal.vs │ │ │ │ │ ├── default.properties │ │ │ │ │ ├── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── Application.mk │ │ │ │ │ ├── ApplicationSource │ │ │ │ │ │ ├── Android.mk.txt │ │ │ │ │ │ └── ApplicationTemplate.cpp │ │ │ │ │ └── gs2d │ │ │ │ │ │ └── Android.mk │ │ │ │ │ ├── proguard.cfg │ │ │ │ │ ├── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ ├── layout │ │ │ │ │ │ └── main.xml │ │ │ │ │ └── values │ │ │ │ │ │ └── strings.xml │ │ │ │ │ └── src │ │ │ │ │ └── net │ │ │ │ │ └── asantee │ │ │ │ │ └── gs2d │ │ │ │ │ ├── FrameHandler.java │ │ │ │ │ ├── GL2JNIView.java │ │ │ │ │ ├── GS2DActivity.java │ │ │ │ │ ├── GS2DJNI.java │ │ │ │ │ ├── audio │ │ │ │ │ ├── MediaStreamListener.java │ │ │ │ │ ├── MediaStreamManager.java │ │ │ │ │ ├── SoundCommandListener.java │ │ │ │ │ └── SoundEffectManager.java │ │ │ │ │ └── io │ │ │ │ │ ├── AccelerometerListener.java │ │ │ │ │ ├── ApplicationCommandListener.java │ │ │ │ │ ├── CommandForwarder.java │ │ │ │ │ ├── KeyEventListener.java │ │ │ │ │ ├── NativeCommandForwarder.java │ │ │ │ │ └── NativeCommandListener.java │ │ │ ├── eclipse │ │ │ │ ├── .cproject │ │ │ │ └── .project │ │ │ ├── msvc9 │ │ │ │ ├── GS2D │ │ │ │ │ └── gs2d.vcproj │ │ │ │ ├── Platform │ │ │ │ │ └── Platform.vcproj │ │ │ │ ├── Testbed │ │ │ │ │ └── Testbed.vcproj │ │ │ │ ├── libzip │ │ │ │ │ └── libzip.vcproj │ │ │ │ └── zlib │ │ │ │ │ └── zlib.vcproj │ │ │ └── xcode │ │ │ │ ├── gs2d.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ │ ├── gs2d │ │ │ │ ├── gs2d.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── gs2d │ │ │ │ │ ├── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── gs2d-Info.plist │ │ │ │ │ └── gs2d-Prefix.pch │ │ │ │ └── gs2dtestbed │ │ │ │ ├── gs2dtestbed.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ └── gs2dtestbed │ │ │ │ ├── en.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ │ ├── gs2dtestbed-Info.plist │ │ │ │ └── gs2dtestbed-Prefix.pch │ │ ├── src │ │ │ ├── Application.cpp │ │ │ ├── Application.h │ │ │ ├── Audio.h │ │ │ ├── Audio │ │ │ │ ├── Android │ │ │ │ │ ├── AndroidAudio.cpp │ │ │ │ │ └── AndroidAudio.h │ │ │ │ ├── Audiere │ │ │ │ │ ├── AudiereAudio.cpp │ │ │ │ │ ├── AudiereAudio.h │ │ │ │ │ └── audiere │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── SConstruct │ │ │ │ │ │ ├── SConstruct.irix │ │ │ │ │ │ ├── audiere-config.in │ │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ ├── configure.in │ │ │ │ │ │ ├── configure.sgi │ │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── SConscript │ │ │ │ │ │ ├── authors.txt │ │ │ │ │ │ ├── changelog.txt │ │ │ │ │ │ ├── cvs.txt │ │ │ │ │ │ ├── dependencies.txt │ │ │ │ │ │ ├── device_parameters.txt │ │ │ │ │ │ ├── doxygen │ │ │ │ │ │ │ ├── audiere-devel.doxy │ │ │ │ │ │ │ ├── audiere-users.doxy │ │ │ │ │ │ │ ├── doxygen-dist.sh │ │ │ │ │ │ │ └── mainpage.doxy │ │ │ │ │ │ ├── faq.txt │ │ │ │ │ │ ├── glossary.txt │ │ │ │ │ │ ├── license.txt │ │ │ │ │ │ ├── overview.txt │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ ├── release-howto.txt │ │ │ │ │ │ ├── small-buffers.txt │ │ │ │ │ │ └── tutorial.txt │ │ │ │ │ │ ├── full-release.sh │ │ │ │ │ │ ├── make-dist.sh │ │ │ │ │ │ ├── make-release-sgi.sh │ │ │ │ │ │ ├── make-release-win32.sh │ │ │ │ │ │ ├── msvc9 │ │ │ │ │ │ ├── audiere.sln │ │ │ │ │ │ └── audiere │ │ │ │ │ │ │ └── audiere.vcproj │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── SConscript │ │ │ │ │ │ ├── afxres.h │ │ │ │ │ │ ├── audiere.h │ │ │ │ │ │ ├── audiere.rc │ │ │ │ │ │ ├── basic_source.cpp │ │ │ │ │ │ ├── basic_source.h │ │ │ │ │ │ ├── cd_null.cpp │ │ │ │ │ │ ├── cd_unix.cpp │ │ │ │ │ │ ├── cd_win32.cpp │ │ │ │ │ │ ├── debug.cpp │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ ├── default_file.h │ │ │ │ │ │ ├── device.cpp │ │ │ │ │ │ ├── device.h │ │ │ │ │ │ ├── device_al.cpp │ │ │ │ │ │ ├── device_al.h │ │ │ │ │ │ ├── device_ds.cpp │ │ │ │ │ │ ├── device_ds.h │ │ │ │ │ │ ├── device_ds_buffer.cpp │ │ │ │ │ │ ├── device_ds_buffer.h │ │ │ │ │ │ ├── device_ds_stream.cpp │ │ │ │ │ │ ├── device_ds_stream.h │ │ │ │ │ │ ├── device_mixer.cpp │ │ │ │ │ │ ├── device_mixer.h │ │ │ │ │ │ ├── device_mm.cpp │ │ │ │ │ │ ├── device_mm.h │ │ │ │ │ │ ├── device_null.cpp │ │ │ │ │ │ ├── device_null.h │ │ │ │ │ │ ├── device_oss.cpp │ │ │ │ │ │ ├── device_oss.h │ │ │ │ │ │ ├── dumb_resample.cpp │ │ │ │ │ │ ├── dumb_resample.h │ │ │ │ │ │ ├── dxguid.cpp │ │ │ │ │ │ ├── file_ansi.cpp │ │ │ │ │ │ ├── input.cpp │ │ │ │ │ │ ├── input_aiff.cpp │ │ │ │ │ │ ├── input_aiff.h │ │ │ │ │ │ ├── input_flac.cpp │ │ │ │ │ │ ├── input_flac.h │ │ │ │ │ │ ├── input_mod.cpp │ │ │ │ │ │ ├── input_mod.h │ │ │ │ │ │ ├── input_mp3.cpp │ │ │ │ │ │ ├── input_mp3.h │ │ │ │ │ │ ├── input_ogg.cpp │ │ │ │ │ │ ├── input_ogg.h │ │ │ │ │ │ ├── input_speex.cpp │ │ │ │ │ │ ├── input_speex.h │ │ │ │ │ │ ├── input_wav.cpp │ │ │ │ │ │ ├── input_wav.h │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ ├── loop_point_source.cpp │ │ │ │ │ │ ├── mci_device.h │ │ │ │ │ │ ├── memory_file.cpp │ │ │ │ │ │ ├── memory_file.h │ │ │ │ │ │ ├── midi_mci.cpp │ │ │ │ │ │ ├── midi_null.cpp │ │ │ │ │ │ ├── mpaudec │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── SConscript │ │ │ │ │ │ │ ├── bits.c │ │ │ │ │ │ │ ├── internal.h │ │ │ │ │ │ │ ├── mpaudec.c │ │ │ │ │ │ │ ├── mpaudec.h │ │ │ │ │ │ │ ├── mpaudectab.h │ │ │ │ │ │ │ └── mpegaudio.h │ │ │ │ │ │ ├── noise.cpp │ │ │ │ │ │ ├── resampler.cpp │ │ │ │ │ │ ├── resampler.h │ │ │ │ │ │ ├── resource.h │ │ │ │ │ │ ├── sample_buffer.cpp │ │ │ │ │ │ ├── sound.cpp │ │ │ │ │ │ ├── sound_effect.cpp │ │ │ │ │ │ ├── speexfile │ │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ │ ├── speexfile.cpp │ │ │ │ │ │ │ └── speexfile.h │ │ │ │ │ │ ├── square_wave.cpp │ │ │ │ │ │ ├── threads.h │ │ │ │ │ │ ├── threads_posix.cpp │ │ │ │ │ │ ├── threads_win32.cpp │ │ │ │ │ │ ├── timer.h │ │ │ │ │ │ ├── timer_ansi.cpp │ │ │ │ │ │ ├── timer_posix.cpp │ │ │ │ │ │ ├── timer_win32.cpp │ │ │ │ │ │ ├── tone.cpp │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ ├── utility.cpp │ │ │ │ │ │ ├── utility.h │ │ │ │ │ │ └── version.cpp │ │ │ │ │ │ ├── test │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ ├── SConscript │ │ │ │ │ │ ├── buffer │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── SConscript │ │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ ├── callback │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── callback.cpp │ │ │ │ │ │ ├── device │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── SConscript │ │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ ├── formats │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── SConscript │ │ │ │ │ │ │ └── formats.cpp │ │ │ │ │ │ ├── interactive │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ ├── kclick.wav │ │ │ │ │ │ │ ├── knock.wav │ │ │ │ │ │ │ ├── laugh.wav │ │ │ │ │ │ │ ├── main.cpp │ │ │ │ │ │ │ └── shot.wav │ │ │ │ │ │ └── performance │ │ │ │ │ │ │ ├── Makefile.am │ │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ └── third-party │ │ │ │ │ │ └── vc6 │ │ │ │ │ │ ├── include │ │ │ │ │ │ ├── FLAC++ │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── decoder.h │ │ │ │ │ │ │ ├── encoder.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ └── metadata.h │ │ │ │ │ │ ├── FLAC │ │ │ │ │ │ │ ├── all.h │ │ │ │ │ │ │ ├── assert.h │ │ │ │ │ │ │ ├── export.h │ │ │ │ │ │ │ ├── file_decoder.h │ │ │ │ │ │ │ ├── file_encoder.h │ │ │ │ │ │ │ ├── format.h │ │ │ │ │ │ │ ├── metadata.h │ │ │ │ │ │ │ ├── ordinals.h │ │ │ │ │ │ │ ├── seekable_stream_decoder.h │ │ │ │ │ │ │ ├── seekable_stream_encoder.h │ │ │ │ │ │ │ ├── stream_decoder.h │ │ │ │ │ │ │ └── stream_encoder.h │ │ │ │ │ │ ├── dumb.h │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ ├── ogg │ │ │ │ │ │ │ ├── ogg.h │ │ │ │ │ │ │ └── os_types.h │ │ │ │ │ │ ├── speex.h │ │ │ │ │ │ ├── speex_bits.h │ │ │ │ │ │ ├── speex_callbacks.h │ │ │ │ │ │ ├── speex_header.h │ │ │ │ │ │ ├── speex_stereo.h │ │ │ │ │ │ └── vorbis │ │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ │ ├── vorbisenc.h │ │ │ │ │ │ │ └── vorbisfile.h │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── dumb_static.lib │ │ │ │ │ │ ├── dumbd_static.lib │ │ │ │ │ │ ├── libFLAC++_static.lib │ │ │ │ │ │ ├── libFLAC++_static_d.lib │ │ │ │ │ │ ├── libFLAC_static.lib │ │ │ │ │ │ ├── libFLAC_static_d.lib │ │ │ │ │ │ ├── libspeex.lib │ │ │ │ │ │ ├── libspeexd.lib │ │ │ │ │ │ ├── ogg_static.lib │ │ │ │ │ │ ├── ogg_static_d.lib │ │ │ │ │ │ ├── vorbis_static.lib │ │ │ │ │ │ ├── vorbis_static_d.lib │ │ │ │ │ │ ├── vorbisfile_static.lib │ │ │ │ │ │ └── vorbisfile_static_d.lib │ │ │ │ │ │ └── readme.txt │ │ │ │ ├── CocosDenshion │ │ │ │ │ ├── CDAudioContext.h │ │ │ │ │ ├── CDAudioContext.mm │ │ │ │ │ ├── CDAudioSample.h │ │ │ │ │ ├── CDAudioSample.mm │ │ │ │ │ └── CocosDenshion │ │ │ │ │ │ ├── CDAudioManager.h │ │ │ │ │ │ ├── CDAudioManager.m │ │ │ │ │ │ ├── CDConfig.h │ │ │ │ │ │ ├── CDOpenALSupport.h │ │ │ │ │ │ ├── CDOpenALSupport.m │ │ │ │ │ │ ├── CDXMacOSXSupport.h │ │ │ │ │ │ ├── CDXMacOSXSupport.m │ │ │ │ │ │ ├── CDXMacOSXSupport.readme.txt │ │ │ │ │ │ ├── CDXMacOSXSupport_original.h │ │ │ │ │ │ ├── CDXMacOSXSupport_original.m │ │ │ │ │ │ ├── CDXPropertyModifierAction.h │ │ │ │ │ │ ├── CDXPropertyModifierAction.m │ │ │ │ │ │ ├── CocosDenshion.h │ │ │ │ │ │ ├── CocosDenshion.m │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── SimpleAudioEngine.h │ │ │ │ │ │ └── SimpleAudioEngine.m │ │ │ │ └── irrKlang │ │ │ │ │ ├── IrrKlangAudio.cpp │ │ │ │ │ ├── IrrKlangAudio.h │ │ │ │ │ ├── IrrKlangAudioSample.cpp │ │ │ │ │ └── IrrKlangAudioSample.h │ │ │ ├── BaseApplication.h │ │ │ ├── Enml │ │ │ │ ├── Enml.cpp │ │ │ │ └── Enml.h │ │ │ ├── Input.h │ │ │ ├── Input │ │ │ │ ├── Android │ │ │ │ │ ├── AndroidInput.cpp │ │ │ │ │ └── AndroidInput.h │ │ │ │ ├── KeyStateManager.cpp │ │ │ │ ├── KeyStateManager.h │ │ │ │ ├── MobileInput.cpp │ │ │ │ ├── MobileInput.h │ │ │ │ ├── SDL │ │ │ │ │ ├── SDLInput.cpp │ │ │ │ │ ├── SDLInput.h │ │ │ │ │ ├── SDLJoystick.cpp │ │ │ │ │ └── SDLJoystick.h │ │ │ │ ├── Win │ │ │ │ │ ├── WinInput.cpp │ │ │ │ │ └── WinInput.h │ │ │ │ └── iOS │ │ │ │ │ ├── IOSInput.cpp │ │ │ │ │ └── IOSInput.h │ │ │ ├── Math │ │ │ │ ├── Color.cpp │ │ │ │ ├── Color.h │ │ │ │ ├── GameMath.cpp │ │ │ │ ├── GameMath.h │ │ │ │ ├── MersenneTwister.h │ │ │ │ ├── OrientedBoundingBox.cpp │ │ │ │ ├── OrientedBoundingBox.h │ │ │ │ ├── Randomizer.cpp │ │ │ │ ├── Randomizer.h │ │ │ │ └── to-do.txt │ │ │ ├── Platform │ │ │ │ ├── FileIOHub.cpp │ │ │ │ ├── FileIOHub.h │ │ │ │ ├── FileLogger.cpp │ │ │ │ ├── FileLogger.h │ │ │ │ ├── FileManager.cpp │ │ │ │ ├── FileManager.h │ │ │ │ ├── Logger.cpp │ │ │ │ ├── Logger.h │ │ │ │ ├── MainSharedHeader.h │ │ │ │ ├── NativeCommandAssembler.cpp │ │ │ │ ├── NativeCommandAssembler.h │ │ │ │ ├── NativeCommandForwarder.cpp │ │ │ │ ├── NativeCommandForwarder.h │ │ │ │ ├── NativeCommandListener.h │ │ │ │ ├── Platform.cpp │ │ │ │ ├── Platform.h │ │ │ │ ├── SharedData │ │ │ │ │ ├── SharedData.cpp │ │ │ │ │ ├── SharedData.h │ │ │ │ │ ├── SharedDataManager.cpp │ │ │ │ │ └── SharedDataManager.h │ │ │ │ ├── StdFileManager.cpp │ │ │ │ ├── StdFileManager.h │ │ │ │ ├── StreamLogger.cpp │ │ │ │ ├── StreamLogger.h │ │ │ │ ├── ZipFileManager.cpp │ │ │ │ ├── ZipFileManager.h │ │ │ │ ├── abstract │ │ │ │ │ └── Platform.abstract.cpp │ │ │ │ ├── android │ │ │ │ │ ├── AndroidFileIOHub.cpp │ │ │ │ │ ├── AndroidFileIOHub.h │ │ │ │ │ ├── AndroidLog.h │ │ │ │ │ ├── Platform.android.cpp │ │ │ │ │ ├── Platform.android.h │ │ │ │ │ └── main.cpp │ │ │ │ ├── ios │ │ │ │ │ ├── IOSFileIOHub.cpp │ │ │ │ │ ├── IOSFileIOHub.h │ │ │ │ │ ├── IOSNativeCommandListener.h │ │ │ │ │ ├── IOSNativeCommandListener.mm │ │ │ │ │ ├── Platform.ios.h │ │ │ │ │ └── Platform.ios.mm │ │ │ │ ├── macosx │ │ │ │ │ ├── MacOSXFileIOHub.h │ │ │ │ │ ├── MacOSXFileIOHub.mm │ │ │ │ │ ├── Platform.macosx.h │ │ │ │ │ ├── Platform.macosx.mm │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── main.h │ │ │ │ │ └── main.joytest.cpp │ │ │ │ ├── main.cpp │ │ │ │ ├── sdl │ │ │ │ │ ├── SDLWindow.cpp │ │ │ │ │ └── SDLWindow.h │ │ │ │ └── windows │ │ │ │ │ ├── Platform.windows.cpp │ │ │ │ │ ├── WindowsFileIOHub.cpp │ │ │ │ │ └── WindowsFileIOHub.h │ │ │ ├── Player.h │ │ │ ├── Shader.h │ │ │ ├── Sprite.cpp │ │ │ ├── Sprite.h │ │ │ ├── Testbed │ │ │ │ ├── main.cpp │ │ │ │ └── resources │ │ │ │ │ ├── banjo.mp3 │ │ │ │ │ ├── bite.mp3 │ │ │ │ │ ├── combo.mp3 │ │ │ │ │ ├── cool_skull.png │ │ │ │ │ ├── fonts │ │ │ │ │ ├── Verdana20_shadow.fnt │ │ │ │ │ └── Verdana20_shadow.png │ │ │ │ │ ├── planets.png │ │ │ │ │ ├── planets_black.png │ │ │ │ │ ├── road.jpg │ │ │ │ │ ├── shaders │ │ │ │ │ ├── minimalPixelShader.cg │ │ │ │ │ └── pixelShaderTest.cg │ │ │ │ │ └── tileset.png │ │ │ ├── Texture.h │ │ │ ├── Types.h │ │ │ ├── Unicode │ │ │ │ └── utf8 │ │ │ │ │ ├── utf8.h │ │ │ │ │ └── utf8 │ │ │ │ │ ├── checked.h │ │ │ │ │ ├── core.h │ │ │ │ │ └── unchecked.h │ │ │ ├── Utilities │ │ │ │ ├── RecoverableResource.cpp │ │ │ │ ├── RecoverableResource.h │ │ │ │ ├── RecoverableResourceManager.cpp │ │ │ │ └── RecoverableResourceManager.h │ │ │ ├── Video.cpp │ │ │ ├── Video.h │ │ │ ├── Video │ │ │ │ ├── BitmapFont.cpp │ │ │ │ ├── BitmapFont.h │ │ │ │ ├── BitmapFontManager.cpp │ │ │ │ ├── BitmapFontManager.h │ │ │ │ ├── DShow │ │ │ │ │ ├── DShowPlayer.cpp │ │ │ │ │ └── DShowPlayer.h │ │ │ │ ├── Direct3D9 │ │ │ │ │ ├── D3D9CgShader.cpp │ │ │ │ │ ├── D3D9CgShader.h │ │ │ │ │ ├── D3D9Sprite.cpp │ │ │ │ │ ├── D3D9Sprite.h │ │ │ │ │ ├── D3D9Texture.cpp │ │ │ │ │ ├── D3D9Texture.h │ │ │ │ │ ├── D3D9Video.cpp │ │ │ │ │ ├── D3D9Video.h │ │ │ │ │ ├── D3D9VideoInfo.cpp │ │ │ │ │ └── D3D9VideoInfo.h │ │ │ │ ├── GL │ │ │ │ │ ├── Cg │ │ │ │ │ │ ├── GLCgShader.cpp │ │ │ │ │ │ ├── GLCgShader.h │ │ │ │ │ │ ├── GLCgShaderContext.cpp │ │ │ │ │ │ └── GLCgShaderContext.h │ │ │ │ │ ├── GLInclude.h │ │ │ │ │ ├── GLRectRenderer.cpp │ │ │ │ │ ├── GLRectRenderer.h │ │ │ │ │ ├── GLSprite.cpp │ │ │ │ │ ├── GLSprite.h │ │ │ │ │ ├── GLTexture.cpp │ │ │ │ │ ├── GLTexture.h │ │ │ │ │ ├── GLVideo.cpp │ │ │ │ │ └── GLVideo.h │ │ │ │ ├── GLES2 │ │ │ │ │ ├── GLES2RectRenderer.cpp │ │ │ │ │ ├── GLES2RectRenderer.h │ │ │ │ │ ├── GLES2Shader.cpp │ │ │ │ │ ├── GLES2Shader.h │ │ │ │ │ ├── GLES2Sprite.cpp │ │ │ │ │ ├── GLES2Sprite.h │ │ │ │ │ ├── GLES2Texture.cpp │ │ │ │ │ ├── GLES2Texture.h │ │ │ │ │ ├── GLES2UniformParameter.cpp │ │ │ │ │ ├── GLES2UniformParameter.h │ │ │ │ │ ├── GLES2Video.cpp │ │ │ │ │ ├── GLES2Video.h │ │ │ │ │ ├── android │ │ │ │ │ │ ├── AndroidGLES2Video.cpp │ │ │ │ │ │ └── AndroidGLES2Video.h │ │ │ │ │ └── ios │ │ │ │ │ │ ├── IOSGLES2Video.h │ │ │ │ │ │ └── IOSGLES2Video.mm │ │ │ │ ├── GLSDL │ │ │ │ │ ├── GLSDLVideo.cpp │ │ │ │ │ └── GLSDLVideo.h │ │ │ │ ├── cgShaderCode.h │ │ │ │ └── glslShaderCode.h │ │ │ └── Window.h │ │ └── vendors │ │ │ ├── 7za.exe │ │ │ ├── Cg.framework.zip │ │ │ ├── LinuxCgSDK.7z │ │ │ ├── LinuxOpenGL.7z │ │ │ ├── LinuxSDL.7z │ │ │ ├── SDL2.framework.zip │ │ │ ├── irrKlang.zip │ │ │ ├── libzip_msvc │ │ │ ├── config.h │ │ │ ├── inttypes.h │ │ │ ├── mkstemp.c │ │ │ ├── stdint.h │ │ │ ├── zip.h │ │ │ ├── zip_add.c │ │ │ ├── zip_add_dir.c │ │ │ ├── zip_close.c │ │ │ ├── zip_delete.c │ │ │ ├── zip_dirent.c │ │ │ ├── zip_entry_free.c │ │ │ ├── zip_entry_new.c │ │ │ ├── zip_err_str.c │ │ │ ├── zip_error.c │ │ │ ├── zip_error_clear.c │ │ │ ├── zip_error_get.c │ │ │ ├── zip_error_get_sys_type.c │ │ │ ├── zip_error_strerror.c │ │ │ ├── zip_error_to_str.c │ │ │ ├── zip_fclose.c │ │ │ ├── zip_fdopen.c │ │ │ ├── zip_file_error_clear.c │ │ │ ├── zip_file_error_get.c │ │ │ ├── zip_file_get_offset.c │ │ │ ├── zip_file_strerror.c │ │ │ ├── zip_filerange_crc.c │ │ │ ├── zip_fopen.c │ │ │ ├── zip_fopen_encrypted.c │ │ │ ├── zip_fopen_index.c │ │ │ ├── zip_fopen_index_encrypted.c │ │ │ ├── zip_fread.c │ │ │ ├── zip_free.c │ │ │ ├── zip_get_archive_comment.c │ │ │ ├── zip_get_archive_flag.c │ │ │ ├── zip_get_compression_implementation.c │ │ │ ├── zip_get_encryption_implementation.c │ │ │ ├── zip_get_file_comment.c │ │ │ ├── zip_get_file_extra.c │ │ │ ├── zip_get_name.c │ │ │ ├── zip_get_num_entries.c │ │ │ ├── zip_get_num_files.c │ │ │ ├── zip_memdup.c │ │ │ ├── zip_name_locate.c │ │ │ ├── zip_new.c │ │ │ ├── zip_open.c │ │ │ ├── zip_rename.c │ │ │ ├── zip_replace.c │ │ │ ├── zip_set_archive_comment.c │ │ │ ├── zip_set_archive_flag.c │ │ │ ├── zip_set_default_password.c │ │ │ ├── zip_set_file_comment.c │ │ │ ├── zip_set_file_extra.c │ │ │ ├── zip_set_name.c │ │ │ ├── zip_source_buffer.c │ │ │ ├── zip_source_close.c │ │ │ ├── zip_source_crc.c │ │ │ ├── zip_source_deflate.c │ │ │ ├── zip_source_error.c │ │ │ ├── zip_source_file.c │ │ │ ├── zip_source_filep.c │ │ │ ├── zip_source_free.c │ │ │ ├── zip_source_function.c │ │ │ ├── zip_source_layered.c │ │ │ ├── zip_source_open.c │ │ │ ├── zip_source_pkware.c │ │ │ ├── zip_source_pop.c │ │ │ ├── zip_source_read.c │ │ │ ├── zip_source_stat.c │ │ │ ├── zip_source_zip.c │ │ │ ├── zip_stat.c │ │ │ ├── zip_stat_index.c │ │ │ ├── zip_stat_init.c │ │ │ ├── zip_strerror.c │ │ │ ├── zip_unchange.c │ │ │ ├── zip_unchange_all.c │ │ │ ├── zip_unchange_archive.c │ │ │ ├── zip_unchange_data.c │ │ │ ├── zipconf.h │ │ │ └── zipint.h │ │ │ ├── pack_linux_vendors.sh │ │ │ ├── pack_vendors.bat │ │ │ ├── soil │ │ │ ├── Android.mk │ │ │ ├── SOIL.c │ │ │ ├── SOIL.h │ │ │ ├── image_DXT.c │ │ │ ├── image_DXT.h │ │ │ ├── image_helper.c │ │ │ ├── image_helper.h │ │ │ ├── original │ │ │ │ ├── stb_image-1.09.c │ │ │ │ └── stb_image-1.16.c │ │ │ ├── stb_image_aug.c │ │ │ ├── stb_image_aug.h │ │ │ ├── stbi_DDS_aug.h │ │ │ ├── stbi_DDS_aug_c.h │ │ │ └── test_SOIL.cpp │ │ │ ├── unpack_linux_vendors.sh │ │ │ ├── unpack_vendors.bat │ │ │ ├── vendors.7z │ │ │ └── zlib_msvc │ │ │ ├── adler32.c │ │ │ ├── compress.c │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── uncompr.c │ │ │ ├── zconf.h │ │ │ ├── zlib.h │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ ├── machine │ │ └── main.cpp │ │ ├── shaders │ │ ├── Cg │ │ │ ├── defaultVS.cg │ │ │ ├── dynaShadowVS.cg │ │ │ ├── hAmbientVS.cg │ │ │ ├── hPixelLightDiff.cg │ │ │ ├── hPixelLightSpec.cg │ │ │ ├── hPixelLightVS.cg │ │ │ ├── hVertexLightShader.cg │ │ │ ├── highlightPS.cg │ │ │ ├── particleVS.cg │ │ │ ├── vAmbientVS.cg │ │ │ ├── vPixelLightDiff.cg │ │ │ ├── vPixelLightSpec.cg │ │ │ ├── vPixelLightVS.cg │ │ │ └── vVertexLightShader.cg │ │ ├── GLSL │ │ │ ├── default.ps │ │ │ ├── default.vs │ │ │ ├── default │ │ │ │ ├── add1.ps │ │ │ │ ├── default.ps │ │ │ │ ├── default.vs │ │ │ │ ├── fastRender.vs │ │ │ │ ├── modulate1.ps │ │ │ │ └── optimal.vs │ │ │ ├── hAmbient.vs │ │ │ ├── hPixelLight.vs │ │ │ ├── hPixelLightDiff.ps │ │ │ ├── highlight.ps │ │ │ ├── optimal.vs │ │ │ ├── particle.vs │ │ │ ├── vAmbient.vs │ │ │ ├── vPixelLight.vs │ │ │ └── vPixelLightDiff.ps │ │ └── shaders.h │ │ ├── soil │ │ ├── Android.mk │ │ ├── SOIL.c │ │ ├── SOIL.h │ │ ├── image_DXT.c │ │ ├── image_DXT.h │ │ ├── image_helper.c │ │ ├── image_helper.h │ │ ├── original │ │ │ ├── stb_image-1.09.c │ │ │ └── stb_image-1.16.c │ │ ├── stb_image_aug.c │ │ ├── stb_image_aug.h │ │ ├── stbi_DDS_aug.h │ │ ├── stbi_DDS_aug_c.h │ │ └── test_SOIL.cpp │ │ └── vendors │ │ ├── hashlib2plus │ │ ├── project │ │ │ └── msvc9 │ │ │ │ └── hashlib │ │ │ │ └── hashlib.vcproj │ │ └── src │ │ │ ├── hashlibpp.h │ │ │ ├── hl_exception.h │ │ │ ├── hl_hashwrapper.h │ │ │ ├── hl_md5.cpp │ │ │ ├── hl_md5.h │ │ │ ├── hl_md5wrapper.cpp │ │ │ ├── hl_md5wrapper.h │ │ │ ├── hl_sha1.cpp │ │ │ ├── hl_sha1.h │ │ │ ├── hl_sha1wrapper.cpp │ │ │ ├── hl_sha1wrapper.h │ │ │ ├── hl_sha256.cpp │ │ │ ├── hl_sha256.h │ │ │ ├── hl_sha256wrapper.cpp │ │ │ ├── hl_sha256wrapper.h │ │ │ ├── hl_sha2ext.cpp │ │ │ ├── hl_sha2ext.h │ │ │ ├── hl_sha2mac.h │ │ │ ├── hl_sha384wrapper.cpp │ │ │ ├── hl_sha384wrapper.h │ │ │ ├── hl_sha512wrapper.cpp │ │ │ ├── hl_sha512wrapper.h │ │ │ ├── hl_types.h │ │ │ ├── hl_wrapperfactory.cpp │ │ │ └── hl_wrapperfactory.h │ │ ├── libjson │ │ ├── JSONOptions.h │ │ ├── Source │ │ │ ├── JSONChildren.cpp │ │ │ ├── JSONChildren.h │ │ │ ├── JSONDebug.cpp │ │ │ ├── JSONDebug.h │ │ │ ├── JSONDefs.h │ │ │ ├── JSONIterators.cpp │ │ │ ├── JSONMemory.cpp │ │ │ ├── JSONMemory.h │ │ │ ├── JSONNode.cpp │ │ │ ├── JSONNode.h │ │ │ ├── JSONNode_Mutex.cpp │ │ │ ├── JSONWorker.cpp │ │ │ ├── JSONWorker.h │ │ │ ├── JSONWriter.cpp │ │ │ ├── JSON_Base64.cpp │ │ │ ├── JSON_Base64.h │ │ │ ├── NumberToString.h │ │ │ ├── internalJSONNode.cpp │ │ │ ├── internalJSONNode.h │ │ │ └── libjson.cpp │ │ ├── libjson.h │ │ ├── makefile │ │ └── version │ │ ├── tinyxml_ansi │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp │ │ └── tinyxml_utf16 │ │ ├── tinystr.cpp │ │ ├── tinystr.h │ │ ├── tinyxml.cpp │ │ ├── tinyxml.h │ │ ├── tinyxmlerror.cpp │ │ └── tinyxmlparser.cpp ├── Utilites │ ├── Utilites.sln │ ├── projects │ │ └── msvc9 │ │ │ └── TextFormatVerifier │ │ │ └── TextFormatVerifier.vcproj │ └── source │ │ └── TextFormatVerifier │ │ ├── AsciiVerifier.cpp │ │ ├── AsciiVerifier.h │ │ ├── Messages.cpp │ │ ├── Messages.h │ │ ├── TextFormatVerifier.cpp │ │ ├── Utf16Verifier.cpp │ │ ├── Utf16Verifier.h │ │ ├── Utf8Verifier.cpp │ │ ├── Utf8Verifier.h │ │ ├── WildcardSearcher.cpp │ │ ├── WildcardSearcher.h │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h ├── license.txt ├── make_build.bat ├── make_deploy.bat └── readme.txt └── verify_text_formats.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/README.md -------------------------------------------------------------------------------- /documentation/Manual/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Manual/readme.txt -------------------------------------------------------------------------------- /documentation/Sample-Projects/Sample-project/app.enml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Sample-Projects/Sample-project/app.enml -------------------------------------------------------------------------------- /documentation/Sample-Projects/Sample-project/sample.ethproj: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation/Tools/BMFont/doc/command_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/BMFont/doc/command_line.html -------------------------------------------------------------------------------- /documentation/Tools/BMFont/doc/export_options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/BMFont/doc/export_options.html -------------------------------------------------------------------------------- /documentation/Tools/BMFont/doc/export_options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/BMFont/doc/export_options.png -------------------------------------------------------------------------------- /documentation/Tools/BMFont/doc/file_format.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/BMFont/doc/file_format.html -------------------------------------------------------------------------------- /documentation/Tools/BMFont/doc/font_settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/BMFont/doc/font_settings.html -------------------------------------------------------------------------------- /documentation/Tools/BMFont/doc/font_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/BMFont/doc/font_settings.png -------------------------------------------------------------------------------- /documentation/Tools/BMFont/doc/known_issues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/BMFont/doc/known_issues.html -------------------------------------------------------------------------------- /documentation/Tools/BMFont/doc/pixel_shader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/BMFont/doc/pixel_shader.html -------------------------------------------------------------------------------- /documentation/Tools/BMFont/documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/BMFont/documentation.html -------------------------------------------------------------------------------- /documentation/Tools/BMFont/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/BMFont/readme.txt -------------------------------------------------------------------------------- /documentation/Tools/SciTE/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/License.txt -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/CommandValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/CommandValues.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/PrintHi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/PrintHi.png -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciBreak2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciBreak2.jpg -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTE.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTEDirector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTEDirector.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTEDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTEDoc.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTEDownload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTEDownload.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTEExtension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTEExtension.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTEExternalLexer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTEExternalLexer.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTEExtras.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTEExtras.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTEFAQ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTEFAQ.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTEIco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTEIco.png -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTEImage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTEImage.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTELexer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTELexer.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTELua.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTELua.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTERegEx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTERegEx.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/SciTEWord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/SciTEWord.jpg -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/ScriptLexer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/ScriptLexer.html -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/demo.png -------------------------------------------------------------------------------- /documentation/Tools/SciTE/doc/scite.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Tools/SciTE/doc/scite.1 -------------------------------------------------------------------------------- /documentation/Vendors/libjson/Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Vendors/libjson/Documentation.pdf -------------------------------------------------------------------------------- /documentation/Vendors/libjson/TestSuite.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/documentation/Vendors/libjson/TestSuite.zip -------------------------------------------------------------------------------- /testbed/GeneralTests/Test/Test.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/Test/Test.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/Test/TestCustomData.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/Test/TestCustomData.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/Test/TestEntity.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/Test/TestEntity.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/Test/TestFile.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/Test/TestFile.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/Test/TestLighting.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/Test/TestLighting.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/Test/TestRigidBodies.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/Test/TestRigidBodies.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/Test/TestSceneScale.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/Test/TestSceneScale.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/Test/TestTempEntities.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/Test/TestTempEntities.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/Testbed.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/Testbed.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/app.enml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/app.enml -------------------------------------------------------------------------------- /testbed/GeneralTests/data/SimSun14.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/SimSun14.fnt -------------------------------------------------------------------------------- /testbed/GeneralTests/data/SimSun14_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/SimSun14_0.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/SimSun14_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/SimSun14_1.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/SimSun14_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/SimSun14_2.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/SimSun14_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/SimSun14_3.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/SimSun14_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/SimSun14_4.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/SimSun14_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/SimSun14_5.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana128.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana128.fnt -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana128_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana128_0.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana128_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana128_1.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana128_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana128_2.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana128_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana128_3.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana128_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana128_4.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana14_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana14_shadow.fnt -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana14_shadow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana14_shadow_0.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana20.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana20.fnt -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana20_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana20_0.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana20_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana20_shadow.fnt -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana20_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana20_shadow.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana24.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana24.fnt -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana24_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana24_0.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana24_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana24_shadow.fnt -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana24_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana24_shadow.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana30.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana30.fnt -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana30_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana30_0.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana30_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana30_shadow.fnt -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana30_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana30_shadow.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana64.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana64.fnt -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana64_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana64_0.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/Verdana64_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/Verdana64_1.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/default_nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/default_nm.png -------------------------------------------------------------------------------- /testbed/GeneralTests/data/shadow.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/shadow.dds -------------------------------------------------------------------------------- /testbed/GeneralTests/data/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/data/shadow.png -------------------------------------------------------------------------------- /testbed/GeneralTests/effects/big_torch.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/effects/big_torch.par -------------------------------------------------------------------------------- /testbed/GeneralTests/effects/bitmap_not_to_be_found.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/effects/bitmap_not_to_be_found.par -------------------------------------------------------------------------------- /testbed/GeneralTests/effects/explosion.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/effects/explosion.par -------------------------------------------------------------------------------- /testbed/GeneralTests/effects/explosion_particles.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/effects/explosion_particles.par -------------------------------------------------------------------------------- /testbed/GeneralTests/effects/fire.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/effects/fire.par -------------------------------------------------------------------------------- /testbed/GeneralTests/effects/fire_wsound.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/effects/fire_wsound.par -------------------------------------------------------------------------------- /testbed/GeneralTests/effects/fireball.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/effects/fireball.par -------------------------------------------------------------------------------- /testbed/GeneralTests/effects/sparkling_fire.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/effects/sparkling_fire.par -------------------------------------------------------------------------------- /testbed/GeneralTests/effects/torch.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/effects/torch.par -------------------------------------------------------------------------------- /testbed/GeneralTests/effects/wave.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/effects/wave.par -------------------------------------------------------------------------------- /testbed/GeneralTests/entities.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities.zip -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/CRATE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/CRATE.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/LOS-GreyBirdFly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/LOS-GreyBirdFly.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/STONE03A.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/STONE03A.JPG -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/STONE03A2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/STONE03A2.jpg -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/STONE03A4x.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/STONE03A4x.JPG -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/arvore1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/arvore1.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/asteroid_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/asteroid_64.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/asteroid_body.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/asteroid_body.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/barrel.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/barrel.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/barrel_light.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/barrel_light.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/barrel_not_found.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/barrel_not_found.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/barrel_on_fire.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/barrel_on_fire.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/barrel_with_data.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/barrel_with_data.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/barril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/barril.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/big_torch.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/big_torch.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/bird_utf8_bom.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/bird_utf8_bom.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/blood.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/blood.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/blooddecal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/blooddecal.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/blue_light.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/blue_light.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/bump_test_floor.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/bump_test_floor.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/bump_test_wall.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/bump_test_wall.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/character.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/character.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/colormap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/colormap.jpg -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/concrete_body.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/concrete_body.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/concrete_platform.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/concrete_platform.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/explosion1.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/explosion1.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/explosion2.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/explosion2.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/fire_with_sound.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/fire_with_sound.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/fireball.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/fireball.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/gloss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/gloss.jpg -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/green_light.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/green_light.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/half_crate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/half_crate.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/half_metal_crate.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/half_metal_crate.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/halo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/halo.bmp -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/halo1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/halo1.bmp -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/horizontalBumpOdd.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/horizontalBumpOdd.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/huge_light.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/huge_light.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/hunter03recolourxi8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/hunter03recolourxi8.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/invisible_entity.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/invisible_entity.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/lollipop.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/lollipop.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/lollipop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/lollipop.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/metal_crate_body.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/metal_crate_body.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/metal_crate_body_half.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/metal_crate_body_half.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/normalmaps/barril_nm.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/normalmaps/barril_nm.bmp -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/normalmaps/bump_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/normalmaps/bump_test.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/normalmaps/bump_test_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/normalmaps/bump_test_h.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/normalmaps/normal_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/normalmaps/normal_map.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/palm.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/palm.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/pilar_ct_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/pilar_ct_small.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/pillar_fire.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/pillar_fire.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/quarter_wall.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/quarter_wall.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/raw_barrel.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/raw_barrel.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/red_light.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/red_light.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/sensor.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/sensor.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/small_bump_test.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/small_bump_test.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/spinning_cross.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/spinning_cross.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/spinning_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/spinning_cross.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/tall_shadow_barrel.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/tall_shadow_barrel.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/ushape.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/ushape.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/ushape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/ushape.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/ushape_joint.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/ushape_joint.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/vertical_character.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/vertical_character.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/white.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/white.bmp -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/white.png -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/white_ground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/white_ground.jpg -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/white_light.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/white_light.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/entities/yellow_light.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/entities/yellow_light.ent -------------------------------------------------------------------------------- /testbed/GeneralTests/eth_util.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/eth_util.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/globalCallbacks.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/globalCallbacks.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/main.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/main.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/nonCoreTests.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/nonCoreTests.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/particles/explosion.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/particles/explosion.JPG -------------------------------------------------------------------------------- /testbed/GeneralTests/particles/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/particles/explosion.png -------------------------------------------------------------------------------- /testbed/GeneralTests/particles/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/particles/fire.png -------------------------------------------------------------------------------- /testbed/GeneralTests/particles/onda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/particles/onda.png -------------------------------------------------------------------------------- /testbed/GeneralTests/particles/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/particles/particle.png -------------------------------------------------------------------------------- /testbed/GeneralTests/plane_math.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/plane_math.angelscript -------------------------------------------------------------------------------- /testbed/GeneralTests/scenes/TestEntity.esc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/scenes/TestEntity.esc -------------------------------------------------------------------------------- /testbed/GeneralTests/scenes/customDataTesting.esc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/scenes/customDataTesting.esc -------------------------------------------------------------------------------- /testbed/GeneralTests/scenes/entity_selection_test.esc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/scenes/entity_selection_test.esc -------------------------------------------------------------------------------- /testbed/GeneralTests/scenes/physicsTest.esc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/scenes/physicsTest.esc -------------------------------------------------------------------------------- /testbed/GeneralTests/scenes/sceneScaleTest.esc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/scenes/sceneScaleTest.esc -------------------------------------------------------------------------------- /testbed/GeneralTests/scenes/shadowTests.esc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/scenes/shadowTests.esc -------------------------------------------------------------------------------- /testbed/GeneralTests/scenes/temporary_entity_test.esc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/scenes/temporary_entity_test.esc -------------------------------------------------------------------------------- /testbed/GeneralTests/scenes/verticalParallaxTest.esc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/scenes/verticalParallaxTest.esc -------------------------------------------------------------------------------- /testbed/GeneralTests/soundfx/explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/soundfx/explosion.ogg -------------------------------------------------------------------------------- /testbed/GeneralTests/soundfx/fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/soundfx/fire.ogg -------------------------------------------------------------------------------- /testbed/GeneralTests/sprite/barril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/sprite/barril.png -------------------------------------------------------------------------------- /testbed/GeneralTests/sprite/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/GeneralTests/sprite/sphere.png -------------------------------------------------------------------------------- /testbed/GeneralTests/testbed.ethproj: -------------------------------------------------------------------------------- 1 | Ethanon Engine project file -------------------------------------------------------------------------------- /testbed/KeyboardTests/app.enml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/KeyboardTests/app.enml -------------------------------------------------------------------------------- /testbed/KeyboardTests/data/Verdana20_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/KeyboardTests/data/Verdana20_shadow.fnt -------------------------------------------------------------------------------- /testbed/KeyboardTests/data/Verdana20_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/KeyboardTests/data/Verdana20_shadow.png -------------------------------------------------------------------------------- /testbed/KeyboardTests/data/Verdana30_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/KeyboardTests/data/Verdana30_shadow.fnt -------------------------------------------------------------------------------- /testbed/KeyboardTests/data/Verdana30_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/KeyboardTests/data/Verdana30_shadow.png -------------------------------------------------------------------------------- /testbed/KeyboardTests/data/default_nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/KeyboardTests/data/default_nm.png -------------------------------------------------------------------------------- /testbed/KeyboardTests/data/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/KeyboardTests/data/shadow.png -------------------------------------------------------------------------------- /testbed/KeyboardTests/data/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/KeyboardTests/data/splash.bmp -------------------------------------------------------------------------------- /testbed/KeyboardTests/main.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/KeyboardTests/main.angelscript -------------------------------------------------------------------------------- /testbed/KeyboardTests/particles/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/KeyboardTests/particles/particle.png -------------------------------------------------------------------------------- /testbed/ShaderTests/app.enml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/app.enml -------------------------------------------------------------------------------- /testbed/ShaderTests/data/Verdana24_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/data/Verdana24_shadow.fnt -------------------------------------------------------------------------------- /testbed/ShaderTests/data/Verdana24_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/data/Verdana24_shadow.png -------------------------------------------------------------------------------- /testbed/ShaderTests/data/default_nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/data/default_nm.png -------------------------------------------------------------------------------- /testbed/ShaderTests/data/shadow.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/data/shadow.dds -------------------------------------------------------------------------------- /testbed/ShaderTests/data/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/data/shadow.png -------------------------------------------------------------------------------- /testbed/ShaderTests/data/splash.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/data/splash.bmp -------------------------------------------------------------------------------- /testbed/ShaderTests/effects/readme.txt: -------------------------------------------------------------------------------- 1 | All *.PAR effect files must be in this folder. -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/arvore1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/entities/arvore1.png -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/asteroid.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/entities/asteroid.ent -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/asteroid_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/entities/asteroid_64.png -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/barrel_blue_light.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/entities/barrel_blue_light.ent -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/barrel_red_light.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/entities/barrel_red_light.ent -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/barril.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/entities/barril.png -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/ground.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/entities/ground.ent -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/halo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/entities/halo.bmp -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/normalmaps/normal_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/entities/normalmaps/normal_map.png -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/normalmaps/readme.txt: -------------------------------------------------------------------------------- 1 | All normal map bitmaps must be in this folder. -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/tree.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/entities/tree.ent -------------------------------------------------------------------------------- /testbed/ShaderTests/entities/white_ground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/entities/white_ground.jpg -------------------------------------------------------------------------------- /testbed/ShaderTests/main.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/main.angelscript -------------------------------------------------------------------------------- /testbed/ShaderTests/particles/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/particles/particle.png -------------------------------------------------------------------------------- /testbed/ShaderTests/particles/readme.txt: -------------------------------------------------------------------------------- 1 | All particle bitmaps must be in this folder. -------------------------------------------------------------------------------- /testbed/ShaderTests/scenes/readme.txt: -------------------------------------------------------------------------------- 1 | Is is recommended to save all scene *.ESC files in this folder. -------------------------------------------------------------------------------- /testbed/ShaderTests/scenes/scene.esc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/scenes/scene.esc -------------------------------------------------------------------------------- /testbed/ShaderTests/shader-tests.ethproj: -------------------------------------------------------------------------------- 1 | Ethanon Engine project file -------------------------------------------------------------------------------- /testbed/ShaderTests/soundfx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/testbed/ShaderTests/soundfx/readme.txt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/Collide.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/Collide.angelscript -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/app.enml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/app.enml -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana14_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana14_shadow.fnt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana14_shadow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana14_shadow_0.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana20.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana20.fnt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana20_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana20_0.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana20_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana20_shadow.fnt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana20_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana20_shadow.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana24.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana24.fnt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana24_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana24_0.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana24_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana24_shadow.fnt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana24_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana24_shadow.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana30.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana30.fnt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana30_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana30_0.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana30_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana30_shadow.fnt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana30_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana30_shadow.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana64.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana64.fnt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana64_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana64_0.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana64_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana64_1.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana64_shadow.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana64_shadow.fnt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana64_shadow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana64_shadow_0.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/Verdana64_shadow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/Verdana64_shadow_1.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/arrow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/arrow.bmp -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/arrows.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/axis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/axis.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/bs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/bs.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/curve_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/curve_right.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/default_nm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/default_nm.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/invisible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/invisible.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/l.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/nextapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/nextapp.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/outline.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/p.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/parallax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/parallax.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/play.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/range.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/rich_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/rich_outline.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/shadow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/shadow.bmp -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/shadow.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/shadow.dds -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/shadow.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/soundwave.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/soundwave.dds -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/soundwave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/soundwave.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/spot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/spot.bmp -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/data/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/data/stop.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/editor.enml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/editor.enml -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/effects/readme.txt: -------------------------------------------------------------------------------- 1 | All *.PAR effect files must be in this folder. -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/entities/normalmaps/readme.txt: -------------------------------------------------------------------------------- 1 | All normal map bitmaps must be in this folder. -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/entities/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/entities/readme.txt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/eth_util.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/eth_util.angelscript -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/main.angelscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/main.angelscript -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/particles/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/particles/particle.png -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/particles/readme.txt: -------------------------------------------------------------------------------- 1 | All particle bitmaps must be in this folder. -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/scenes/readme.txt: -------------------------------------------------------------------------------- 1 | Is is recommended to save all scene *.ESC files in this folder. -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/soundfx/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/soundfx/readme.txt -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/7za.exe -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/BMFont/bmfont.bmfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/BMFont/bmfont.bmfc -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/BMFont/bmfont.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/BMFont/bmfont.com -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/BMFont/bmfont.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/BMFont/bmfont.exe -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/SciTE/SciLexer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/SciTE/SciLexer.dll -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/SciTE/SciTE.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/SciTE/SciTE.exe -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/SciTE/cpp.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/SciTE/cpp.properties -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/SciTE/locale.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/SciTE/locale.properties -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/ShaderToCHeader/app.enml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/ShaderToCHeader/app.enml -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/ShaderToCHeader/shader-to-c-header.ethproj: -------------------------------------------------------------------------------- 1 | Ethanon Engine project file -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/Sublime-Package/Ethanon/Ethanon.sublime-settings: -------------------------------------------------------------------------------- 1 | { 2 | "extensions": ["angelscript"] 3 | } 4 | -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/Sublime-Package/readme.md: -------------------------------------------------------------------------------- 1 | how-to-install.md -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/pack_tools.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/pack_tools.bat -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/tools.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/tools.7z -------------------------------------------------------------------------------- /toolkit/Ethanon Toolkit/tools/unpack_tools.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Ethanon Toolkit/tools/unpack_tools.bat -------------------------------------------------------------------------------- /toolkit/Installer/About.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Installer/About.rtf -------------------------------------------------------------------------------- /toolkit/Installer/MIT_LICENSE.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Installer/MIT_LICENSE.rtf -------------------------------------------------------------------------------- /toolkit/Installer/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Installer/icon.ico -------------------------------------------------------------------------------- /toolkit/Installer/installer.windows.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Installer/installer.windows.iss -------------------------------------------------------------------------------- /toolkit/Source/Ethanon Engine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/Ethanon Engine.sln -------------------------------------------------------------------------------- /toolkit/Source/projects/msvc9/afxres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/msvc9/afxres.h -------------------------------------------------------------------------------- /toolkit/Source/projects/msvc9/file_version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/msvc9/file_version.rc -------------------------------------------------------------------------------- /toolkit/Source/projects/msvc9/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/msvc9/icon.ico -------------------------------------------------------------------------------- /toolkit/Source/projects/msvc9/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/msvc9/resource.h -------------------------------------------------------------------------------- /toolkit/Source/projects/msvc9/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/msvc9/resource.rc -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/OSXEditor/Ethanon Editor/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/OSXEditor/editor_icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/OSXEditor/editor_icon.icns -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/OSXEditor/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/OSXEditor/icon.icns -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/OSXEngine/engine/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/OSXMachine/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/OSXMachine/icon.icns -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/OSXMachine/machine/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/iOS/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/iOS/Default-568h@2x.png -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/iOS/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/iOS/Default.png -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/iOS/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/iOS/Default@2x.png -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/iOS/Ethanon/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/iOS/Ethanon/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/iOS/Ethanon/main.m -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/iOS/assets/read-me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/iOS/assets/read-me.txt -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/iOS/ethanon_icon_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/iOS/ethanon_icon_114.png -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/iOS/ethanon_icon_144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/iOS/ethanon_icon_144.png -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/iOS/ethanon_icon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/iOS/ethanon_icon_57.png -------------------------------------------------------------------------------- /toolkit/Source/projects/xcode/iOS/ethanon_icon_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/projects/xcode/iOS/ethanon_icon_72.png -------------------------------------------------------------------------------- /toolkit/Source/src/addons/aswrappedcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/aswrappedcall.h -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptarray.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptarray.h -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptbuilder.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptbuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptbuilder.h -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptdictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptdictionary.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptdictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptdictionary.h -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptfile.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptfile.h -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptmath.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptmath.h -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptmath2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptmath2d.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptmath2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptmath2d.h -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptmath3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptmath3d.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptmath3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptmath3d.h -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptstdstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptstdstring.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/addons/scriptstdstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/addons/scriptstdstring.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/include/angelscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/include/angelscript.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/lib/delete.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/lib/delete.me -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/projects/BCBuilder/pch1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/projects/BCBuilder/pch1.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/projects/dev-cpp/obj/delete.me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/projects/eclipse/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/projects/eclipse/.project -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/projects/gnuc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/projects/gnuc/makefile -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/projects/gnuc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/projects/gnuc/readme.txt -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/projects/mingw/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/projects/mingw/makefile -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/projects/mingw/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/projects/mingw/readme.txt -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/projects/msvc7/msvc7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/projects/msvc7/msvc7.sln -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_array.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_atomic.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_atomic.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_builder.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_builder.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_bytecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_bytecode.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_bytecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_bytecode.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_callfunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_callfunc.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_callfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_callfunc.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_compiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_compiler.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_compiler.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_config.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_configgroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_configgroup.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_configgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_configgroup.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_context.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_context.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_datatype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_datatype.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_datatype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_datatype.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_debug.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_gc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_gc.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_gc.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_generic.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_generic.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_map.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_memory.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_memory.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_module.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_module.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_objecttype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_objecttype.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_objecttype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_objecttype.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_outputbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_outputbuffer.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_parser.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_parser.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_property.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_restore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_restore.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_restore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_restore.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_scriptcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_scriptcode.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_scriptcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_scriptcode.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_scriptengine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_scriptengine.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_scriptnode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_scriptnode.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_scriptnode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_scriptnode.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_scriptobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_scriptobject.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_string.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_string.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_string_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_string_util.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_string_util.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_symboltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_symboltable.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_texts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_texts.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_thread.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_thread.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_tokendef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_tokendef.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_tokenizer.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_tokenizer.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_typeinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_typeinfo.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_typeinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_typeinfo.h -------------------------------------------------------------------------------- /toolkit/Source/src/angelscript/source/as_variablescope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/angelscript/source/as_variablescope.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Box2D.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Box2DConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Box2DConfig.cmake -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/CMakeLists.txt -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Collision/b2BroadPhase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Collision/b2BroadPhase.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Collision/b2Collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Collision/b2Collision.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Collision/b2Collision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Collision/b2Collision.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Collision/b2Distance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Collision/b2Distance.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Collision/b2Distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Collision/b2Distance.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Collision/b2DynamicTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Collision/b2DynamicTree.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Common/b2BlockAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Common/b2BlockAllocator.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Common/b2Draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Common/b2Draw.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Common/b2Draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Common/b2Draw.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Common/b2GrowableStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Common/b2GrowableStack.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Common/b2Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Common/b2Math.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Common/b2Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Common/b2Math.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Common/b2Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Common/b2Settings.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Common/b2Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Common/b2Settings.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Common/b2StackAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Common/b2StackAllocator.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Common/b2Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Common/b2Timer.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Common/b2Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Common/b2Timer.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Dynamics/Joints/b2Joint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Dynamics/Joints/b2Joint.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Dynamics/b2Body.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Dynamics/b2Body.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Dynamics/b2Body.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Dynamics/b2Body.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Dynamics/b2Fixture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Dynamics/b2Fixture.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Dynamics/b2Fixture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Dynamics/b2Fixture.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Dynamics/b2Island.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Dynamics/b2Island.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Dynamics/b2Island.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Dynamics/b2Island.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Dynamics/b2TimeStep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Dynamics/b2TimeStep.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Dynamics/b2World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Dynamics/b2World.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Dynamics/b2World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Dynamics/b2World.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Rope/b2Rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Rope/b2Rope.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Box2D/Rope/b2Rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Box2D/Rope/b2Rope.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Build/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Build/Android.mk -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Build/eclipse/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Build/eclipse/.cproject -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Build/eclipse/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Build/eclipse/.project -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Build/msvc/Box2D.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Build/msvc/Box2D.sln -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Build/msvc/Box2D.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Build/msvc/Box2D.vcproj -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Build/xcode/box2d/box2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Build/xcode/box2d/box2d.h -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Build/xcode/box2d/box2d.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/box2d/Build/xcode/box2d/box2d.m -------------------------------------------------------------------------------- /toolkit/Source/src/box2d/Build/xcode/box2d/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /toolkit/Source/src/editor/CustomDataEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/CustomDataEditor.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/editor/CustomDataEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/CustomDataEditor.h -------------------------------------------------------------------------------- /toolkit/Source/src/editor/EditorBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/EditorBase.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/editor/EditorBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/EditorBase.h -------------------------------------------------------------------------------- /toolkit/Source/src/editor/EditorBase.macosx.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/EditorBase.macosx.mm -------------------------------------------------------------------------------- /toolkit/Source/src/editor/EditorBase.windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/EditorBase.windows.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/editor/EditorCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/EditorCommon.h -------------------------------------------------------------------------------- /toolkit/Source/src/editor/EntityEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/EntityEditor.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/editor/EntityEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/EntityEditor.h -------------------------------------------------------------------------------- /toolkit/Source/src/editor/IEditorPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/IEditorPlugin.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/editor/IEditorPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/IEditorPlugin.h -------------------------------------------------------------------------------- /toolkit/Source/src/editor/ParticleFXEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/ParticleFXEditor.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/editor/ParticleFXEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/ParticleFXEditor.h -------------------------------------------------------------------------------- /toolkit/Source/src/editor/ParticleScale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/ParticleScale.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/editor/ParticleScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/ParticleScale.h -------------------------------------------------------------------------------- /toolkit/Source/src/editor/ProjectManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/ProjectManager.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/editor/ProjectManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/ProjectManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/editor/SceneEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/SceneEditor.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/editor/SceneEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/SceneEditor.h -------------------------------------------------------------------------------- /toolkit/Source/src/editor/gsgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/gsgui.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/editor/gsgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/gsgui.h -------------------------------------------------------------------------------- /toolkit/Source/src/editor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/editor/main.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Drawing/ETHDrawable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Drawing/ETHDrawable.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Drawing/ETHDrawable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Drawing/ETHDrawable.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Drawing/ETHDrawableManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Drawing/ETHDrawableManager.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Drawing/ETHDrawableManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Drawing/ETHDrawableManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Drawing/ETHParticleDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Drawing/ETHParticleDrawer.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Drawing/ETHParticleDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Drawing/ETHParticleDrawer.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/ETHEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/ETHEngine.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/ETHEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/ETHEngine.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/ETHTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/ETHTypes.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHCustomDataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHCustomDataManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntity.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntity.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntityArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntityArray.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntityArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntityArray.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntityCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntityCache.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntityCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntityCache.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntityChooser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntityChooser.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntityChooser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntityChooser.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntityController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntityController.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntityController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntityController.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntityProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntityProperties.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHEntityProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHEntityProperties.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHLight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHLight.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHLight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHLight.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHRenderEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHRenderEntity.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHRenderEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHRenderEntity.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHScriptEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHScriptEntity.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHScriptEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHScriptEntity.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHSpriteEntity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHSpriteEntity.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Entity/ETHSpriteEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Entity/ETHSpriteEntity.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Particles/ETHParticleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Particles/ETHParticleManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Particles/ETHParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Particles/ETHParticleSystem.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHCollisionBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHCollisionBox.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHCollisionBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHCollisionBox.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHCompoundShape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHCompoundShape.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHCompoundShape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHCompoundShape.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHContactListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHContactListener.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHContactListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHContactListener.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHJoint.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHJoint.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHPhysicsController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHPhysicsController.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHPhysicsSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHPhysicsSimulator.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHPolygon.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHPolygon.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHRayCastCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHRayCastCallback.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHRayCastCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHRayCastCallback.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHRevoluteJoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHRevoluteJoint.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Physics/ETHRevoluteJoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Physics/ETHRevoluteJoint.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Platform/ETHAppEnmlFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Platform/ETHAppEnmlFile.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Platform/ETHAppEnmlFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Platform/ETHAppEnmlFile.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Platform/ETHPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Platform/ETHPlatform.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Platform/FileListing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Platform/FileListing.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Platform/macosx/FileListing.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Platform/macosx/FileListing.mm -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Resource/ETHDirectories.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Resource/ETHDirectories.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Resource/ETHDirectories.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Resource/ETHDirectories.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Resource/ETHResourceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Resource/ETHResourceManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Resource/ETHResourceProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Resource/ETHResourceProvider.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Scene/ETHActiveEntityHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Scene/ETHActiveEntityHandler.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Scene/ETHBucketManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Scene/ETHBucketManager.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Scene/ETHBucketManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Scene/ETHBucketManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Scene/ETHScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Scene/ETHScene.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Scene/ETHScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Scene/ETHScene.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Scene/ETHSceneProperties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Scene/ETHSceneProperties.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Scene/ETHSceneProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Scene/ETHSceneProperties.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Script/ETHBinaryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Script/ETHBinaryStream.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Script/ETHBinaryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Script/ETHBinaryStream.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Script/ETHScriptObjRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Script/ETHScriptObjRegister.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Script/ETHScriptWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Script/ETHScriptWrapper.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Script/ETHScriptWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Script/ETHScriptWrapper.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHDynamicBackBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHDynamicBackBuffer.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHLightingProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHLightingProfile.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHLightmapGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHLightmapGen.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHLightmapGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHLightmapGen.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHParallaxManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHParallaxManager.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHParallaxManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHParallaxManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHShaderManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHShaderManager.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHShaderManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHShaderManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHShaders.cg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHShaders.cg.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHShaders.glsl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHShaders.glsl.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHShaders.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Shader/ETHVertexLightDiffuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Shader/ETHVertexLightDiffuse.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHASUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHASUtil.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHASUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHASUtil.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHDateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHDateTime.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHDateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHDateTime.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHFileChangeDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHFileChangeDetector.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHFileChangeDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHFileChangeDetector.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHFrameTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHFrameTimer.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHFrameTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHFrameTimer.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHGlobalScaleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHGlobalScaleManager.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHGlobalScaleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHGlobalScaleManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHInput.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHInput.h -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHSpeedTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHSpeedTimer.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/engine/Util/ETHSpeedTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/engine/Util/ETHSpeedTimer.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/gs2d.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/gs2d.sln -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/lib/readme.txt: -------------------------------------------------------------------------------- 1 | Debug and release .lib files will be sent here. -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/projects/Android/Ethanon/libs/armeabi/readme.txt: -------------------------------------------------------------------------------- 1 | Place the Ethanon Android binary file (libApplication.so) here -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/projects/Android/GS2D/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/projects/Android/GS2D/.classpath -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/projects/Android/GS2D/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/projects/Android/GS2D/.project -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/projects/eclipse/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/projects/eclipse/.cproject -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/projects/eclipse/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/projects/eclipse/.project -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/projects/msvc9/GS2D/gs2d.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/projects/msvc9/GS2D/gs2d.vcproj -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/projects/msvc9/zlib/zlib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/projects/msvc9/zlib/zlib.vcproj -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/projects/xcode/gs2d/gs2d/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/projects/xcode/gs2dtestbed/gs2dtestbed/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Application.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Application.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Audio.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Audio/Android/AndroidAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Audio/Android/AndroidAudio.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Audio/Audiere/AudiereAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Audio/Audiere/AudiereAudio.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/BaseApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/BaseApplication.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Enml/Enml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Enml/Enml.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Enml/Enml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Enml/Enml.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/Android/AndroidInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/Android/AndroidInput.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/KeyStateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/KeyStateManager.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/KeyStateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/KeyStateManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/MobileInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/MobileInput.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/MobileInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/MobileInput.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/SDL/SDLInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/SDL/SDLInput.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/SDL/SDLInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/SDL/SDLInput.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/SDL/SDLJoystick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/SDL/SDLJoystick.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/SDL/SDLJoystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/SDL/SDLJoystick.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/Win/WinInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/Win/WinInput.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/Win/WinInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/Win/WinInput.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/iOS/IOSInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/iOS/IOSInput.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Input/iOS/IOSInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Input/iOS/IOSInput.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Math/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Math/Color.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Math/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Math/Color.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Math/GameMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Math/GameMath.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Math/GameMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Math/GameMath.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Math/MersenneTwister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Math/MersenneTwister.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Math/OrientedBoundingBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Math/OrientedBoundingBox.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Math/OrientedBoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Math/OrientedBoundingBox.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Math/Randomizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Math/Randomizer.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Math/Randomizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Math/Randomizer.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Math/to-do.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Math/to-do.txt -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/FileIOHub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/FileIOHub.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/FileIOHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/FileIOHub.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/FileLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/FileLogger.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/FileLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/FileLogger.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/FileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/FileManager.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/FileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/FileManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/Logger.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/Logger.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/MainSharedHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/MainSharedHeader.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/Platform.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/Platform.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/StdFileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/StdFileManager.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/StdFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/StdFileManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/StreamLogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/StreamLogger.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/StreamLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/StreamLogger.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/ZipFileManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/ZipFileManager.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/ZipFileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/ZipFileManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/android/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/android/main.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/ios/IOSFileIOHub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/ios/IOSFileIOHub.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/ios/Platform.ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/ios/Platform.ios.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/ios/Platform.ios.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/ios/Platform.ios.mm -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/macosx/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/macosx/main.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/macosx/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/macosx/main.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/main.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/sdl/SDLWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/sdl/SDLWindow.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Platform/sdl/SDLWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Platform/sdl/SDLWindow.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Player.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Shader.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Sprite.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Sprite.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Testbed/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Testbed/main.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Testbed/resources/banjo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Testbed/resources/banjo.mp3 -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Testbed/resources/bite.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Testbed/resources/bite.mp3 -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Testbed/resources/combo.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Testbed/resources/combo.mp3 -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Testbed/resources/road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Testbed/resources/road.jpg -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Texture.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Types.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Unicode/utf8/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Unicode/utf8/utf8.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Unicode/utf8/utf8/checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Unicode/utf8/utf8/checked.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Unicode/utf8/utf8/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Unicode/utf8/utf8/core.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/BitmapFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/BitmapFont.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/BitmapFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/BitmapFont.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/BitmapFontManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/BitmapFontManager.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/BitmapFontManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/BitmapFontManager.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/DShow/DShowPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/DShow/DShowPlayer.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/DShow/DShowPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/DShow/DShowPlayer.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/Direct3D9/D3D9Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/Direct3D9/D3D9Sprite.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/Direct3D9/D3D9Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/Direct3D9/D3D9Video.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GL/Cg/GLCgShader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GL/Cg/GLCgShader.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GL/Cg/GLCgShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GL/Cg/GLCgShader.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GL/GLInclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GL/GLInclude.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GL/GLRectRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GL/GLRectRenderer.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GL/GLSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GL/GLSprite.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GL/GLSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GL/GLSprite.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GL/GLTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GL/GLTexture.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GL/GLTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GL/GLTexture.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GL/GLVideo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GL/GLVideo.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GL/GLVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GL/GLVideo.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GLES2/GLES2Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GLES2/GLES2Shader.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GLES2/GLES2Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GLES2/GLES2Sprite.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GLES2/GLES2Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GLES2/GLES2Video.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/GLSDL/GLSDLVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/GLSDL/GLSDLVideo.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/cgShaderCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/cgShaderCode.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Video/glslShaderCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Video/glslShaderCode.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/src/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/src/Window.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/7za.exe -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/Cg.framework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/Cg.framework.zip -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/LinuxCgSDK.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/LinuxCgSDK.7z -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/LinuxOpenGL.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/LinuxOpenGL.7z -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/LinuxSDL.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/LinuxSDL.7z -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/SDL2.framework.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/SDL2.framework.zip -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/irrKlang.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/irrKlang.zip -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/libzip_msvc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/libzip_msvc/config.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/libzip_msvc/mkstemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/libzip_msvc/mkstemp.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/libzip_msvc/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/libzip_msvc/stdint.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/libzip_msvc/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/libzip_msvc/zip.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/libzip_msvc/zip_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/libzip_msvc/zip_add.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/libzip_msvc/zip_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/libzip_msvc/zip_new.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/libzip_msvc/zipconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/libzip_msvc/zipconf.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/libzip_msvc/zipint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/libzip_msvc/zipint.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/pack_linux_vendors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/pack_linux_vendors.sh -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/pack_vendors.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/pack_vendors.bat -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/Android.mk -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/SOIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/SOIL.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/SOIL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/SOIL.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/image_DXT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/image_DXT.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/image_DXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/image_DXT.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/image_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/image_helper.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/image_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/image_helper.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/stb_image_aug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/stb_image_aug.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/stb_image_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/stb_image_aug.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/stbi_DDS_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/stbi_DDS_aug.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/stbi_DDS_aug_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/stbi_DDS_aug_c.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/soil/test_SOIL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/soil/test_SOIL.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/unpack_vendors.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/unpack_vendors.bat -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/vendors.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/vendors.7z -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/adler32.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/compress.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/crc32.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/crc32.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/deflate.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/deflate.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/infback.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/inffast.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/inffast.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/inffixed.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/inflate.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/inflate.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/inftrees.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/inftrees.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/trees.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/trees.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/uncompr.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/zconf.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/zlib.h -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/zutil.c -------------------------------------------------------------------------------- /toolkit/Source/src/gs2d/vendors/zlib_msvc/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/gs2d/vendors/zlib_msvc/zutil.h -------------------------------------------------------------------------------- /toolkit/Source/src/machine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/machine/main.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/defaultVS.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/defaultVS.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/dynaShadowVS.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/dynaShadowVS.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/hAmbientVS.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/hAmbientVS.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/hPixelLightDiff.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/hPixelLightDiff.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/hPixelLightSpec.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/hPixelLightSpec.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/hPixelLightVS.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/hPixelLightVS.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/hVertexLightShader.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/hVertexLightShader.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/highlightPS.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/highlightPS.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/particleVS.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/particleVS.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/vAmbientVS.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/vAmbientVS.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/vPixelLightDiff.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/vPixelLightDiff.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/vPixelLightSpec.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/vPixelLightSpec.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/vPixelLightVS.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/vPixelLightVS.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/Cg/vVertexLightShader.cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/Cg/vVertexLightShader.cg -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/default.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/default.ps -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/default.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/default.vs -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/default/add1.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/default/add1.ps -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/default/default.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/default/default.ps -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/default/default.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/default/default.vs -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/default/fastRender.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/default/fastRender.vs -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/default/modulate1.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/default/modulate1.ps -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/default/optimal.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/default/optimal.vs -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/hAmbient.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/hAmbient.vs -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/hPixelLight.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/hPixelLight.vs -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/hPixelLightDiff.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/hPixelLightDiff.ps -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/highlight.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/highlight.ps -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/optimal.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/optimal.vs -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/particle.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/particle.vs -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/vAmbient.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/vAmbient.vs -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/vPixelLight.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/vPixelLight.vs -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/GLSL/vPixelLightDiff.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/GLSL/vPixelLightDiff.ps -------------------------------------------------------------------------------- /toolkit/Source/src/shaders/shaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/shaders/shaders.h -------------------------------------------------------------------------------- /toolkit/Source/src/soil/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/Android.mk -------------------------------------------------------------------------------- /toolkit/Source/src/soil/SOIL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/SOIL.c -------------------------------------------------------------------------------- /toolkit/Source/src/soil/SOIL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/SOIL.h -------------------------------------------------------------------------------- /toolkit/Source/src/soil/image_DXT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/image_DXT.c -------------------------------------------------------------------------------- /toolkit/Source/src/soil/image_DXT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/image_DXT.h -------------------------------------------------------------------------------- /toolkit/Source/src/soil/image_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/image_helper.c -------------------------------------------------------------------------------- /toolkit/Source/src/soil/image_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/image_helper.h -------------------------------------------------------------------------------- /toolkit/Source/src/soil/original/stb_image-1.09.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/original/stb_image-1.09.c -------------------------------------------------------------------------------- /toolkit/Source/src/soil/original/stb_image-1.16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/original/stb_image-1.16.c -------------------------------------------------------------------------------- /toolkit/Source/src/soil/stb_image_aug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/stb_image_aug.c -------------------------------------------------------------------------------- /toolkit/Source/src/soil/stb_image_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/stb_image_aug.h -------------------------------------------------------------------------------- /toolkit/Source/src/soil/stbi_DDS_aug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/stbi_DDS_aug.h -------------------------------------------------------------------------------- /toolkit/Source/src/soil/stbi_DDS_aug_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/stbi_DDS_aug_c.h -------------------------------------------------------------------------------- /toolkit/Source/src/soil/test_SOIL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/soil/test_SOIL.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/hashlib2plus/src/hl_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/hashlib2plus/src/hl_md5.h -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/hashlib2plus/src/hl_sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/hashlib2plus/src/hl_sha1.h -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/libjson/JSONOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/libjson/JSONOptions.h -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/libjson/Source/JSONDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/libjson/Source/JSONDebug.h -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/libjson/Source/JSONDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/libjson/Source/JSONDefs.h -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/libjson/Source/JSONNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/libjson/Source/JSONNode.h -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/libjson/Source/libjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/libjson/Source/libjson.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/libjson/libjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/libjson/libjson.h -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/libjson/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/libjson/makefile -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/libjson/version: -------------------------------------------------------------------------------- 1 | libjson v6.2.1 -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/tinyxml_ansi/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/tinyxml_ansi/tinystr.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/tinyxml_ansi/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/tinyxml_ansi/tinystr.h -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/tinyxml_ansi/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/tinyxml_ansi/tinyxml.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/tinyxml_ansi/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/tinyxml_ansi/tinyxml.h -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/tinyxml_utf16/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/tinyxml_utf16/tinystr.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/tinyxml_utf16/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/tinyxml_utf16/tinystr.h -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/tinyxml_utf16/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/tinyxml_utf16/tinyxml.cpp -------------------------------------------------------------------------------- /toolkit/Source/src/vendors/tinyxml_utf16/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Source/src/vendors/tinyxml_utf16/tinyxml.h -------------------------------------------------------------------------------- /toolkit/Utilites/Utilites.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Utilites/Utilites.sln -------------------------------------------------------------------------------- /toolkit/Utilites/source/TextFormatVerifier/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Utilites/source/TextFormatVerifier/Messages.h -------------------------------------------------------------------------------- /toolkit/Utilites/source/TextFormatVerifier/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Utilites/source/TextFormatVerifier/stdafx.cpp -------------------------------------------------------------------------------- /toolkit/Utilites/source/TextFormatVerifier/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/Utilites/source/TextFormatVerifier/stdafx.h -------------------------------------------------------------------------------- /toolkit/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/license.txt -------------------------------------------------------------------------------- /toolkit/make_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/make_build.bat -------------------------------------------------------------------------------- /toolkit/make_deploy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/make_deploy.bat -------------------------------------------------------------------------------- /toolkit/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/toolkit/readme.txt -------------------------------------------------------------------------------- /verify_text_formats.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asantee/ethanon/HEAD/verify_text_formats.bat --------------------------------------------------------------------------------