├── .gitignore ├── .gitmodules ├── BoTK.sln ├── BoTK ├── .gitignore ├── BoTK.csproj ├── Entities │ ├── Entity.cs │ ├── EntityCollection.cs │ ├── EntityRepository.cs │ ├── Formats │ │ ├── BYMLEntity.cs │ │ ├── BinaryEntity.cs │ │ ├── SARCEntityCollection.cs │ │ └── YAZ0Entity.cs │ └── Magic.cs ├── ProgOptions.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── LICENSE.md ├── README.md └── REScripts ├── HeightmapRipper ├── .gitignore └── extract_terrain.py └── TSCBViewer ├── BoTWHeightmap ├── __init__.py ├── config.py ├── heightmap.py ├── lodlevel.py ├── stringtable.py ├── tile.py ├── unk0collection.py └── unk1collection.py ├── MainField.tscb ├── Util ├── __init__.py ├── breader.py └── camera.py └── viewer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/.gitmodules -------------------------------------------------------------------------------- /BoTK.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK.sln -------------------------------------------------------------------------------- /BoTK/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | packages/ 4 | -------------------------------------------------------------------------------- /BoTK/BoTK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/BoTK.csproj -------------------------------------------------------------------------------- /BoTK/Entities/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/Entities/Entity.cs -------------------------------------------------------------------------------- /BoTK/Entities/EntityCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/Entities/EntityCollection.cs -------------------------------------------------------------------------------- /BoTK/Entities/EntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/Entities/EntityRepository.cs -------------------------------------------------------------------------------- /BoTK/Entities/Formats/BYMLEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/Entities/Formats/BYMLEntity.cs -------------------------------------------------------------------------------- /BoTK/Entities/Formats/BinaryEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/Entities/Formats/BinaryEntity.cs -------------------------------------------------------------------------------- /BoTK/Entities/Formats/SARCEntityCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/Entities/Formats/SARCEntityCollection.cs -------------------------------------------------------------------------------- /BoTK/Entities/Formats/YAZ0Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/Entities/Formats/YAZ0Entity.cs -------------------------------------------------------------------------------- /BoTK/Entities/Magic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/Entities/Magic.cs -------------------------------------------------------------------------------- /BoTK/ProgOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/ProgOptions.cs -------------------------------------------------------------------------------- /BoTK/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/Program.cs -------------------------------------------------------------------------------- /BoTK/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BoTK/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/BoTK/packages.config -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/README.md -------------------------------------------------------------------------------- /REScripts/HeightmapRipper/.gitignore: -------------------------------------------------------------------------------- 1 | raw_maps/ 2 | -------------------------------------------------------------------------------- /REScripts/HeightmapRipper/extract_terrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/HeightmapRipper/extract_terrain.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/BoTWHeightmap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/BoTWHeightmap/__init__.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/BoTWHeightmap/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/BoTWHeightmap/config.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/BoTWHeightmap/heightmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/BoTWHeightmap/heightmap.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/BoTWHeightmap/lodlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/BoTWHeightmap/lodlevel.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/BoTWHeightmap/stringtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/BoTWHeightmap/stringtable.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/BoTWHeightmap/tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/BoTWHeightmap/tile.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/BoTWHeightmap/unk0collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/BoTWHeightmap/unk0collection.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/BoTWHeightmap/unk1collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/BoTWHeightmap/unk1collection.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/MainField.tscb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/MainField.tscb -------------------------------------------------------------------------------- /REScripts/TSCBViewer/Util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/Util/__init__.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/Util/breader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/Util/breader.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/Util/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/Util/camera.py -------------------------------------------------------------------------------- /REScripts/TSCBViewer/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veryjos/birth_of_the_toolkit/HEAD/REScripts/TSCBViewer/viewer.py --------------------------------------------------------------------------------