QuakeC

From Valve Developer Community
Revision as of 12:40, 1 September 2023 by SirYodaJedi (talk | contribs) (Created page with "{{langsp}} '''QuakeC''' is a programming language based on {{w|C (programming language)|C}}, which is used by {{quake|4.1}} and its various mods. Similarly to {{w|Java (progra...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
English (en)Translate (Translate)

QuakeC is a programming language based on Wikipedia icon C, which is used by Quake Quake and its various mods. Similarly to Wikipedia icon Java, QuakeC code isn't compiled into native machine code, but instead is compiled into a file called 🖿progs.dat, which is interpreted into native code at runtime via a Wikipedia icon virtual machine built into the game engine. This allows the same mods to work across multiple platforms, regardless of operating system and architecture.

Quake II Quake II dropped QuakeC in favor of native DLLs (written in regular C), and GoldSrc GoldSrc upgraded most of the codebase to Wikipedia icon C++. Despite this, remnants remain, with the model code having been reworked into the QC files used by the GoldSrc and Source versions of StudioMDL.