├── .gitignore ├── README.md ├── WWActorEdit.sln ├── WWActorEdit.suo └── WWActorEdit ├── Forms ├── EnvironmentLightingEditorForm.Designer.cs ├── EnvironmentLightingEditorForm.cs ├── EnvironmentLightingEditorForm.resx ├── ExceptionForm.cs ├── ExceptionForm.designer.cs ├── ExceptionForm.resx ├── ExceptionHandler.cs ├── ExitEditor.Designer.cs ├── ExitEditor.cs ├── ExitEditor.resx ├── FloatConverter.Designer.cs ├── FloatConverter.cs ├── FloatConverter.resx ├── InvalidRoomNumber.Designer.cs ├── InvalidRoomNumber.cs ├── InvalidRoomNumber.resx ├── SpawnpointEditor.Designer.cs ├── SpawnpointEditor.cs └── SpawnpointEditor.resx ├── Kazari ├── Common.cs ├── DZB │ └── DZB.cs ├── DZx │ ├── ACTR.cs │ ├── ACTRControl.Designer.cs │ ├── ACTRControl.cs │ ├── ACTRControl.resx │ ├── DZx.cs │ ├── Generic.cs │ ├── IDZRChunkElement.cs │ ├── LGTV.cs │ ├── MULT.cs │ ├── MULTControl.cs │ ├── MULTControl.designer.cs │ ├── MULTControl.resx │ ├── RPPN.cs │ ├── RPPNControl.Designer.cs │ ├── RPPNControl.cs │ ├── RPPNControl.resx │ ├── SHIP.cs │ ├── SHIPControl.Designer.cs │ ├── SHIPControl.cs │ ├── SHIPControl.resx │ ├── TGDR.cs │ ├── TGDRControl.Designer.cs │ ├── TGDRControl.cs │ ├── TGDRControl.resx │ ├── TRES.cs │ ├── TRESControl.cs │ ├── TRESControl.designer.cs │ └── TRESControl.resx ├── Helpers.cs ├── HexEditBox.cs ├── J3Dx │ └── J3Dx.cs ├── RARC.cs └── RARCPacker.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── OpenTK.GLControl.dll ├── OpenTK.dll ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Source ├── DZS │ └── FileFormat.cs ├── FSHelpers.cs └── StickyWindow.cs ├── WindViewer.csproj ├── ZeldaArc.cs └── windviewer.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/README.md -------------------------------------------------------------------------------- /WWActorEdit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit.sln -------------------------------------------------------------------------------- /WWActorEdit.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit.suo -------------------------------------------------------------------------------- /WWActorEdit/Forms/EnvironmentLightingEditorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/EnvironmentLightingEditorForm.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/EnvironmentLightingEditorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/EnvironmentLightingEditorForm.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/EnvironmentLightingEditorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/EnvironmentLightingEditorForm.resx -------------------------------------------------------------------------------- /WWActorEdit/Forms/ExceptionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/ExceptionForm.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/ExceptionForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/ExceptionForm.designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/ExceptionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/ExceptionForm.resx -------------------------------------------------------------------------------- /WWActorEdit/Forms/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/ExceptionHandler.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/ExitEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/ExitEditor.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/ExitEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/ExitEditor.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/ExitEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/ExitEditor.resx -------------------------------------------------------------------------------- /WWActorEdit/Forms/FloatConverter.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/FloatConverter.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/FloatConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/FloatConverter.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/FloatConverter.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/FloatConverter.resx -------------------------------------------------------------------------------- /WWActorEdit/Forms/InvalidRoomNumber.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/InvalidRoomNumber.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/InvalidRoomNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/InvalidRoomNumber.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/InvalidRoomNumber.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/InvalidRoomNumber.resx -------------------------------------------------------------------------------- /WWActorEdit/Forms/SpawnpointEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/SpawnpointEditor.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/SpawnpointEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/SpawnpointEditor.cs -------------------------------------------------------------------------------- /WWActorEdit/Forms/SpawnpointEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Forms/SpawnpointEditor.resx -------------------------------------------------------------------------------- /WWActorEdit/Kazari/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/Common.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZB/DZB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZB/DZB.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/ACTR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/ACTR.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/ACTRControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/ACTRControl.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/ACTRControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/ACTRControl.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/ACTRControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/ACTRControl.resx -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/DZx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/DZx.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/Generic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/Generic.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/IDZRChunkElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/IDZRChunkElement.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/LGTV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/LGTV.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/MULT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/MULT.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/MULTControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/MULTControl.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/MULTControl.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/MULTControl.designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/MULTControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/MULTControl.resx -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/RPPN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/RPPN.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/RPPNControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/RPPNControl.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/RPPNControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/RPPNControl.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/RPPNControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/RPPNControl.resx -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/SHIP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/SHIP.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/SHIPControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/SHIPControl.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/SHIPControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/SHIPControl.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/SHIPControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/SHIPControl.resx -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/TGDR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/TGDR.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/TGDRControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/TGDRControl.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/TGDRControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/TGDRControl.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/TGDRControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/TGDRControl.resx -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/TRES.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/TRES.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/TRESControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/TRESControl.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/TRESControl.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/TRESControl.designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/DZx/TRESControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/DZx/TRESControl.resx -------------------------------------------------------------------------------- /WWActorEdit/Kazari/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/Helpers.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/HexEditBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/HexEditBox.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/J3Dx/J3Dx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/J3Dx/J3Dx.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/RARC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/RARC.cs -------------------------------------------------------------------------------- /WWActorEdit/Kazari/RARCPacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Kazari/RARCPacker.cs -------------------------------------------------------------------------------- /WWActorEdit/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/MainForm.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/MainForm.cs -------------------------------------------------------------------------------- /WWActorEdit/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/MainForm.resx -------------------------------------------------------------------------------- /WWActorEdit/OpenTK.GLControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/OpenTK.GLControl.dll -------------------------------------------------------------------------------- /WWActorEdit/OpenTK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/OpenTK.dll -------------------------------------------------------------------------------- /WWActorEdit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Program.cs -------------------------------------------------------------------------------- /WWActorEdit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WWActorEdit/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Properties/Resources.resx -------------------------------------------------------------------------------- /WWActorEdit/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /WWActorEdit/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Properties/Settings.settings -------------------------------------------------------------------------------- /WWActorEdit/Source/DZS/FileFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Source/DZS/FileFormat.cs -------------------------------------------------------------------------------- /WWActorEdit/Source/FSHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Source/FSHelpers.cs -------------------------------------------------------------------------------- /WWActorEdit/Source/StickyWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/Source/StickyWindow.cs -------------------------------------------------------------------------------- /WWActorEdit/WindViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/WindViewer.csproj -------------------------------------------------------------------------------- /WWActorEdit/ZeldaArc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/ZeldaArc.cs -------------------------------------------------------------------------------- /WWActorEdit/windviewer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pho/WindViewer/HEAD/WWActorEdit/windviewer.ico --------------------------------------------------------------------------------