词条 | QuakeC |
释义 |
| name = QuakeC | paradigm = imperative (procedural), structured | designer = John Carmack | developer = id Software | typing = static, strong | implementations = Quake C Compiler, FastQCC, FTEQCC, QCCx, GMQCC | year = 1996 | turing-complete = No | influenced_by = C }} QuakeC is an interpreted language developed in 1996 by John Carmack of id Software to program parts of the video game Quake. Using QuakeC, a programmer is able to customize Quake to great extents by adding weapons, changing game logic and physics, and programming complex scenarios. It can be used to control many aspects of the game itself, such as parts of the AI, triggers, or changes in the level. The Quake engine was the only game engine to use QuakeC. Following engines used DLL game modules for customization written in C and C++ from id Tech 4 on. OverviewThe QuakeC source to the original id Software Quake game logic was published in 1996 and used as the basis for modifications like capture the flag and others.[1] QuakeC source code is compiled using a tool called qcc into a bytecode kept in a file called progs.dat. The programmers of Quake modifications could then publish their progs.dat bytecode without revealing their source code. Most Quake mods were published this way. QuakeC allowed the Quake engine to dominate the direction of the first-person shooter genre. Thanks to Carmack's idea of extending video game life by adding unlimited expandability (extensibility already played a big role in Doom), an enormous Internet community of gamers and programmers alike has arisen and many modern multiplayer games are extensible in some form.{{Citation needed|date=March 2009}} QuakeC is known as interpreted because as Quake runs, it is continually interpreting the progs.dat file.[2] Limitations and subsequent solutionsThe syntax of QuakeC is based on that of the C programming language, explaining its name, but it does not support the implementation of new types, structures, arrays, or any kind of referencing other than the "entity" type (which is always a reference). QuakeC also suffers from the fact that many built-in functions (functions prototyped in the QuakeC code but actually defined within the game engine and written in C) return strings in a temporary string buffer, which can only hold one string at any given time. In other words, a construct such as
will fail because the second call to Most video games at the time had their game logic written in plain C/C++ and compiled into the executable, which is faster. However, this makes it harder for the community to create mods and it makes the process of porting the game to another platform (such as GNU/Linux) more costly. Despite its advantages, the choice of implementing game logic using a custom scripting language and interpreter was dropped from the next generation Quake II engine in favor of compiled C code due to the overall inflexibility of QuakeC, the increasingly complex game logic, the performance to be gained by packaging game logic into a native dynamic link library, and the advantage of leveraging an already established programming language's community, tools, educational materials, and documentation.[3] Distributing native code created new security and portability concerns. QuakeC bytecode afforded little opportunity for mischief, while native code has access to the whole machine. QuakeC bytecode also worked on any machine that could run Quake. Compiling to native code added an additional barrier to entry for novice mod developers, because they were being asked to set up a more complicated programming environment. The eventual solution, implemented by the Quake III engine, was to combine the advantages of original QuakeC with the advantages of compiling C to native code. The lcc C compiler was extended to compile standard C into bytecode, which could be interpreted by a virtual machine in a manner similar to QuakeC. This addressed the security, portability, and tool chain problems, but lost the performance advantage of native code. That was solved by further compiling the bytecode into native code at run time on supported machines.[4] Modified compilers and language extensionsid Software released the source of In 1999, when id Software released the code from Quake's engine under the GNU General Public License (GPL), the workings of the bytecode interpreter were examined and new QuakeC compilers were released, such as J.P. Grossman's With the Quake engine source code now able to be changed, further features were added to QuakeC in the form of new built-in functions. Features long yearned for by QuakeC coders finally reached realization as QuakeC now had file and string handling functions, enlarged string buffers, more math functions, and so on. However, programmers taking advantage of these changes lost backwards compatibility with the unmodified Quake engine. Xonotic since version 0.7 uses the [https://github.com/graphitemaster/gmqcc gmqcc] compiler.[5]Client Side QuakeC (CSQC)Some enhanced Quake engines (notably Darkplaces and FTEQW) have support for an extension of regular QuakeC (now commonly referred to as Server Side QuakeC or SSQC) that allows client side only scripting of the Quake engine. This is especially useful for GUIs, HUDs and any visually heavy effects that do not need to be simulated on the server and transferred over the network.[6] See also
References1. ^{{cite web |url=http://www.satanicslaughter.com/news/?news_id=94 |title=QuakeC released |author=Lasse Lehtinen |date=1996-07-25 |work=Quake and QuakeWorld history |accessdate=2011-01-14}} 2. ^{{cite web |url=http://www.bluesnews.com/guide/quakec2.htm |title=Quake C Basics |author=Andrew Wu |accessdate=2013-04-06}} 3. ^{{cite web |last=Carmack |first=John |authorlink=John Carmack |title=Here is a technical issue to be discussed, Pg.18 |url=http://fabiensanglard.net/fd_proxy/doom3/pdfs/johnc-plan_1997.pdf#page=19 |date=13 March 1997 |work=.plan |publisher=id Software |accessdate=5 November 2018}} 4. ^{{cite web |last=Carmack |first=John |authorlink=John Carmack |title=Jul 24, 1999, Pg.54 |url=http://fabiensanglard.net/fd_proxy/doom3/pdfs/johnc-plan_1999.pdf#page=54 |date=24 July 1999 |work=.plan |publisher=id Software |accessdate=5 November 2018}} 5. ^Xonotic 0.7 Release 6. ^{{Cite web|url=http://www.quakewiki.net/darkplaces-wiki/client-side-quakec/|title=Client-Side QuakeC|website=QuakeWiki|access-date=2016-11-16}} External links
4 : Domain-specific programming languages|Quake (series)|Scripting languages|Id Tech |
随便看 |
|
开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。