├── .gitignore ├── LICENSE.txt ├── README.md ├── brightmoon ├── Makefile ├── arctmp.hpp ├── bitreader.hpp ├── brightmoon.vcxproj ├── brightmoon.vcxproj.filters ├── frandre.cpp ├── frandre.hpp ├── hinanawi.cpp ├── hinanawi.hpp ├── kaguya.cpp ├── kaguya.hpp ├── kanako.cpp ├── kanako.hpp ├── limit.hpp ├── mainwnd.cpp ├── mima.cpp ├── mima.hpp ├── mt.hpp ├── pathext.cpp ├── pathext.hpp ├── pbgarc.hpp ├── pbgmgr.cpp ├── pbgmgr.rc ├── pbgmgr.xml ├── resource.h ├── stdint.h ├── suica.cpp ├── suica.hpp ├── thcrypter.cpp ├── unerle.cpp ├── unlzss.cpp ├── vivit.cpp ├── vivit.hpp ├── xor.hpp ├── yumemi.cpp ├── yumemi.hpp ├── yumemicrypt.hpp ├── yuyuko.cpp └── yuyuko.hpp ├── convcv0 ├── ReadMe.txt ├── convcv0.cpp ├── convcv0.vcxproj ├── convcv0.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── convcv1 ├── ReadMe.txt ├── convcv1.cpp ├── convcv1.vcxproj ├── convcv1.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── convcv2 ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── convcv2.csproj ├── cv0conv ├── ReadMe.txt ├── cv0conv.cpp ├── cv0conv.vcxproj ├── cv0conv.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── cv1conv ├── ReadMe.txt ├── cv1conv.cpp ├── cv1conv.vcxproj ├── cv1conv.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── cv2conv ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── cv2conv.csproj ├── darkmoon ├── darkmoon.cpp ├── darkmoon.vcxproj ├── darkmoon.vcxproj.filters ├── mt.hpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── istring ├── ReadMe.txt ├── istring.cpp ├── istring.vcxproj ├── istring.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── strings ├── ReadMe.txt ├── stdafx.cpp ├── stdafx.h ├── strings.cpp ├── strings.vcxproj ├── strings.vcxproj.filters └── targetver.h └── th123_toolkit.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/README.md -------------------------------------------------------------------------------- /brightmoon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/Makefile -------------------------------------------------------------------------------- /brightmoon/arctmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/arctmp.hpp -------------------------------------------------------------------------------- /brightmoon/bitreader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/bitreader.hpp -------------------------------------------------------------------------------- /brightmoon/brightmoon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/brightmoon.vcxproj -------------------------------------------------------------------------------- /brightmoon/brightmoon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/brightmoon.vcxproj.filters -------------------------------------------------------------------------------- /brightmoon/frandre.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/frandre.cpp -------------------------------------------------------------------------------- /brightmoon/frandre.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/frandre.hpp -------------------------------------------------------------------------------- /brightmoon/hinanawi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/hinanawi.cpp -------------------------------------------------------------------------------- /brightmoon/hinanawi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/hinanawi.hpp -------------------------------------------------------------------------------- /brightmoon/kaguya.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/kaguya.cpp -------------------------------------------------------------------------------- /brightmoon/kaguya.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/kaguya.hpp -------------------------------------------------------------------------------- /brightmoon/kanako.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/kanako.cpp -------------------------------------------------------------------------------- /brightmoon/kanako.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/kanako.hpp -------------------------------------------------------------------------------- /brightmoon/limit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/limit.hpp -------------------------------------------------------------------------------- /brightmoon/mainwnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/mainwnd.cpp -------------------------------------------------------------------------------- /brightmoon/mima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/mima.cpp -------------------------------------------------------------------------------- /brightmoon/mima.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/mima.hpp -------------------------------------------------------------------------------- /brightmoon/mt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/mt.hpp -------------------------------------------------------------------------------- /brightmoon/pathext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/pathext.cpp -------------------------------------------------------------------------------- /brightmoon/pathext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/pathext.hpp -------------------------------------------------------------------------------- /brightmoon/pbgarc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/pbgarc.hpp -------------------------------------------------------------------------------- /brightmoon/pbgmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/pbgmgr.cpp -------------------------------------------------------------------------------- /brightmoon/pbgmgr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/pbgmgr.rc -------------------------------------------------------------------------------- /brightmoon/pbgmgr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/pbgmgr.xml -------------------------------------------------------------------------------- /brightmoon/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/resource.h -------------------------------------------------------------------------------- /brightmoon/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/stdint.h -------------------------------------------------------------------------------- /brightmoon/suica.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/suica.cpp -------------------------------------------------------------------------------- /brightmoon/suica.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/suica.hpp -------------------------------------------------------------------------------- /brightmoon/thcrypter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/thcrypter.cpp -------------------------------------------------------------------------------- /brightmoon/unerle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/unerle.cpp -------------------------------------------------------------------------------- /brightmoon/unlzss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/unlzss.cpp -------------------------------------------------------------------------------- /brightmoon/vivit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/vivit.cpp -------------------------------------------------------------------------------- /brightmoon/vivit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/vivit.hpp -------------------------------------------------------------------------------- /brightmoon/xor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/xor.hpp -------------------------------------------------------------------------------- /brightmoon/yumemi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/yumemi.cpp -------------------------------------------------------------------------------- /brightmoon/yumemi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/yumemi.hpp -------------------------------------------------------------------------------- /brightmoon/yumemicrypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/yumemicrypt.hpp -------------------------------------------------------------------------------- /brightmoon/yuyuko.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/yuyuko.cpp -------------------------------------------------------------------------------- /brightmoon/yuyuko.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/brightmoon/yuyuko.hpp -------------------------------------------------------------------------------- /convcv0/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv0/ReadMe.txt -------------------------------------------------------------------------------- /convcv0/convcv0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv0/convcv0.cpp -------------------------------------------------------------------------------- /convcv0/convcv0.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv0/convcv0.vcxproj -------------------------------------------------------------------------------- /convcv0/convcv0.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv0/convcv0.vcxproj.filters -------------------------------------------------------------------------------- /convcv0/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv0/stdafx.cpp -------------------------------------------------------------------------------- /convcv0/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv0/stdafx.h -------------------------------------------------------------------------------- /convcv0/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv0/targetver.h -------------------------------------------------------------------------------- /convcv1/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv1/ReadMe.txt -------------------------------------------------------------------------------- /convcv1/convcv1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv1/convcv1.cpp -------------------------------------------------------------------------------- /convcv1/convcv1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv1/convcv1.vcxproj -------------------------------------------------------------------------------- /convcv1/convcv1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv1/convcv1.vcxproj.filters -------------------------------------------------------------------------------- /convcv1/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv1/stdafx.cpp -------------------------------------------------------------------------------- /convcv1/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv1/stdafx.h -------------------------------------------------------------------------------- /convcv1/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv1/targetver.h -------------------------------------------------------------------------------- /convcv2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv2/Program.cs -------------------------------------------------------------------------------- /convcv2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /convcv2/convcv2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/convcv2/convcv2.csproj -------------------------------------------------------------------------------- /cv0conv/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv0conv/ReadMe.txt -------------------------------------------------------------------------------- /cv0conv/cv0conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv0conv/cv0conv.cpp -------------------------------------------------------------------------------- /cv0conv/cv0conv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv0conv/cv0conv.vcxproj -------------------------------------------------------------------------------- /cv0conv/cv0conv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv0conv/cv0conv.vcxproj.filters -------------------------------------------------------------------------------- /cv0conv/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv0conv/stdafx.cpp -------------------------------------------------------------------------------- /cv0conv/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv0conv/stdafx.h -------------------------------------------------------------------------------- /cv0conv/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv0conv/targetver.h -------------------------------------------------------------------------------- /cv1conv/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv1conv/ReadMe.txt -------------------------------------------------------------------------------- /cv1conv/cv1conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv1conv/cv1conv.cpp -------------------------------------------------------------------------------- /cv1conv/cv1conv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv1conv/cv1conv.vcxproj -------------------------------------------------------------------------------- /cv1conv/cv1conv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv1conv/cv1conv.vcxproj.filters -------------------------------------------------------------------------------- /cv1conv/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv1conv/stdafx.cpp -------------------------------------------------------------------------------- /cv1conv/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv1conv/stdafx.h -------------------------------------------------------------------------------- /cv1conv/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv1conv/targetver.h -------------------------------------------------------------------------------- /cv2conv/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv2conv/Program.cs -------------------------------------------------------------------------------- /cv2conv/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv2conv/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /cv2conv/cv2conv.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/cv2conv/cv2conv.csproj -------------------------------------------------------------------------------- /darkmoon/darkmoon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/darkmoon/darkmoon.cpp -------------------------------------------------------------------------------- /darkmoon/darkmoon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/darkmoon/darkmoon.vcxproj -------------------------------------------------------------------------------- /darkmoon/darkmoon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/darkmoon/darkmoon.vcxproj.filters -------------------------------------------------------------------------------- /darkmoon/mt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/darkmoon/mt.hpp -------------------------------------------------------------------------------- /darkmoon/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/darkmoon/stdafx.cpp -------------------------------------------------------------------------------- /darkmoon/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/darkmoon/stdafx.h -------------------------------------------------------------------------------- /darkmoon/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/darkmoon/targetver.h -------------------------------------------------------------------------------- /istring/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/istring/ReadMe.txt -------------------------------------------------------------------------------- /istring/istring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/istring/istring.cpp -------------------------------------------------------------------------------- /istring/istring.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/istring/istring.vcxproj -------------------------------------------------------------------------------- /istring/istring.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/istring/istring.vcxproj.filters -------------------------------------------------------------------------------- /istring/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/istring/stdafx.cpp -------------------------------------------------------------------------------- /istring/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/istring/stdafx.h -------------------------------------------------------------------------------- /istring/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/istring/targetver.h -------------------------------------------------------------------------------- /strings/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/strings/ReadMe.txt -------------------------------------------------------------------------------- /strings/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/strings/stdafx.cpp -------------------------------------------------------------------------------- /strings/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/strings/stdafx.h -------------------------------------------------------------------------------- /strings/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/strings/strings.cpp -------------------------------------------------------------------------------- /strings/strings.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/strings/strings.vcxproj -------------------------------------------------------------------------------- /strings/strings.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/strings/strings.vcxproj.filters -------------------------------------------------------------------------------- /strings/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/strings/targetver.h -------------------------------------------------------------------------------- /th123_toolkit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kghost/th123_toolset/HEAD/th123_toolkit.sln --------------------------------------------------------------------------------