├── .gitignore ├── .gitmodules ├── LICENSE ├── MANIFEST.in ├── README.md ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── ubotw_converter ├── HKXConvert ├── HKXConvert.exe ├── __init__.py ├── bars_py ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── bars.py ├── bcf_converter.py └── utils.py ├── bflim_convertor ├── __init__.py ├── addrlib │ ├── __init__.py │ ├── addrlib.py │ └── addrlib_cy.pyx ├── bflim_extract.py ├── bntx.py ├── bntx_dds_injector.py ├── dds.py ├── formConv.py ├── formConv_cy.pyx └── globals.py ├── convert.bat ├── convert.sh ├── convert_single_thread.bat ├── converter.py ├── dotnet_libs ├── BfresLibrary.dll ├── Newtonsoft.Json.dll ├── Syroot.BinaryData.dll ├── Syroot.Maths.dll └── Syroot.NintenTools.NSW.Bntx.dll └── log.conf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bcml>=3.8.0 2 | pythonnet>=3.0.0a2 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/setup.cfg -------------------------------------------------------------------------------- /ubotw_converter/HKXConvert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/HKXConvert -------------------------------------------------------------------------------- /ubotw_converter/HKXConvert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/HKXConvert.exe -------------------------------------------------------------------------------- /ubotw_converter/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python -------------------------------------------------------------------------------- /ubotw_converter/bars_py/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bars_py/.gitignore -------------------------------------------------------------------------------- /ubotw_converter/bars_py/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bars_py/LICENSE -------------------------------------------------------------------------------- /ubotw_converter/bars_py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bars_py/README.md -------------------------------------------------------------------------------- /ubotw_converter/bars_py/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python -------------------------------------------------------------------------------- /ubotw_converter/bars_py/bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bars_py/bars.py -------------------------------------------------------------------------------- /ubotw_converter/bars_py/bcf_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bars_py/bcf_converter.py -------------------------------------------------------------------------------- /ubotw_converter/bars_py/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bars_py/utils.py -------------------------------------------------------------------------------- /ubotw_converter/bflim_convertor/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /ubotw_converter/bflim_convertor/addrlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bflim_convertor/addrlib/__init__.py -------------------------------------------------------------------------------- /ubotw_converter/bflim_convertor/addrlib/addrlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bflim_convertor/addrlib/addrlib.py -------------------------------------------------------------------------------- /ubotw_converter/bflim_convertor/addrlib/addrlib_cy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bflim_convertor/addrlib/addrlib_cy.pyx -------------------------------------------------------------------------------- /ubotw_converter/bflim_convertor/bflim_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bflim_convertor/bflim_extract.py -------------------------------------------------------------------------------- /ubotw_converter/bflim_convertor/bntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bflim_convertor/bntx.py -------------------------------------------------------------------------------- /ubotw_converter/bflim_convertor/bntx_dds_injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bflim_convertor/bntx_dds_injector.py -------------------------------------------------------------------------------- /ubotw_converter/bflim_convertor/dds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bflim_convertor/dds.py -------------------------------------------------------------------------------- /ubotw_converter/bflim_convertor/formConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bflim_convertor/formConv.py -------------------------------------------------------------------------------- /ubotw_converter/bflim_convertor/formConv_cy.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bflim_convertor/formConv_cy.pyx -------------------------------------------------------------------------------- /ubotw_converter/bflim_convertor/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/bflim_convertor/globals.py -------------------------------------------------------------------------------- /ubotw_converter/convert.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/convert.bat -------------------------------------------------------------------------------- /ubotw_converter/convert.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python converter.py "$1" 4 | -------------------------------------------------------------------------------- /ubotw_converter/convert_single_thread.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/convert_single_thread.bat -------------------------------------------------------------------------------- /ubotw_converter/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/converter.py -------------------------------------------------------------------------------- /ubotw_converter/dotnet_libs/BfresLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/dotnet_libs/BfresLibrary.dll -------------------------------------------------------------------------------- /ubotw_converter/dotnet_libs/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/dotnet_libs/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ubotw_converter/dotnet_libs/Syroot.BinaryData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/dotnet_libs/Syroot.BinaryData.dll -------------------------------------------------------------------------------- /ubotw_converter/dotnet_libs/Syroot.Maths.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/dotnet_libs/Syroot.Maths.dll -------------------------------------------------------------------------------- /ubotw_converter/dotnet_libs/Syroot.NintenTools.NSW.Bntx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/dotnet_libs/Syroot.NintenTools.NSW.Bntx.dll -------------------------------------------------------------------------------- /ubotw_converter/log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nitr4m12/UltimateBotWConverter/HEAD/ubotw_converter/log.conf --------------------------------------------------------------------------------