├── .gitignore ├── LICENSE ├── README.md ├── awtools ├── bin.py ├── bin2xml.py ├── binfnt2xml.py ├── bingrs2obj.py ├── binhkx2xml.py ├── collisions2obj.py ├── dds2tex.py ├── disasm.py ├── dp2xml.py ├── packmeta2xml.py ├── rmdp.py ├── roadmap2xml.py ├── string_table2xml.py ├── terraindata2obj.py ├── tex2dds.py ├── tex2tga.py ├── unbin.py ├── unobj.py ├── unrmdl.py ├── unrmdp.py └── xml2string_table.py └── bytecode.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/README.md -------------------------------------------------------------------------------- /awtools/bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/bin.py -------------------------------------------------------------------------------- /awtools/bin2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/bin2xml.py -------------------------------------------------------------------------------- /awtools/binfnt2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/binfnt2xml.py -------------------------------------------------------------------------------- /awtools/bingrs2obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/bingrs2obj.py -------------------------------------------------------------------------------- /awtools/binhkx2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/binhkx2xml.py -------------------------------------------------------------------------------- /awtools/collisions2obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/collisions2obj.py -------------------------------------------------------------------------------- /awtools/dds2tex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/dds2tex.py -------------------------------------------------------------------------------- /awtools/disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/disasm.py -------------------------------------------------------------------------------- /awtools/dp2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/dp2xml.py -------------------------------------------------------------------------------- /awtools/packmeta2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/packmeta2xml.py -------------------------------------------------------------------------------- /awtools/rmdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/rmdp.py -------------------------------------------------------------------------------- /awtools/roadmap2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/roadmap2xml.py -------------------------------------------------------------------------------- /awtools/string_table2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/string_table2xml.py -------------------------------------------------------------------------------- /awtools/terraindata2obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/terraindata2obj.py -------------------------------------------------------------------------------- /awtools/tex2dds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/tex2dds.py -------------------------------------------------------------------------------- /awtools/tex2tga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/tex2tga.py -------------------------------------------------------------------------------- /awtools/unbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/unbin.py -------------------------------------------------------------------------------- /awtools/unobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/unobj.py -------------------------------------------------------------------------------- /awtools/unrmdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/unrmdl.py -------------------------------------------------------------------------------- /awtools/unrmdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/unrmdp.py -------------------------------------------------------------------------------- /awtools/xml2string_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/awtools/xml2string_table.py -------------------------------------------------------------------------------- /bytecode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nostritius/AWTools/HEAD/bytecode.md --------------------------------------------------------------------------------