├── .gitignore ├── .gitmodules ├── BotWEditor.sln ├── BotWEditor ├── App.config ├── BotWEditor.csproj ├── Editor │ ├── Common │ │ ├── BoundingBox.cs │ │ ├── Display.cs │ │ ├── Input.cs │ │ ├── MathExtensions.cs │ │ ├── Ray.cs │ │ ├── Rect.cs │ │ └── Time.cs │ ├── Components │ │ ├── BaseComponent.cs │ │ ├── Camera.cs │ │ ├── EditorObject.cs │ │ ├── FPSCameraMovement.cs │ │ ├── Renderable.cs │ │ └── Transform.cs │ └── EditorCore.cs ├── Forms │ ├── Dialogs │ │ ├── AboutBoxForm.Designer.cs │ │ ├── AboutBoxForm.cs │ │ └── AboutBoxForm.resx │ ├── MainEditorForm.Designer.cs │ ├── MainEditorForm.cs │ └── MainEditorForm.resx ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── BotWLib.Test ├── BotWLib.Tests.csproj ├── Properties │ └── AssemblyInfo.cs ├── TestData │ ├── 580000C000.hght.sstera │ └── 580000C000.hght.stera ├── Yaz0StreamTest.cs └── packages.config ├── BotWWorldViewer ├── App.config ├── BotWWorldViewer.csproj ├── Graphics │ ├── Camera.cs │ ├── RenderObject.cs │ ├── ShaderBuilder.cs │ ├── ShaderProgram.cs │ ├── ShaderProgram3D.cs │ ├── TerrainShader.cs │ ├── Texture.cs │ ├── Vertex.cs │ └── VertexBuffer.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Resource │ ├── Archive.cs │ ├── FramedStream.cs │ └── ResourceManager.cs ├── Shaders │ ├── fragmentShader.frag │ └── vertexShader.vert ├── Terrain.cs ├── ViewerWindow.cs └── ZeldaHeightmap.cs ├── LICENSE ├── README.md ├── ThirdParty ├── OpenTK.GLControl │ ├── OpenTK.GLControl.dll │ └── OpenTK.GLControl.xml └── OpenTK │ ├── OpenTK.dll │ └── OpenTK.dll.config └── logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/.gitmodules -------------------------------------------------------------------------------- /BotWEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor.sln -------------------------------------------------------------------------------- /BotWEditor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/App.config -------------------------------------------------------------------------------- /BotWEditor/BotWEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/BotWEditor.csproj -------------------------------------------------------------------------------- /BotWEditor/Editor/Common/BoundingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Common/BoundingBox.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Common/Display.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Common/Display.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Common/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Common/Input.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Common/MathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Common/MathExtensions.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Common/Ray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Common/Ray.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Common/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Common/Rect.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Common/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Common/Time.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Components/BaseComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Components/BaseComponent.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Components/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Components/Camera.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Components/EditorObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Components/EditorObject.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Components/FPSCameraMovement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Components/FPSCameraMovement.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Components/Renderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Components/Renderable.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/Components/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/Components/Transform.cs -------------------------------------------------------------------------------- /BotWEditor/Editor/EditorCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Editor/EditorCore.cs -------------------------------------------------------------------------------- /BotWEditor/Forms/Dialogs/AboutBoxForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Forms/Dialogs/AboutBoxForm.Designer.cs -------------------------------------------------------------------------------- /BotWEditor/Forms/Dialogs/AboutBoxForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Forms/Dialogs/AboutBoxForm.cs -------------------------------------------------------------------------------- /BotWEditor/Forms/Dialogs/AboutBoxForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Forms/Dialogs/AboutBoxForm.resx -------------------------------------------------------------------------------- /BotWEditor/Forms/MainEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Forms/MainEditorForm.Designer.cs -------------------------------------------------------------------------------- /BotWEditor/Forms/MainEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Forms/MainEditorForm.cs -------------------------------------------------------------------------------- /BotWEditor/Forms/MainEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Forms/MainEditorForm.resx -------------------------------------------------------------------------------- /BotWEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Program.cs -------------------------------------------------------------------------------- /BotWEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BotWEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /BotWEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /BotWEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /BotWEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /BotWLib.Test/BotWLib.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWLib.Test/BotWLib.Tests.csproj -------------------------------------------------------------------------------- /BotWLib.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWLib.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BotWLib.Test/TestData/580000C000.hght.sstera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWLib.Test/TestData/580000C000.hght.sstera -------------------------------------------------------------------------------- /BotWLib.Test/TestData/580000C000.hght.stera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWLib.Test/TestData/580000C000.hght.stera -------------------------------------------------------------------------------- /BotWLib.Test/Yaz0StreamTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWLib.Test/Yaz0StreamTest.cs -------------------------------------------------------------------------------- /BotWLib.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWLib.Test/packages.config -------------------------------------------------------------------------------- /BotWWorldViewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/App.config -------------------------------------------------------------------------------- /BotWWorldViewer/BotWWorldViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/BotWWorldViewer.csproj -------------------------------------------------------------------------------- /BotWWorldViewer/Graphics/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Graphics/Camera.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Graphics/RenderObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Graphics/RenderObject.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Graphics/ShaderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Graphics/ShaderBuilder.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Graphics/ShaderProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Graphics/ShaderProgram.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Graphics/ShaderProgram3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Graphics/ShaderProgram3D.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Graphics/TerrainShader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Graphics/TerrainShader.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Graphics/Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Graphics/Texture.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Graphics/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Graphics/Vertex.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Graphics/VertexBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Graphics/VertexBuffer.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Program.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Resource/Archive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Resource/Archive.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Resource/FramedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Resource/FramedStream.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Resource/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Resource/ResourceManager.cs -------------------------------------------------------------------------------- /BotWWorldViewer/Shaders/fragmentShader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Shaders/fragmentShader.frag -------------------------------------------------------------------------------- /BotWWorldViewer/Shaders/vertexShader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Shaders/vertexShader.vert -------------------------------------------------------------------------------- /BotWWorldViewer/Terrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/Terrain.cs -------------------------------------------------------------------------------- /BotWWorldViewer/ViewerWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/ViewerWindow.cs -------------------------------------------------------------------------------- /BotWWorldViewer/ZeldaHeightmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/BotWWorldViewer/ZeldaHeightmap.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/README.md -------------------------------------------------------------------------------- /ThirdParty/OpenTK.GLControl/OpenTK.GLControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/ThirdParty/OpenTK.GLControl/OpenTK.GLControl.dll -------------------------------------------------------------------------------- /ThirdParty/OpenTK.GLControl/OpenTK.GLControl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/ThirdParty/OpenTK.GLControl/OpenTK.GLControl.xml -------------------------------------------------------------------------------- /ThirdParty/OpenTK/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/ThirdParty/OpenTK/OpenTK.dll -------------------------------------------------------------------------------- /ThirdParty/OpenTK/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/ThirdParty/OpenTK/OpenTK.dll.config -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handsomematt/botw-editor/HEAD/logo.png --------------------------------------------------------------------------------