No description
Find a file
Bill Currie d409e595a8 [qwaq] Save and restore params around event handler
It turns out the parameter pointer save/restore I had done for detoured
functions is required for all nested calls. However, I had actually
completely forgotten about it. I updated the docs for that section.
2024-02-01 11:09:22 +09:00
config.d [util] Add a wrapper for libgcc's backtrace functions 2023-12-04 17:53:12 +09:00
debian Do the distcheck dance 2023-11-23 17:55:33 +09:00
desktop [build] Move to non-recursive make 2020-06-25 11:35:37 +09:00
doc [dox] Fix up some doxygen issues 2022-04-13 14:17:58 +09:00
hw [quakeio] Rework Qgetline to use dstring 2024-01-05 11:50:48 +09:00
include [qwaq] Save and restore params around event handler 2024-02-01 11:09:22 +09:00
libs [ruamoko] Add wrapper for IN_SendConnectedDevices 2024-02-01 01:40:46 +09:00
m4 [build] Batch-report missing packages 2023-11-18 12:16:35 +09:00
nq [renderer] Allow render config to be specified 2024-01-30 23:13:16 +09:00
pkg-config [build] Move to non-recursive make 2020-06-25 11:35:37 +09:00
qtv [ecs] Implement hierarchies as components 2024-01-02 16:38:01 +09:00
qw [renderer] Allow render config to be specified 2024-01-30 23:13:16 +09:00
RPM [build] Move to non-recursive make 2020-06-25 11:35:37 +09:00
ruamoko [qwaq] Save and restore params around event handler 2024-02-01 11:09:22 +09:00
tools [qfcc] Implement quaternion multiplication 2024-02-01 11:00:27 +09:00
.gitignore [build] Add support for building with Tracy 2023-11-28 15:54:55 +09:00
bootstrap [debian] Clear out a large pile of bitrot 2023-11-18 11:53:23 +09:00
configure.ac [util] Add a wrapper for libgcc's backtrace functions 2023-12-04 17:53:12 +09:00
COPYING initial checkin of most recent newtree and nuq(?) source 2001-02-19 21:15:25 +00:00
INSTALL Add more library packages for building 2023-11-17 20:51:12 +09:00
Makefile.am [build] Implement tracy memory zones 2024-01-05 11:50:48 +09:00
NEWS Update for 0.7.2. 2013-01-23 12:01:36 +09:00
packages Add more library packages for building 2023-11-17 20:51:12 +09:00
README.md small typo fix 2023-01-11 07:17:13 +00:00
TODO Detect the silent death of the jack client thread. 2011-09-07 15:16:27 +09:00

QuakeForge

QuakeForge is descended from the original Quake engine as released by Id Software in December 1999, and can be used to play original Quake and QuakeWorld games and mods (including many modern mods). While this will always be the case, development continues.

However, QuakeForge is not just a Quake engine, but includes a collection of tools for creating Quake mods, and is progressing towards being a more general game engine.

Quake and QuakeWorld

Support for Quake and QuakeWorld is split into two program sets: nq for Quake and qw-client for QuakeWorld, with the target system as an additional suffix: -x11 For the X Window system (Linux, BSD, etc), -win for MS Windows (plus others that are not currently maintained).

Both nq and qw-client support multiple renderers: 8-bit software, 32-bit software, OpenGL 2, EGL (mostly, one non-EGL function is used), and Vulkan (very WIP), all within the one executable.

Dedicated servers for both Quake (nq-server) and QuakeWorld (qw-server) are included, as well as a master server for QuakeWorld (qw-master).

Tools

QuakeForge includes several tools for working with Quake data:

  • bsp2image produces wireframe images from Quake maps (bsp files)
  • io_mesh_qfmdl for importing and exporting Quake mdl files to/from Blender
  • io_qfmap for Quake map source files (WIP Blender addon)
  • pak create, list and extract Quake pak files. There's also zpak which can be used to compress the contents of pak files using gzip (QuakeForge has transparent support for gzip compressed files)
  • qfbsp for compiling map files to bsp files, includes support for vis clusters, and can be used to extract data and information from bsp files.
  • qfcc is QuakeForge's version of qcc, but is significantly more advanced, with support for standard C syntax, including most C types, as well as Objective-C object oriented programming (Ruamoko). Most of the advanced features require the QuakeForge engine, but qfcc can produce progs files compatible with the original Quake engine with limited support for some of the advanced featuers (C syntax, reduced global usage, some additional operators (eg, better bit operators, remainder (%)). Includes qfprogs for inspecting progs files.
  • qflight creates lightmaps for Quake maps
  • qfvis for compiling PVS data for Quake maps. One of the faster implementations available.
  • Plus a few others in various stages of usefulness: qflmp, qfmodelgen, qfspritegen, wad, qfwavinfo

Building

For now, please refer to INSTALL for information on building on Linux. Building for windows is done by cross-compiling using MXE. There are scripts in tools/mingw and tools/mingw64 that automate the process of configuring and building both the tools run on the build-host and the windows targets.