├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md └── Scripts ├── Lipsync-Visualizer.py ├── Lipsync2Midi.py ├── Lipsync_Converter_RB4.py ├── __init__.py ├── common ├── __init__.py ├── classes.py ├── dicts.py └── functions.py ├── createSongPackageRB2.py ├── createSongPackageRB3.py ├── dependencies └── dtxtool │ ├── DTXTool.exe │ └── DtxCS.dll ├── lipsyncevents.py ├── lipsynctemplates ├── 1 │ ├── decompressed.bin │ ├── lipsync │ │ └── song.lipsync │ └── parsed.txt ├── 2 │ ├── decompressed.bin │ ├── lipsync │ │ ├── part2.lipsync │ │ └── song.lipsync │ └── parsed.txt ├── 3 │ ├── decompressed.bin │ ├── lipsync │ │ ├── part2.lipsync │ │ ├── part3.lipsync │ │ └── song.lipsync │ └── parsed.txt ├── 4 │ ├── decompressed.bin │ ├── lipsync │ │ ├── part2.lipsync │ │ ├── part3.lipsync │ │ ├── part4.lipsync │ │ └── song.lipsync │ └── parsed.txt └── RB2 │ ├── decompressed.bin │ ├── lipsync │ └── song.lipsync │ └── parsed.txt ├── milo2midi.py ├── rbsong2midi.py ├── readmoggdta.py ├── songdta2txt.py └── voc2lipsync.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Lipsync-Visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/Lipsync-Visualizer.py -------------------------------------------------------------------------------- /Scripts/Lipsync2Midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/Lipsync2Midi.py -------------------------------------------------------------------------------- /Scripts/Lipsync_Converter_RB4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/Lipsync_Converter_RB4.py -------------------------------------------------------------------------------- /Scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/common/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/common/classes.py -------------------------------------------------------------------------------- /Scripts/common/dicts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/common/dicts.py -------------------------------------------------------------------------------- /Scripts/common/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/common/functions.py -------------------------------------------------------------------------------- /Scripts/createSongPackageRB2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/createSongPackageRB2.py -------------------------------------------------------------------------------- /Scripts/createSongPackageRB3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/createSongPackageRB3.py -------------------------------------------------------------------------------- /Scripts/dependencies/dtxtool/DTXTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/dependencies/dtxtool/DTXTool.exe -------------------------------------------------------------------------------- /Scripts/dependencies/dtxtool/DtxCS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/dependencies/dtxtool/DtxCS.dll -------------------------------------------------------------------------------- /Scripts/lipsyncevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/lipsyncevents.py -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/1/decompressed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/lipsynctemplates/1/decompressed.bin -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/1/lipsync/song.lipsync: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/1/parsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/lipsynctemplates/1/parsed.txt -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/2/decompressed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/lipsynctemplates/2/decompressed.bin -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/2/lipsync/part2.lipsync: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/2/lipsync/song.lipsync: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/2/parsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/lipsynctemplates/2/parsed.txt -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/3/decompressed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/lipsynctemplates/3/decompressed.bin -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/3/lipsync/part2.lipsync: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/3/lipsync/part3.lipsync: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/3/lipsync/song.lipsync: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/3/parsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/lipsynctemplates/3/parsed.txt -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/4/decompressed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/lipsynctemplates/4/decompressed.bin -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/4/lipsync/part2.lipsync: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/4/lipsync/part3.lipsync: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/4/lipsync/part4.lipsync: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/4/lipsync/song.lipsync: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/4/parsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/lipsynctemplates/4/parsed.txt -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/RB2/decompressed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/lipsynctemplates/RB2/decompressed.bin -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/RB2/lipsync/song.lipsync: -------------------------------------------------------------------------------- 1 | lol -------------------------------------------------------------------------------- /Scripts/lipsynctemplates/RB2/parsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/lipsynctemplates/RB2/parsed.txt -------------------------------------------------------------------------------- /Scripts/milo2midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/milo2midi.py -------------------------------------------------------------------------------- /Scripts/rbsong2midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/rbsong2midi.py -------------------------------------------------------------------------------- /Scripts/readmoggdta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/readmoggdta.py -------------------------------------------------------------------------------- /Scripts/songdta2txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/songdta2txt.py -------------------------------------------------------------------------------- /Scripts/voc2lipsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AddyMills/RB-Tools/HEAD/Scripts/voc2lipsync.py --------------------------------------------------------------------------------