├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── generate_vs2022.bat ├── readme.md ├── release.bat └── src ├── gtav └── rage │ ├── fiDevice.cpp │ ├── fiDevice.h │ └── fiPackfile.h ├── hooks ├── CustomDevice.cpp ├── FileReadHooks.cpp ├── MPDLCMapHooks.cpp └── PackfileEncryptionHooks.cpp ├── main.cpp ├── main.h └── utils ├── config.h ├── inicpp.h ├── log.cpp ├── log.h ├── memory.h └── rpf.h /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | BUILD 2 | src/.vs -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/README.md -------------------------------------------------------------------------------- /generate_vs2022.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/generate_vs2022.bat -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/readme.md -------------------------------------------------------------------------------- /release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/release.bat -------------------------------------------------------------------------------- /src/gtav/rage/fiDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/gtav/rage/fiDevice.cpp -------------------------------------------------------------------------------- /src/gtav/rage/fiDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/gtav/rage/fiDevice.h -------------------------------------------------------------------------------- /src/gtav/rage/fiPackfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/gtav/rage/fiPackfile.h -------------------------------------------------------------------------------- /src/hooks/CustomDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/hooks/CustomDevice.cpp -------------------------------------------------------------------------------- /src/hooks/FileReadHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/hooks/FileReadHooks.cpp -------------------------------------------------------------------------------- /src/hooks/MPDLCMapHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/hooks/MPDLCMapHooks.cpp -------------------------------------------------------------------------------- /src/hooks/PackfileEncryptionHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/hooks/PackfileEncryptionHooks.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/main.h -------------------------------------------------------------------------------- /src/utils/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/utils/config.h -------------------------------------------------------------------------------- /src/utils/inicpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/utils/inicpp.h -------------------------------------------------------------------------------- /src/utils/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/utils/log.cpp -------------------------------------------------------------------------------- /src/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/utils/log.h -------------------------------------------------------------------------------- /src/utils/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/utils/memory.h -------------------------------------------------------------------------------- /src/utils/rpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martonp96/ClosedIV/HEAD/src/utils/rpf.h --------------------------------------------------------------------------------