This is an early upload of the ETF mod post 1.6 release with some experimental code added that was not part of any original release but was my testing purposes.
Notes:
- 64-bit is not supported (yet, code limitations need working around)
- macOS is not supported (never was)
- Some code is used from other trees like OpenJK q_math and such for convenience this may be replaced or reverted at some point.
- Compilation uses CMAKE, use mingw on windows to build for real. MSVC will probably produce incorrect results with movement.
- Some features I added are WIP and need removing
- Code is released under GPLv3 terms same as original ET per Splash Damage's request.
Download and install mingw-get-setup.exe
from MinGW home.
Once fully installed, and with the MingGW Installation Manager running, select the following packages for install:
mingw-developer-toolkit-bin
(selecting this package will automatically selectmsys-base-bin
)mingw32-base-bin
mingw32-gcc-g++-bin
In the top menu, select Installation, Apply Changes, and then select Apply in the dialog box that appears, titled Schedule of Pending Actions. This will download and install the required MinGW utilities.
Add MinGW'to your Path
Environment Variable. By default MinGW installs to C:\MinGW
, so add C:\MinGW\bin
to the Path
environment variable.
Download and install the latest release of CMake from cmake.org. At the time of writing this is the Windows win64-x64 Installer: cmake-3.19.2-win64-x64.msi
.
During the install I selected to add CMake to the system PATH for the current user.
Clone the ETF source code from etfdevs/ETF to your development machine.
- Run CMake, click Browse Source..., and navigate to the location where you cloned ETF to and select the code folder.
- Click Browse Build... and choose a folder where you'd like the output build files to be witten to.
- Click Configure
** Under Specify the generator for this project, select
MinGW Makefiles
** Select Use native compilers ** Select Finish to configure the build (LUA is missing but configure completes) - Select Generate.
Launch CMD.EXE
and enter the following:
cd <the build directory chosen after clicking 'Browse Build...' in CMake>
mingw32-make
Despite many warnings, this should compile the following DLLs in to your build
folder:
cgame_mp_x86.dll
qagame_mp_x86.dll
ui_mp_x86.dll