An open source re-implementation of Stronghold Crusader 1. The beloved Castle Building, Real Time Strategy, and Simulation game reimplemented.
For running and developing this re-implementation, you need to own Stronghold Crusader 1.41 (Latin version), preferably from Steam or GOG.
The original game is a masterpiece, seeing new reignited popularity since the release of the Definitive Edition. However, the Definitive Edition does not address various shortcomings in the original game. Furthermore, the new Definitive Edition requires modern hardware to run, which isn't something all fans can afford.
This reimplementation seeks to cater to the wishes of the dedicated community by providing an open source reimplementation that benefits modding to those that own the original Stronghold Crusader (available from Steam and GOG).
OpenSHC builds as a DLL that is loaded at game start. Functions that have a functionally identical reimplementation are hooked, such that the reimplemented versions are run instead of the original. This enables easy modding, although modding itself is currently beyond the scope of the OpenSHC project.
The development of this reimplementation is a stepwise process in which we aim to achieve a functionally identical reimplementation. We track progress using various tools.
All developers are welcome to contribute.
Before you begin, install the following:
-
Stronghold Crusader 1.41 (Latin version)
The Steam release is the easiest version to obtain. Make sure the game installation uses a Latin-language version such as English or German.
-
CMake 3.24 or later
You can install it from:
If you already installed the Microsoft Visual C++ Development Tools, you can also install CMake through Visual Studio.
-
Python 3
-
clang-format 22 or later
Install it with:
python -m pip install clang-format
-
An IDE with CMake support (recommended)
The repository is optimized for Visual Studio Code with the Microsoft C/C++ Extension Pack.
To automatically format and style new C++ files, install the clang-format Extension Pack.
Clone the repository with submodules included:
git clone --recursive https://github.com/sourcehold/OpenSHC.gitThen enter the project directory:
cd OpenSHCThe
--recursiveflag is required because the repository depends on submodules, including the compiler.
Run the following command:
softlink.batThe script will ask for the full path to your Stronghold Crusader installation directory.
After the link is created, a folder named _original will appear in the repository root.
This script may require administrator privileges to be able to create the symbolic link
To set up the binary comparison tools, run:
reccmp\dll\setup.batIn the future, if you want to setup comparison of the reimplemented executable instead of the DLL, use:
reccmp\exe\setup.bat
If both commands complete successfully, your development environment is ready and you can start working on OpenSHC.
From the OpenSHC directory, run:
build.bat RelWithDebInfo OpenSHC.dllThis verifies byte-level accuracy between the reimplementation and the original binary:
reccmp/dll/run reccmp-reccmp --target STRONGHOLDCRUSADERTip: use
reccmp/dll/run reccmp-reccmp --target STRONGHOLDCRUSADER --verbose <hex address of function>to investigate code byte mismatches.
When you are set up, follow any of the tutorials to get you started!
Raise an issue here on GitHub to receive support. Or visit the Discord server.
