A project to reverse Grand Theft Auto San Andreas completely, and to rewrite and document every function.
Building this project will result in a DLL file that can be injected into GTA:SA using any ASI loader out there. After the DLL file has been injected, the ingame functions will be replaced by the reversed ones. The game will behave the same. Now if we make any changes to the reversed code, it will take effect in the game. The goal is to keep reversing until we have the entire game reversed to compile a standalone executable.
The progress of reversed classes can be tracked here. (needs to be updated)
Before you start writing code, please make sure to read the coding guidelines for this project.
- Visual Studio 2022 (Community Edition is enough)
- CMake (for those who want to use CMake instead of premake5)
- GTA SA Compact exe
- ASI Loader
- III.VC.SA.WindowedMode.asi
- Improved Fast Loader (Optional)
- Mouse Fix (dinput8.dll)
You can download them in a single archive. Using other plugins is strongly discouraged as the compact version doesn't like them.
You can either build with Premake5 or CMake; that's up to you, but a C++20 capable compiler with support is required.
First clone the project, including the submodules:
git clone --recurse-submodules https://github.com/gta-reversed/gta-reversed-modern.git
Premake5
-
Execute
premake5.bat
for 2022, orpremake5.bat vs20xx
for other VS versions. (Note: Premake works fine with vs2019, CMake requires vs2022) (e.g:premake5.bat vs2019
) -
You'll find gta_reversed.sln shortcut in the same folder as premake5.
CMake
-
Sadly CMake requires VS22, because since CMake v3.20.4
cxx_20
maps tostd=c++20
instead ofstd=c++latest
. If you really want to avoid VS22, you can either downgrade your CMake, or changec++20
toc++latest
manually in the project settings... Or just use premake5 instead. -
Download and install the latest version of CMake for windows from HERE and make sure to add it to your PATH.
-
Open CMake GUI
-
Set the Source and Build directories (Don't forget to append "Bin" after the path for build), like this:
- Click configure, then you will see a dialogue box. Choose the IDE you have (In the image below it's VS2019) and "Win32", then click Finish.
-
Once the configuration is complete, click the Generate button.
-
You'll find GTASA.sln in the Bin folder.
-
Open Command Prompt in the
gta-reversed
directory and runcmake -Bbuild -H. -A Win32
. -
To open the Visual Studio project, simply run
cmake --open build
or openbuild/GTASA.sln
manually. -
Once the configuration is complete, click the Generate button.
-
You'll find GTASA.sln in Bin folder.
You can create symbolic links for artifacts to not copy them every time you compiled the project.
Open a console with administrator privileges in the git repo's directory and run contrib\link_asi.bat
or right click link_asi.bat
file and click Run as administrator
, then
follow instructions at the command window.
Check this out for some inspiration ;)
- All contributors of the plugin-sdk project.
- All contributors of the original project.
- Hundreds of great people on gtaforums.com.
- re3 team.
- And everyone who contributed to GTA:SA reversing.