├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── bass ├── bass.dll ├── bass.h └── bass.lib ├── imgui ├── imconfig.h ├── imgui.cpp ├── imgui.h ├── imgui_demo.cpp ├── imgui_draw.cpp ├── imgui_impl_dx11.cpp ├── imgui_impl_dx11.h ├── imgui_impl_win32.cpp ├── imgui_impl_win32.h ├── imgui_internal.h ├── imgui_stdlib.cpp ├── imgui_stdlib.h ├── imgui_tables.cpp ├── imgui_widgets.cpp ├── imstb_rectpack.h ├── imstb_textedit.h └── imstb_truetype.h ├── moggcrypt ├── CCallbacks.cpp ├── CCallbacks.h ├── MakeMogg.cpp ├── OggMap.cpp ├── OggMap.h ├── VorbisEncrypter.cpp ├── VorbisEncrypter.h ├── XiphTypes.h ├── aes.c ├── aes.h ├── keys.h ├── oggvorbis.cpp └── oggvorbis.h └── src ├── core_types.h ├── crc.h ├── custom_song_creator.cpp ├── custom_song_pak_template.h ├── fuser_asset.cpp ├── fuser_asset.h ├── hmx_midifile.cpp ├── hmx_midifile.h ├── main.cpp ├── serialize.h ├── sha1.cpp ├── sha1.h ├── uasset.cpp └── uasset.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | bin 3 | .vscode -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/README.md -------------------------------------------------------------------------------- /bass/bass.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/bass/bass.dll -------------------------------------------------------------------------------- /bass/bass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/bass/bass.h -------------------------------------------------------------------------------- /bass/bass.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/bass/bass.lib -------------------------------------------------------------------------------- /imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imconfig.h -------------------------------------------------------------------------------- /imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui.cpp -------------------------------------------------------------------------------- /imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui.h -------------------------------------------------------------------------------- /imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /imgui/imgui_impl_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui_impl_dx11.cpp -------------------------------------------------------------------------------- /imgui/imgui_impl_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui_impl_dx11.h -------------------------------------------------------------------------------- /imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui_internal.h -------------------------------------------------------------------------------- /imgui/imgui_stdlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui_stdlib.cpp -------------------------------------------------------------------------------- /imgui/imgui_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui_stdlib.h -------------------------------------------------------------------------------- /imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imstb_textedit.h -------------------------------------------------------------------------------- /imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/imgui/imstb_truetype.h -------------------------------------------------------------------------------- /moggcrypt/CCallbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/CCallbacks.cpp -------------------------------------------------------------------------------- /moggcrypt/CCallbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/CCallbacks.h -------------------------------------------------------------------------------- /moggcrypt/MakeMogg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/MakeMogg.cpp -------------------------------------------------------------------------------- /moggcrypt/OggMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/OggMap.cpp -------------------------------------------------------------------------------- /moggcrypt/OggMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/OggMap.h -------------------------------------------------------------------------------- /moggcrypt/VorbisEncrypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/VorbisEncrypter.cpp -------------------------------------------------------------------------------- /moggcrypt/VorbisEncrypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/VorbisEncrypter.h -------------------------------------------------------------------------------- /moggcrypt/XiphTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/XiphTypes.h -------------------------------------------------------------------------------- /moggcrypt/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/aes.c -------------------------------------------------------------------------------- /moggcrypt/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/aes.h -------------------------------------------------------------------------------- /moggcrypt/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/keys.h -------------------------------------------------------------------------------- /moggcrypt/oggvorbis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/oggvorbis.cpp -------------------------------------------------------------------------------- /moggcrypt/oggvorbis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/moggcrypt/oggvorbis.h -------------------------------------------------------------------------------- /src/core_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/core_types.h -------------------------------------------------------------------------------- /src/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/crc.h -------------------------------------------------------------------------------- /src/custom_song_creator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/custom_song_creator.cpp -------------------------------------------------------------------------------- /src/custom_song_pak_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/custom_song_pak_template.h -------------------------------------------------------------------------------- /src/fuser_asset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/fuser_asset.cpp -------------------------------------------------------------------------------- /src/fuser_asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/fuser_asset.h -------------------------------------------------------------------------------- /src/hmx_midifile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/hmx_midifile.cpp -------------------------------------------------------------------------------- /src/hmx_midifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/hmx_midifile.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/serialize.h -------------------------------------------------------------------------------- /src/sha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/sha1.cpp -------------------------------------------------------------------------------- /src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/sha1.h -------------------------------------------------------------------------------- /src/uasset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/uasset.cpp -------------------------------------------------------------------------------- /src/uasset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mettra/FuserCustomSongCreator/HEAD/src/uasset.h --------------------------------------------------------------------------------