├── .github └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── .vscode └── launch.json ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── backup ├── .github │ └── workflows │ │ └── cmake.yml └── cmakeliststxt │ ├── vcpkg_x64-linux.txt │ ├── vcpkg_x64-osx.txt │ └── vcpkg_x64-windows.txt ├── cmake ├── CMakeTests.cmake ├── CPackConfig.cmake ├── asan.cmake └── locate_vcpkg.cmake ├── include ├── BVCD.hpp ├── CRC.h ├── VSIF.hpp ├── VSIFStringPool.hpp ├── bvcd.inl ├── enum_bitmask.hpp ├── filesystem │ ├── idir.h │ ├── ifile.h │ └── imountpath.h ├── gameinfo.hpp ├── gameinfoKV.hpp ├── hardcoded_entries.h ├── helper.hpp ├── map_bsp.hpp ├── pch.hpp ├── program.h ├── response_system.h ├── split_serialization.h ├── version.hpp.in └── win │ └── winver.h ├── src ├── BVCD.cpp ├── VSIF.cpp ├── Vsif2vcd_c++.cpp ├── filesystem_internal │ ├── cloosefile.cpp │ ├── cloosefile.h │ ├── cloosemountpath.cpp │ ├── cloosemountpath.h │ ├── cvpkinfile.cpp │ ├── cvpkinfile.h │ ├── cvpkmountpath.cpp │ ├── cvpkmountpath.h │ └── imountpath_internal.cpp ├── gameinfo.cpp ├── map_bsp.cpp ├── old │ └── vsif2vcd.c └── response_system.cpp ├── thirdparty └── vdf_parser │ └── include │ └── vdf_parser.hpp └── vcpkg.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/README.md -------------------------------------------------------------------------------- /backup/.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/backup/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /backup/cmakeliststxt/vcpkg_x64-linux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/backup/cmakeliststxt/vcpkg_x64-linux.txt -------------------------------------------------------------------------------- /backup/cmakeliststxt/vcpkg_x64-osx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/backup/cmakeliststxt/vcpkg_x64-osx.txt -------------------------------------------------------------------------------- /backup/cmakeliststxt/vcpkg_x64-windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/backup/cmakeliststxt/vcpkg_x64-windows.txt -------------------------------------------------------------------------------- /cmake/CMakeTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/cmake/CMakeTests.cmake -------------------------------------------------------------------------------- /cmake/CPackConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/cmake/CPackConfig.cmake -------------------------------------------------------------------------------- /cmake/asan.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/cmake/asan.cmake -------------------------------------------------------------------------------- /cmake/locate_vcpkg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/cmake/locate_vcpkg.cmake -------------------------------------------------------------------------------- /include/BVCD.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/BVCD.hpp -------------------------------------------------------------------------------- /include/CRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/CRC.h -------------------------------------------------------------------------------- /include/VSIF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/VSIF.hpp -------------------------------------------------------------------------------- /include/VSIFStringPool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/VSIFStringPool.hpp -------------------------------------------------------------------------------- /include/bvcd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/bvcd.inl -------------------------------------------------------------------------------- /include/enum_bitmask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/enum_bitmask.hpp -------------------------------------------------------------------------------- /include/filesystem/idir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/filesystem/idir.h -------------------------------------------------------------------------------- /include/filesystem/ifile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/filesystem/ifile.h -------------------------------------------------------------------------------- /include/filesystem/imountpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/filesystem/imountpath.h -------------------------------------------------------------------------------- /include/gameinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/gameinfo.hpp -------------------------------------------------------------------------------- /include/gameinfoKV.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/gameinfoKV.hpp -------------------------------------------------------------------------------- /include/hardcoded_entries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/hardcoded_entries.h -------------------------------------------------------------------------------- /include/helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/helper.hpp -------------------------------------------------------------------------------- /include/map_bsp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/map_bsp.hpp -------------------------------------------------------------------------------- /include/pch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/pch.hpp -------------------------------------------------------------------------------- /include/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/program.h -------------------------------------------------------------------------------- /include/response_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/response_system.h -------------------------------------------------------------------------------- /include/split_serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/split_serialization.h -------------------------------------------------------------------------------- /include/version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/version.hpp.in -------------------------------------------------------------------------------- /include/win/winver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/include/win/winver.h -------------------------------------------------------------------------------- /src/BVCD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/BVCD.cpp -------------------------------------------------------------------------------- /src/VSIF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/VSIF.cpp -------------------------------------------------------------------------------- /src/Vsif2vcd_c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/Vsif2vcd_c++.cpp -------------------------------------------------------------------------------- /src/filesystem_internal/cloosefile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/filesystem_internal/cloosefile.cpp -------------------------------------------------------------------------------- /src/filesystem_internal/cloosefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/filesystem_internal/cloosefile.h -------------------------------------------------------------------------------- /src/filesystem_internal/cloosemountpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/filesystem_internal/cloosemountpath.cpp -------------------------------------------------------------------------------- /src/filesystem_internal/cloosemountpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/filesystem_internal/cloosemountpath.h -------------------------------------------------------------------------------- /src/filesystem_internal/cvpkinfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/filesystem_internal/cvpkinfile.cpp -------------------------------------------------------------------------------- /src/filesystem_internal/cvpkinfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/filesystem_internal/cvpkinfile.h -------------------------------------------------------------------------------- /src/filesystem_internal/cvpkmountpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/filesystem_internal/cvpkmountpath.cpp -------------------------------------------------------------------------------- /src/filesystem_internal/cvpkmountpath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/filesystem_internal/cvpkmountpath.h -------------------------------------------------------------------------------- /src/filesystem_internal/imountpath_internal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/filesystem_internal/imountpath_internal.cpp -------------------------------------------------------------------------------- /src/gameinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/gameinfo.cpp -------------------------------------------------------------------------------- /src/map_bsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/map_bsp.cpp -------------------------------------------------------------------------------- /src/old/vsif2vcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/old/vsif2vcd.c -------------------------------------------------------------------------------- /src/response_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/src/response_system.cpp -------------------------------------------------------------------------------- /thirdparty/vdf_parser/include/vdf_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/thirdparty/vdf_parser/include/vdf_parser.hpp -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSoup678/vsif2vcd/HEAD/vcpkg.json --------------------------------------------------------------------------------