NZ:P Team's fork of the FTEQW project.
Go to file
cypress 593345a7f0 Replace conchars with charset 2024-09-11 20:07:31 -07:00
.github/workflows NZ:P Modification Check-In 2024-09-08 15:37:35 +01:00
engine Replace conchars with charset 2024-09-11 20:07:31 -07:00
fteqtv megacommit. 2024-07-14 19:58:26 +01:00
games Added sys_openfile console command(and menu option) to web and flatpak(via cmake+dbus) builds, to 'install' packages on sandboxed systems a bit more easily. 2024-07-14 19:58:24 +01:00
iqm Added sys_openfile console command(and menu option) to web and flatpak(via cmake+dbus) builds, to 'install' packages on sandboxed systems a bit more easily. 2024-07-14 19:58:24 +01:00
plugins Replace conchars with charset 2024-09-11 20:07:31 -07:00
q3asm2 Redefine snprintf for Windows. 2008-06-27 19:16:15 +00:00
quakec temp 2024-07-14 19:58:25 +01:00
specs Added sys_openfile console command(and menu option) to web and flatpak(via cmake+dbus) builds, to 'install' packages on sandboxed systems a bit more easily. 2024-07-14 19:58:24 +01:00
tools Don't define LINK_FREETYPE and SPEEX_STATIC in config_nzportable.h 2024-09-08 16:41:15 +01:00
.gitignore temp 2024-07-14 19:58:25 +01:00
CMakeLists.txt megacommit. 2024-07-14 19:58:26 +01:00
LICENSE NZ:P Modification Check-In 2024-09-08 15:37:35 +01:00
README.md NZ:P Modification Check-In 2024-09-08 15:37:35 +01:00
build_qc.sh Fix some issues from last commit. 2022-08-19 13:29:27 +00:00
build_setup.sh Use a more recent ODE revision, to avoid crosscompile errors (and just to keep things updated). 2024-07-21 03:54:39 +01:00
build_wip.sh remove NPAPI stuff from build 2023-07-09 20:25:38 +02:00
dounifdef.sh Lazy GLSL loading, for faster load times. 2018-11-27 16:48:19 +00:00
flatpak.json Try to fix up the flatpak build's handling of fmf files. 2023-08-12 14:04:01 +01:00
fte.m4 Fix some updater issues. 2022-01-19 08:27:42 +00:00
ftechrootbuild.sh Add mods menu and all-cvars menu to menusys. 2020-04-19 03:56:01 +00:00
fteqw.desktop Messing around with flatpak. 2023-04-17 03:58:21 +01:00
fteqw_readme.txt Added fteqw_readme.txt, a README file for binary releases. 2020-10-13 13:00:16 +00:00
ftetools_readme.txt openxr plugin: tweaked - inputs should be working properly now, and are visible to csqc. subject to further breaking changes, however. 2021-04-14 05:21:04 +00:00
imgtool.c Replace conchars with charset 2024-09-11 20:07:31 -07:00

README.md

Nazi Zombies: Portable FTEQW

"That magical Quake/QuakeWorld engine"

About

This repository contains the source code for Spike's Fore Thought Engine, featuring basic modifications specific to NZ:P such as parity changes for fog value interpretation, a custom configuration header, etc.

Supported Platforms

  • Android†
  • Linux 32-bit
  • Linux 64-bit
  • Linux ARMhf
  • Linux ARM64
  • macOS††
  • Windows 32-bit
  • Windows 64-bit

Building (Advanced)

It is strongly recommended to use our Docker (via image or Dockerfile) script to compile. It contains everything you would need to build on any supported platform, including cross compilers and an osxcross environment for when compiling for macOS is complete.

Compiling Quick-Start:

cd source/engine
make makelibs FTE_TARGET=YOUR_TARGET && \
make m-rel FTE_TARGET=YOUR_TARGET FTE_CONFIG=nzportable -j8

Subtitute YOUR_TARGET with one of the following, for whatever platform you wish to build for:

  • macosx_x86††
  • linux32
  • linux64
  • linux_armhf
  • linux_arm64
  • win32
  • win64

You can view the FTE Wiki for understanding what m-rel means and other options you can substitute the flag with.

We also provide prebuilt binaries on the Releases page.


We are not interested in supporting Android or other touch devices.

††macOS is currently unsupported though this is planned to change. Accomodations need to be made to the FTEQW Makefile to look for osxcross environment variables and tests need to be made to ensure compiling under clang is functional (or just using a proper gcc version in osxcross).