├── .clang-format ├── .gitattributes ├── .github ├── autoformat.env ├── get-clang-format.sh └── workflows │ ├── autoformat.yml │ ├── ci-linux.yml │ ├── ci-mac.yml │ ├── ci-windows.yml │ └── static-analysis.yml ├── .gitignore ├── .luacheckrc ├── Assets ├── RagLite2.ico └── RagLite2.rc ├── Core ├── Assertions.hpp ├── DummyTest.cpp ├── FileFormats │ ├── BinaryReader.lua │ ├── FogParameters.lua │ ├── Optimized │ │ └── CompiledGRF.lua │ ├── RSW │ │ ├── AnimatedWaterPlane.lua │ │ └── QuadTreeRange.lua │ ├── RagnarokACT.lua │ ├── RagnarokGAT.lua │ ├── RagnarokGND.lua │ ├── RagnarokGR2.lua │ ├── RagnarokGRF.lua │ ├── RagnarokIMF.lua │ ├── RagnarokMap.lua │ ├── RagnarokPAL.lua │ ├── RagnarokRGZ.lua │ ├── RagnarokRSM.lua │ ├── RagnarokRSW.lua │ └── RagnarokSPR.lua ├── Intrinsics.hpp ├── Math.hpp ├── Memory.hpp ├── NativeClient │ ├── Assets │ │ ├── DebugTexture256.png │ │ ├── Fonts │ │ │ ├── Roboto-LICENSE.txt │ │ │ └── Roboto-Regular.ttf │ │ └── Unused │ │ │ └── minimap-placeholder.bmp │ ├── C_Camera.lua │ ├── C_Cursor.lua │ ├── C_Resources.lua │ ├── DebugDraw │ │ ├── Box.lua │ │ ├── Color.lua │ │ ├── Cone.lua │ │ ├── Cylinder.lua │ │ ├── DebugScene.lua │ │ ├── NormalsVisualization.lua │ │ ├── Plane.lua │ │ ├── Pyramid.lua │ │ ├── Scenes │ │ │ ├── cube3d.lua │ │ │ ├── walls.lua │ │ │ └── wgpu.lua │ │ ├── Sphere.lua │ │ └── WorldAxis.lua │ ├── Interface │ │ └── PerformanceMetricsOverlay.lua │ ├── KeyframeAnimation.lua │ ├── NativeClient.lua │ ├── Renderer.lua │ └── WebGPU │ │ ├── Buffer.lua │ │ ├── CommandEncoder.lua │ │ ├── Device.lua │ │ ├── GPU.lua │ │ ├── Materials │ │ ├── GroundMeshMaterial.lua │ │ ├── InvisibleBaseMaterial.lua │ │ ├── UnlitMeshMaterial.lua │ │ ├── UserInterfaceMaterial.lua │ │ └── WaterSurfaceMaterial.lua │ │ ├── Mesh.lua │ │ ├── Pipelines │ │ ├── BasicTriangleDrawingPipeline.lua │ │ ├── GroundMeshDrawingPipeline.lua │ │ ├── WaterPlaneDrawingPipeline.lua │ │ └── WidgetDrawingPipeline.lua │ │ ├── Queue.lua │ │ ├── RenderPassEncoder.lua │ │ ├── RenderTargets │ │ ├── DepthStencilTexture.lua │ │ └── ScreenshotCaptureTexture.lua │ │ ├── Shaders │ │ ├── BasicTriangleShader.wgsl │ │ ├── TerrainGeometryShader.wgsl │ │ ├── UserInterfaceShader.wgsl │ │ └── WaterSurfaceShader.wgsl │ │ ├── Surface.lua │ │ ├── Texture.lua │ │ ├── UniformBuffer.lua │ │ └── VirtualGPU.lua ├── Numbers.hpp ├── PatternTest.cpp ├── Platforms │ ├── Win32.cpp │ ├── Win32.hpp │ └── Win32 │ │ ├── DebugDraw.cpp │ │ ├── DebugDraw.hpp │ │ ├── GamePad.cpp │ │ ├── Keyboard.cpp │ │ ├── SystemMemory.cpp │ │ ├── Time.cpp │ │ └── Windowing.cpp ├── RagLite2.cpp ├── RagLite2.hpp ├── RuntimeExtensions │ ├── C_Runtime.lua │ └── cstring.lua ├── Strings.hpp ├── VectorMath │ ├── Matrix3D.lua │ ├── Matrix4D.lua │ └── Vector3D.lua └── WorldServer │ ├── C_ServerHealth.lua │ └── WorldServer.lua ├── DB ├── Creatures │ ├── amatsu-spawns.lua │ └── classic-spawns.lua └── Maps.lua ├── LICENSE ├── README.md ├── README.v1.md ├── Tests ├── DB │ ├── validate-creature-spawns.lua │ └── validate-map-database.lua ├── FileFormats │ ├── BinaryReader.spec.lua │ ├── FogParameters.spec.lua │ ├── Optimized │ │ └── CompiledGRF.spec.lua │ ├── RSW │ │ ├── AnimatedWaterPlane.spec.lua │ │ └── QuadTreeRange.spec.lua │ ├── RagnarokACT.spec.lua │ ├── RagnarokGAT.spec.lua │ ├── RagnarokGND.spec.lua │ ├── RagnarokGR2.spec.lua │ ├── RagnarokGRF.spec.lua │ ├── RagnarokMap.spec.lua │ ├── RagnarokPAL.spec.lua │ ├── RagnarokRGZ.spec.lua │ ├── RagnarokRSM.spec.lua │ ├── RagnarokRSW.spec.lua │ └── RagnarokSPR.spec.lua ├── Fixtures │ ├── Borftopia │ │ ├── borftopia.gat │ │ ├── borftopia.gnd │ │ ├── borftopia.rsw │ │ └── texture │ │ │ ├── somedir1 │ │ │ └── texture2-01.bmp │ │ │ └── texture1.bmp │ ├── Snapshots │ │ ├── gnd-geometry.json │ │ ├── lowres-cylinder-indices.lua │ │ ├── lowres-cylinder-positions.lua │ │ ├── lowres-sphere-indices.lua │ │ ├── lowres-sphere-positions.lua │ │ ├── normals-visualization-indices.lua │ │ ├── normals-visualization-positions.lua │ │ ├── scaled-cone-indices.lua │ │ ├── scaled-cone-positions.lua │ │ ├── scaled-cube-indices.lua │ │ ├── scaled-cube-normals.lua │ │ ├── scaled-cube-positions.lua │ │ ├── scaled-cylinder-indices.lua │ │ ├── scaled-cylinder-positions.lua │ │ ├── scaled-pyramid-positions.lua │ │ ├── scaled-sphere-indices.lua │ │ ├── scaled-sphere-positions.lua │ │ ├── translated-cone-indices.lua │ │ ├── translated-cone-positions.lua │ │ ├── translated-cube-indices.lua │ │ ├── translated-cube-normals.lua │ │ ├── translated-cube-positions.lua │ │ ├── translated-cylinder-indices.lua │ │ ├── translated-cylinder-positions.lua │ │ ├── translated-pyramid-positions.lua │ │ ├── translated-sphere-indices.lua │ │ ├── translated-sphere-positions.lua │ │ ├── unit-cone-indices.lua │ │ ├── unit-cone-positions.lua │ │ ├── unit-cube-indices.lua │ │ ├── unit-cube-normals.lua │ │ ├── unit-cube-positions.lua │ │ ├── unit-cylinder-indices.lua │ │ ├── unit-cylinder-positions.lua │ │ ├── unit-pyramid-positions.lua │ │ ├── unit-sphere-indices.lua │ │ ├── unit-sphere-positions.lua │ │ ├── v0200.act.json │ │ ├── v0201.act.json │ │ ├── v0203.act.json │ │ ├── v0204.act.json │ │ ├── v0205.act.json │ │ ├── water-plane-regions.lua │ │ └── water-surface-geometry.deflated │ ├── UPPERCASE.PNG │ ├── blank-texture.png │ ├── bmp-paletted.spr │ ├── bmp-tga-paletted.spr │ ├── colored-grid-texture.png │ ├── gradient-texture.png │ ├── grid-texture.png │ ├── missing-map-files.grf │ ├── multiple-water-planes.gnd │ ├── no-water-plane.gnd │ ├── rgba-palette.pal │ ├── rle-bmp-tga-paletted.spr │ ├── single-water-plane.gnd │ ├── test.cgrf │ ├── test.grf │ ├── test.rgz │ ├── test.rml │ ├── update-act-snapshots.lua │ ├── v0102.gat │ ├── v0103.gat │ ├── v0104.rsm │ ├── v0105.rsm │ ├── v0109.rsw │ ├── v0200.act │ ├── v0201.act │ ├── v0201.rsw │ ├── v0202.rsm2 │ ├── v0202.rsw │ ├── v0203.act │ ├── v0203.rsm2 │ ├── v0204.act │ ├── v0205.act │ ├── v0205.rsw │ ├── v0206-no-rsm2-flag.rsw │ └── v0206-with-rsm2-flag.rsw ├── NativeClient │ ├── C_Camera.spec.lua │ ├── C_Cursor.spec.lua │ ├── C_Resources.spec.lua │ ├── DebugDraw │ │ ├── Box.spec.lua │ │ ├── Color.spec.lua │ │ ├── Cone.spec.lua │ │ ├── Cylinder.spec.lua │ │ ├── DebugScene.spec.lua │ │ ├── NormalsVisualization.spec.lua │ │ ├── Plane.spec.lua │ │ ├── Pyramid.spec.lua │ │ └── Sphere.spec.lua │ ├── Interface │ │ └── PerformanceMetricsOverlay.spec.lua │ ├── KeyframeAnimation.spec.lua │ ├── NativeClient.spec.lua │ ├── Renderer.spec.lua │ └── WebGPU │ │ ├── Buffer.spec.lua │ │ ├── GroundMeshMaterial.spec.lua │ │ ├── InvisibleBaseMaterial.spec.lua │ │ ├── Mesh.spec.lua │ │ ├── Surface.spec.lua │ │ ├── Texture.spec.lua │ │ ├── UnlitMeshMaterial.spec.lua │ │ ├── UserInterfaceMaterial.spec.lua │ │ └── WaterSurfaceMaterial.spec.lua ├── RuntimeExtensions │ └── C_Runtime.spec.lua ├── Tools │ ├── FileAnalyzer.spec.lua │ └── RagnarokTools.spec.lua ├── VectorMath │ ├── Matrix3D.spec.lua │ ├── Matrix4D.spec.lua │ └── Vector3D.spec.lua ├── WorldServer │ ├── C_ServerHealth.spec.lua │ └── WorldServer.spec.lua ├── smoke-test.lua └── unit-test.lua ├── Tools ├── DependencyCheck.cpp ├── FileAnalyzer.lua ├── RagnarokTools.lua ├── act-to-json.lua ├── analyze-act-files.lua ├── analyze-gat-files.lua ├── analyze-gnd-files.lua ├── analyze-grf-entries.lua ├── analyze-rsm-files.lua ├── analyze-rsw-files.lua ├── analyze-spr-files.lua ├── analyze-water-textures.lua ├── analyze-water-types.lua ├── cloc.lua ├── convert-mapnametable.lua ├── dump-gat-images.lua ├── dump-gnd-lightmap.lua ├── dump-gr2-segments.lua ├── dump-grf-file-list.lua ├── dump-rsw-quadtree.lua ├── dump-spr-images.lua ├── export-ebm-as-bmp.lua ├── export-fog-parameters.lua ├── extract-from-grf.lua ├── gr2-to-json.lua ├── imf-to-json.lua ├── rsm-to-json.lua └── rsw-to-json.lua ├── autoformat.sh ├── client.lua ├── download-runtime.sh ├── main.lua ├── server.lua ├── test.sh ├── validate-shaders.sh └── watch.cmd /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text=auto eol=lf -------------------------------------------------------------------------------- /.github/autoformat.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/.github/autoformat.env -------------------------------------------------------------------------------- /.github/get-clang-format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/.github/get-clang-format.sh -------------------------------------------------------------------------------- /.github/workflows/autoformat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/.github/workflows/autoformat.yml -------------------------------------------------------------------------------- /.github/workflows/ci-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/.github/workflows/ci-linux.yml -------------------------------------------------------------------------------- /.github/workflows/ci-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/.github/workflows/ci-mac.yml -------------------------------------------------------------------------------- /.github/workflows/ci-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/.github/workflows/ci-windows.yml -------------------------------------------------------------------------------- /.github/workflows/static-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/.github/workflows/static-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/.gitignore -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/.luacheckrc -------------------------------------------------------------------------------- /Assets/RagLite2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Assets/RagLite2.ico -------------------------------------------------------------------------------- /Assets/RagLite2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Assets/RagLite2.rc -------------------------------------------------------------------------------- /Core/Assertions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Assertions.hpp -------------------------------------------------------------------------------- /Core/DummyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/DummyTest.cpp -------------------------------------------------------------------------------- /Core/FileFormats/BinaryReader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/BinaryReader.lua -------------------------------------------------------------------------------- /Core/FileFormats/FogParameters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/FogParameters.lua -------------------------------------------------------------------------------- /Core/FileFormats/Optimized/CompiledGRF.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/Optimized/CompiledGRF.lua -------------------------------------------------------------------------------- /Core/FileFormats/RSW/AnimatedWaterPlane.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RSW/AnimatedWaterPlane.lua -------------------------------------------------------------------------------- /Core/FileFormats/RSW/QuadTreeRange.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RSW/QuadTreeRange.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokACT.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokACT.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokGAT.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokGAT.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokGND.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokGND.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokGR2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokGR2.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokGRF.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokGRF.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokIMF.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokIMF.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokMap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokMap.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokPAL.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokPAL.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokRGZ.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokRGZ.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokRSM.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokRSM.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokRSW.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokRSW.lua -------------------------------------------------------------------------------- /Core/FileFormats/RagnarokSPR.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/FileFormats/RagnarokSPR.lua -------------------------------------------------------------------------------- /Core/Intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Intrinsics.hpp -------------------------------------------------------------------------------- /Core/Math.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | // TODO Eliminate this 4 | #include -------------------------------------------------------------------------------- /Core/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Memory.hpp -------------------------------------------------------------------------------- /Core/NativeClient/Assets/DebugTexture256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/Assets/DebugTexture256.png -------------------------------------------------------------------------------- /Core/NativeClient/Assets/Fonts/Roboto-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/Assets/Fonts/Roboto-LICENSE.txt -------------------------------------------------------------------------------- /Core/NativeClient/Assets/Fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/Assets/Fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /Core/NativeClient/Assets/Unused/minimap-placeholder.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/Assets/Unused/minimap-placeholder.bmp -------------------------------------------------------------------------------- /Core/NativeClient/C_Camera.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/C_Camera.lua -------------------------------------------------------------------------------- /Core/NativeClient/C_Cursor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/C_Cursor.lua -------------------------------------------------------------------------------- /Core/NativeClient/C_Resources.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/C_Resources.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/Box.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/Box.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/Color.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/Color.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/Cone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/Cone.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/Cylinder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/Cylinder.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/DebugScene.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/DebugScene.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/NormalsVisualization.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/NormalsVisualization.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/Plane.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/Plane.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/Pyramid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/Pyramid.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/Scenes/cube3d.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/Scenes/cube3d.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/Scenes/walls.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/Scenes/walls.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/Scenes/wgpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/Scenes/wgpu.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/Sphere.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/Sphere.lua -------------------------------------------------------------------------------- /Core/NativeClient/DebugDraw/WorldAxis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/DebugDraw/WorldAxis.lua -------------------------------------------------------------------------------- /Core/NativeClient/Interface/PerformanceMetricsOverlay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/Interface/PerformanceMetricsOverlay.lua -------------------------------------------------------------------------------- /Core/NativeClient/KeyframeAnimation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/KeyframeAnimation.lua -------------------------------------------------------------------------------- /Core/NativeClient/NativeClient.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/NativeClient.lua -------------------------------------------------------------------------------- /Core/NativeClient/Renderer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/Renderer.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Buffer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Buffer.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/CommandEncoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/CommandEncoder.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Device.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Device.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/GPU.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/GPU.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Materials/GroundMeshMaterial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Materials/GroundMeshMaterial.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Materials/InvisibleBaseMaterial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Materials/InvisibleBaseMaterial.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Materials/UnlitMeshMaterial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Materials/UnlitMeshMaterial.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Materials/UserInterfaceMaterial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Materials/UserInterfaceMaterial.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Materials/WaterSurfaceMaterial.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Materials/WaterSurfaceMaterial.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Mesh.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Mesh.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Pipelines/BasicTriangleDrawingPipeline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Pipelines/BasicTriangleDrawingPipeline.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Pipelines/GroundMeshDrawingPipeline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Pipelines/GroundMeshDrawingPipeline.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Pipelines/WaterPlaneDrawingPipeline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Pipelines/WaterPlaneDrawingPipeline.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Pipelines/WidgetDrawingPipeline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Pipelines/WidgetDrawingPipeline.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Queue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Queue.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/RenderPassEncoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/RenderPassEncoder.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/RenderTargets/DepthStencilTexture.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/RenderTargets/DepthStencilTexture.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/RenderTargets/ScreenshotCaptureTexture.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/RenderTargets/ScreenshotCaptureTexture.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Shaders/BasicTriangleShader.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Shaders/BasicTriangleShader.wgsl -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Shaders/TerrainGeometryShader.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Shaders/TerrainGeometryShader.wgsl -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Shaders/UserInterfaceShader.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Shaders/UserInterfaceShader.wgsl -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Shaders/WaterSurfaceShader.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Shaders/WaterSurfaceShader.wgsl -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Surface.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Surface.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/Texture.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/Texture.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/UniformBuffer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/UniformBuffer.lua -------------------------------------------------------------------------------- /Core/NativeClient/WebGPU/VirtualGPU.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/NativeClient/WebGPU/VirtualGPU.lua -------------------------------------------------------------------------------- /Core/Numbers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Numbers.hpp -------------------------------------------------------------------------------- /Core/PatternTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/PatternTest.cpp -------------------------------------------------------------------------------- /Core/Platforms/Win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Platforms/Win32.cpp -------------------------------------------------------------------------------- /Core/Platforms/Win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Platforms/Win32.hpp -------------------------------------------------------------------------------- /Core/Platforms/Win32/DebugDraw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Platforms/Win32/DebugDraw.cpp -------------------------------------------------------------------------------- /Core/Platforms/Win32/DebugDraw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Platforms/Win32/DebugDraw.hpp -------------------------------------------------------------------------------- /Core/Platforms/Win32/GamePad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Platforms/Win32/GamePad.cpp -------------------------------------------------------------------------------- /Core/Platforms/Win32/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Platforms/Win32/Keyboard.cpp -------------------------------------------------------------------------------- /Core/Platforms/Win32/SystemMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Platforms/Win32/SystemMemory.cpp -------------------------------------------------------------------------------- /Core/Platforms/Win32/Time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Platforms/Win32/Time.cpp -------------------------------------------------------------------------------- /Core/Platforms/Win32/Windowing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Platforms/Win32/Windowing.cpp -------------------------------------------------------------------------------- /Core/RagLite2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/RagLite2.cpp -------------------------------------------------------------------------------- /Core/RagLite2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/RagLite2.hpp -------------------------------------------------------------------------------- /Core/RuntimeExtensions/C_Runtime.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/RuntimeExtensions/C_Runtime.lua -------------------------------------------------------------------------------- /Core/RuntimeExtensions/cstring.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/RuntimeExtensions/cstring.lua -------------------------------------------------------------------------------- /Core/Strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/Strings.hpp -------------------------------------------------------------------------------- /Core/VectorMath/Matrix3D.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/VectorMath/Matrix3D.lua -------------------------------------------------------------------------------- /Core/VectorMath/Matrix4D.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/VectorMath/Matrix4D.lua -------------------------------------------------------------------------------- /Core/VectorMath/Vector3D.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/VectorMath/Vector3D.lua -------------------------------------------------------------------------------- /Core/WorldServer/C_ServerHealth.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/WorldServer/C_ServerHealth.lua -------------------------------------------------------------------------------- /Core/WorldServer/WorldServer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Core/WorldServer/WorldServer.lua -------------------------------------------------------------------------------- /DB/Creatures/amatsu-spawns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/DB/Creatures/amatsu-spawns.lua -------------------------------------------------------------------------------- /DB/Creatures/classic-spawns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/DB/Creatures/classic-spawns.lua -------------------------------------------------------------------------------- /DB/Maps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/DB/Maps.lua -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/README.md -------------------------------------------------------------------------------- /README.v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/README.v1.md -------------------------------------------------------------------------------- /Tests/DB/validate-creature-spawns.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/DB/validate-creature-spawns.lua -------------------------------------------------------------------------------- /Tests/DB/validate-map-database.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/DB/validate-map-database.lua -------------------------------------------------------------------------------- /Tests/FileFormats/BinaryReader.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/BinaryReader.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/FogParameters.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/FogParameters.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/Optimized/CompiledGRF.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/Optimized/CompiledGRF.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RSW/AnimatedWaterPlane.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RSW/AnimatedWaterPlane.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RSW/QuadTreeRange.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RSW/QuadTreeRange.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RagnarokACT.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RagnarokACT.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RagnarokGAT.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RagnarokGAT.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RagnarokGND.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RagnarokGND.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RagnarokGR2.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RagnarokGR2.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RagnarokGRF.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RagnarokGRF.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RagnarokMap.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RagnarokMap.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RagnarokPAL.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RagnarokPAL.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RagnarokRGZ.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RagnarokRGZ.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RagnarokRSM.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RagnarokRSM.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RagnarokRSW.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RagnarokRSW.spec.lua -------------------------------------------------------------------------------- /Tests/FileFormats/RagnarokSPR.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/FileFormats/RagnarokSPR.spec.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Borftopia/borftopia.gat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Borftopia/borftopia.gat -------------------------------------------------------------------------------- /Tests/Fixtures/Borftopia/borftopia.gnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Borftopia/borftopia.gnd -------------------------------------------------------------------------------- /Tests/Fixtures/Borftopia/borftopia.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Borftopia/borftopia.rsw -------------------------------------------------------------------------------- /Tests/Fixtures/Borftopia/texture/somedir1/texture2-01.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Borftopia/texture/somedir1/texture2-01.bmp -------------------------------------------------------------------------------- /Tests/Fixtures/Borftopia/texture/texture1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Borftopia/texture/texture1.bmp -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/gnd-geometry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/gnd-geometry.json -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/lowres-cylinder-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/lowres-cylinder-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/lowres-cylinder-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/lowres-cylinder-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/lowres-sphere-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/lowres-sphere-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/lowres-sphere-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/lowres-sphere-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/normals-visualization-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/normals-visualization-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/normals-visualization-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/normals-visualization-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/scaled-cone-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/scaled-cone-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/scaled-cone-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/scaled-cone-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/scaled-cube-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/scaled-cube-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/scaled-cube-normals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/scaled-cube-normals.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/scaled-cube-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/scaled-cube-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/scaled-cylinder-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/scaled-cylinder-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/scaled-cylinder-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/scaled-cylinder-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/scaled-pyramid-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/scaled-pyramid-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/scaled-sphere-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/scaled-sphere-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/scaled-sphere-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/scaled-sphere-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/translated-cone-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/translated-cone-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/translated-cone-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/translated-cone-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/translated-cube-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/translated-cube-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/translated-cube-normals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/translated-cube-normals.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/translated-cube-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/translated-cube-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/translated-cylinder-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/translated-cylinder-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/translated-cylinder-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/translated-cylinder-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/translated-pyramid-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/translated-pyramid-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/translated-sphere-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/translated-sphere-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/translated-sphere-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/translated-sphere-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/unit-cone-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/unit-cone-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/unit-cone-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/unit-cone-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/unit-cube-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/unit-cube-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/unit-cube-normals.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/unit-cube-normals.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/unit-cube-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/unit-cube-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/unit-cylinder-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/unit-cylinder-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/unit-cylinder-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/unit-cylinder-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/unit-pyramid-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/unit-pyramid-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/unit-sphere-indices.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/unit-sphere-indices.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/unit-sphere-positions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/unit-sphere-positions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/v0200.act.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/v0200.act.json -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/v0201.act.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/v0201.act.json -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/v0203.act.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/v0203.act.json -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/v0204.act.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/v0204.act.json -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/v0205.act.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/v0205.act.json -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/water-plane-regions.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/water-plane-regions.lua -------------------------------------------------------------------------------- /Tests/Fixtures/Snapshots/water-surface-geometry.deflated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/Snapshots/water-surface-geometry.deflated -------------------------------------------------------------------------------- /Tests/Fixtures/UPPERCASE.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/UPPERCASE.PNG -------------------------------------------------------------------------------- /Tests/Fixtures/blank-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/blank-texture.png -------------------------------------------------------------------------------- /Tests/Fixtures/bmp-paletted.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/bmp-paletted.spr -------------------------------------------------------------------------------- /Tests/Fixtures/bmp-tga-paletted.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/bmp-tga-paletted.spr -------------------------------------------------------------------------------- /Tests/Fixtures/colored-grid-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/colored-grid-texture.png -------------------------------------------------------------------------------- /Tests/Fixtures/gradient-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/gradient-texture.png -------------------------------------------------------------------------------- /Tests/Fixtures/grid-texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/grid-texture.png -------------------------------------------------------------------------------- /Tests/Fixtures/missing-map-files.grf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/missing-map-files.grf -------------------------------------------------------------------------------- /Tests/Fixtures/multiple-water-planes.gnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/multiple-water-planes.gnd -------------------------------------------------------------------------------- /Tests/Fixtures/no-water-plane.gnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/no-water-plane.gnd -------------------------------------------------------------------------------- /Tests/Fixtures/rgba-palette.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/rgba-palette.pal -------------------------------------------------------------------------------- /Tests/Fixtures/rle-bmp-tga-paletted.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/rle-bmp-tga-paletted.spr -------------------------------------------------------------------------------- /Tests/Fixtures/single-water-plane.gnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/single-water-plane.gnd -------------------------------------------------------------------------------- /Tests/Fixtures/test.cgrf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/test.cgrf -------------------------------------------------------------------------------- /Tests/Fixtures/test.grf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/test.grf -------------------------------------------------------------------------------- /Tests/Fixtures/test.rgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/test.rgz -------------------------------------------------------------------------------- /Tests/Fixtures/test.rml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/test.rml -------------------------------------------------------------------------------- /Tests/Fixtures/update-act-snapshots.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/update-act-snapshots.lua -------------------------------------------------------------------------------- /Tests/Fixtures/v0102.gat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0102.gat -------------------------------------------------------------------------------- /Tests/Fixtures/v0103.gat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0103.gat -------------------------------------------------------------------------------- /Tests/Fixtures/v0104.rsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0104.rsm -------------------------------------------------------------------------------- /Tests/Fixtures/v0105.rsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0105.rsm -------------------------------------------------------------------------------- /Tests/Fixtures/v0109.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0109.rsw -------------------------------------------------------------------------------- /Tests/Fixtures/v0200.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0200.act -------------------------------------------------------------------------------- /Tests/Fixtures/v0201.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0201.act -------------------------------------------------------------------------------- /Tests/Fixtures/v0201.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0201.rsw -------------------------------------------------------------------------------- /Tests/Fixtures/v0202.rsm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0202.rsm2 -------------------------------------------------------------------------------- /Tests/Fixtures/v0202.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0202.rsw -------------------------------------------------------------------------------- /Tests/Fixtures/v0203.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0203.act -------------------------------------------------------------------------------- /Tests/Fixtures/v0203.rsm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0203.rsm2 -------------------------------------------------------------------------------- /Tests/Fixtures/v0204.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0204.act -------------------------------------------------------------------------------- /Tests/Fixtures/v0205.act: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0205.act -------------------------------------------------------------------------------- /Tests/Fixtures/v0205.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0205.rsw -------------------------------------------------------------------------------- /Tests/Fixtures/v0206-no-rsm2-flag.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0206-no-rsm2-flag.rsw -------------------------------------------------------------------------------- /Tests/Fixtures/v0206-with-rsm2-flag.rsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Fixtures/v0206-with-rsm2-flag.rsw -------------------------------------------------------------------------------- /Tests/NativeClient/C_Camera.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/C_Camera.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/C_Cursor.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/C_Cursor.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/C_Resources.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/C_Resources.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/DebugDraw/Box.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/DebugDraw/Box.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/DebugDraw/Color.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/DebugDraw/Color.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/DebugDraw/Cone.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/DebugDraw/Cone.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/DebugDraw/Cylinder.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/DebugDraw/Cylinder.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/DebugDraw/DebugScene.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/DebugDraw/DebugScene.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/DebugDraw/NormalsVisualization.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/DebugDraw/NormalsVisualization.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/DebugDraw/Plane.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/DebugDraw/Plane.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/DebugDraw/Pyramid.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/DebugDraw/Pyramid.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/DebugDraw/Sphere.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/DebugDraw/Sphere.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/Interface/PerformanceMetricsOverlay.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/Interface/PerformanceMetricsOverlay.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/KeyframeAnimation.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/KeyframeAnimation.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/NativeClient.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/NativeClient.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/Renderer.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/Renderer.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/WebGPU/Buffer.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/WebGPU/Buffer.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/WebGPU/GroundMeshMaterial.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/WebGPU/GroundMeshMaterial.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/WebGPU/InvisibleBaseMaterial.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/WebGPU/InvisibleBaseMaterial.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/WebGPU/Mesh.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/WebGPU/Mesh.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/WebGPU/Surface.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/WebGPU/Surface.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/WebGPU/Texture.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/WebGPU/Texture.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/WebGPU/UnlitMeshMaterial.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/WebGPU/UnlitMeshMaterial.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/WebGPU/UserInterfaceMaterial.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/WebGPU/UserInterfaceMaterial.spec.lua -------------------------------------------------------------------------------- /Tests/NativeClient/WebGPU/WaterSurfaceMaterial.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/NativeClient/WebGPU/WaterSurfaceMaterial.spec.lua -------------------------------------------------------------------------------- /Tests/RuntimeExtensions/C_Runtime.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/RuntimeExtensions/C_Runtime.spec.lua -------------------------------------------------------------------------------- /Tests/Tools/FileAnalyzer.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Tools/FileAnalyzer.spec.lua -------------------------------------------------------------------------------- /Tests/Tools/RagnarokTools.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/Tools/RagnarokTools.spec.lua -------------------------------------------------------------------------------- /Tests/VectorMath/Matrix3D.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/VectorMath/Matrix3D.spec.lua -------------------------------------------------------------------------------- /Tests/VectorMath/Matrix4D.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/VectorMath/Matrix4D.spec.lua -------------------------------------------------------------------------------- /Tests/VectorMath/Vector3D.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/VectorMath/Vector3D.spec.lua -------------------------------------------------------------------------------- /Tests/WorldServer/C_ServerHealth.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/WorldServer/C_ServerHealth.spec.lua -------------------------------------------------------------------------------- /Tests/WorldServer/WorldServer.spec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/WorldServer/WorldServer.spec.lua -------------------------------------------------------------------------------- /Tests/smoke-test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/smoke-test.lua -------------------------------------------------------------------------------- /Tests/unit-test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tests/unit-test.lua -------------------------------------------------------------------------------- /Tools/DependencyCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/DependencyCheck.cpp -------------------------------------------------------------------------------- /Tools/FileAnalyzer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/FileAnalyzer.lua -------------------------------------------------------------------------------- /Tools/RagnarokTools.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/RagnarokTools.lua -------------------------------------------------------------------------------- /Tools/act-to-json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/act-to-json.lua -------------------------------------------------------------------------------- /Tools/analyze-act-files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/analyze-act-files.lua -------------------------------------------------------------------------------- /Tools/analyze-gat-files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/analyze-gat-files.lua -------------------------------------------------------------------------------- /Tools/analyze-gnd-files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/analyze-gnd-files.lua -------------------------------------------------------------------------------- /Tools/analyze-grf-entries.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/analyze-grf-entries.lua -------------------------------------------------------------------------------- /Tools/analyze-rsm-files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/analyze-rsm-files.lua -------------------------------------------------------------------------------- /Tools/analyze-rsw-files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/analyze-rsw-files.lua -------------------------------------------------------------------------------- /Tools/analyze-spr-files.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/analyze-spr-files.lua -------------------------------------------------------------------------------- /Tools/analyze-water-textures.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/analyze-water-textures.lua -------------------------------------------------------------------------------- /Tools/analyze-water-types.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/analyze-water-types.lua -------------------------------------------------------------------------------- /Tools/cloc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/cloc.lua -------------------------------------------------------------------------------- /Tools/convert-mapnametable.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/convert-mapnametable.lua -------------------------------------------------------------------------------- /Tools/dump-gat-images.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/dump-gat-images.lua -------------------------------------------------------------------------------- /Tools/dump-gnd-lightmap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/dump-gnd-lightmap.lua -------------------------------------------------------------------------------- /Tools/dump-gr2-segments.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/dump-gr2-segments.lua -------------------------------------------------------------------------------- /Tools/dump-grf-file-list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/dump-grf-file-list.lua -------------------------------------------------------------------------------- /Tools/dump-rsw-quadtree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/dump-rsw-quadtree.lua -------------------------------------------------------------------------------- /Tools/dump-spr-images.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/dump-spr-images.lua -------------------------------------------------------------------------------- /Tools/export-ebm-as-bmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/export-ebm-as-bmp.lua -------------------------------------------------------------------------------- /Tools/export-fog-parameters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/export-fog-parameters.lua -------------------------------------------------------------------------------- /Tools/extract-from-grf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/extract-from-grf.lua -------------------------------------------------------------------------------- /Tools/gr2-to-json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/gr2-to-json.lua -------------------------------------------------------------------------------- /Tools/imf-to-json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/imf-to-json.lua -------------------------------------------------------------------------------- /Tools/rsm-to-json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/rsm-to-json.lua -------------------------------------------------------------------------------- /Tools/rsw-to-json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/Tools/rsw-to-json.lua -------------------------------------------------------------------------------- /autoformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/autoformat.sh -------------------------------------------------------------------------------- /client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/client.lua -------------------------------------------------------------------------------- /download-runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/download-runtime.sh -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/main.lua -------------------------------------------------------------------------------- /server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/server.lua -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/test.sh -------------------------------------------------------------------------------- /validate-shaders.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/validate-shaders.sh -------------------------------------------------------------------------------- /watch.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RagnarokResearchLab/RagLite/HEAD/watch.cmd --------------------------------------------------------------------------------