In this article I’ll explain how to compile and modify the Quake 3 source code to create a Homing Missile. This article is intended for beginners.

Background

Quake III was released few years back (somewhere in 2001-2002). Most would agree, it is an excellent game.

Source code

Quake3’s source code was launched some time after its release. The code does not have a lot of comments, but it is very readable and understandable. You must know C and a bit of 3D vector mathematics. Math used in this can be learnt in case you don’t have that background. At times you might get stuck in understanding the code due to vector operations performed. Just take a pen and paper and calculate it down, it will be much easier.

The entire source code has not been released. Though I don’t know which part, a major part like the rendering engine could be under cover.

Quake3’s 3D engine has been proven as one of the best 3D engines made and some people have also commented that nobody can write better code than the one written for this engine. Recently I also had a chance to go through the Microsoft Techfest, in which, one of the demonstrated research project was based on Quake III. FYI: It was regarding improving multiplayer gaming performance over a low bandwidth network around 100kbps. So, there is a lot of potential in reusing its code if your research/application requirements fit the same.

NOTE: Quake 3’s source code is free, but that does not mean that its game data is free. And you cannot play game without the game data (maps, sounds, music, bot models, etc.). That is why you still need to buy an original Quake 3 CD.

Why am I writing this?

You will find many websites with bits and pieces of information for compiling and modifying Quake 3 source. Inadequate or incorrect information leads to frustration most of the time as it was the case with me. It took a lot of time for me to finally compile and run quake 3 from the compiled code. Creating mods (relatively means modifying source) is another story, but that was fun. The code-change illustrated here again took a lot of time. Understanding and tweaking the code given here is also a good way of learning some basics about this game.

Compiling the source code

Before you start, it is also important to check the following:

  1. You have a full version of Quake 3 already installed. (Demo version won’t work for us)
  2. Download Quake 3 point release 1.32 from the website and install it to your Quake 3 game directory.
  3. Check that you have Visual Studio 2003 installed on your machine. If you don’t have Visual Studio 2003 and use VC++6.0, it will be difficult.

Now follow the steps given below to compile the source code.

  • Download the Quake 3 source from ID software and extract it to some directory.
  • Under the Code subdirectory, load the solution file quake3.sln in VS 2003. ( In case of VC++6.0 see the above mentioned link).
  • It is a source control bound code; therefore it will give some errors and ask for some source control server. Just click Cancel when it asks for the source control and just unbind all the projects from source control. (I don’t know why Q3 team didn’t do this).
  • Select Release from Build -> Configuration Manager and build the solution. It should build without any errors. Verify the files created in the Code->Release. It should build without any errors. Verify the files created in the Code->Release.
  • Go to the directory where you have installed Quake 3. Within that, create a new directory “Mod” (of course without the quotes).
  • Go back to the Release directory and copy all the DLLs and EXEs (only one EXE: quake3.exe exists). Paste these files in the newly created Mod directory.
  • Now go to the Quake 3 directory. Here again you will find Quake3.exe. This is the one that was installed from your Quake 3 CD. Rename it to Quake3.exe.backup.
  • Move the Quake3.exe from Mod directory to the current Quake 3 directory. (If you are confused with same kind of names, please re-read.)
  • Go back to the Mod directory and create a new batch file “runrelease.bat” and write following lines in it.

Check out: Tips on compiling Quake III source code with VC++ 6.0

cd..
quake3 +set fs_game Mod

This tells the quake3 executable to load the game with our code.

Now to run the game with your compiled code, just double-click the batch file, and you are ready to play. An important step has been covered by this time.

NOTE: Debugging is possible in Quake 3 too. That is not covered in this article.

In fact, you do not need to change the exe until you want some changes in the quake3 EXE project code. However, I recommend this since I have noticed sometimes the original EXE takes a lot of time to load when we implement our modifications.

WARNING: While making your modifications it is recommended to run Quake 3 in windowed mode ( and not the normal full screen mode). You can switch to windowed mode by the pressing Alt+Enter. Quake 3 remembers the configuration (atleast on my PC) while loading the next time. Runtime errors may hang up your inputs in full screen mode and thereby forcing you to restart without proper shutdown.

What we are going to code in this series

Along the way, there will be lots of reading and coding. Here are some screenshots:

Grunt being chased by the homing missile

Grunt being chased by the homing missile

Grunt under fire (Homing missile with fireworks)

Grunt under fire (Homing missile with fireworks).

Below: Grunt has a narrow escape. Missiles scatter in air. Grunt has a narrow escape. Missiles scatter in air.

Next up

Tips on compiling Quake III source code with VC++ 6.0

Part 2: - Gamer inputs …. Continue reading >

Part 3: - Missile behavior …. Continue reading >