DeveloperFAQ
From OpenArena
This is the developer FAQ for everyone who likes to contribute to OpenArena. Normal users can get info from the default FAQ
Contents |
[edit] General Questions
[edit] Anything I need to know before I contribute?
Altough OpenArena tries to replace the Quake 3 Arena content we are not bound to a certain style. Concepts would be loose, so don't expect a remake of Klesk in his original Klesk form, or any direct remakes of any map/weapon/model.
[edit] License
In general, GNU General Public License v2 a.k.a. GPLv2 (NOT GPLv3) is the law here, but truly Public Domain (non copyrighted) stuff counts too. No other license is allowed in the project. The reason for GPLv2 adoption is that it allows a wider distribution. The GPL allows others to copy, change and redistribute your contributed work (like it is done in GNU/Linux). None of us in OA are doing money from it, but the GPL allows OA to be as instalable in many commercial Linux distros, for example. Please take take this in consideration before contributing.
It shouldn't be needed to say, but just to clarify: Don't add content from commercial games. No matter the reason. That means copyright infringement. That's all. Period.
For GPLv2 stuff, to clarify things: if you release something, then you should release too the stuff you've used to make that asset. (a.k.a. the Source) For example: if you make a map and compile it, both aas and bsp are included, but you should include too the map file. In the case of having created textures, unless the textures were 1-layered, you should include the psd or xcf file of that texture. And ALWAYS include the license file. (COPYING, gplv2.txt, etc)
It's suggested for development to grab the latest SVN build of OA. (You can't play online with it, but it contains all the stuff which will be included in future versions of OA) Do a checkout on http://openarena.ws/svn.
[edit] How can I contribute?
The following list tells you the ways in which you can contribute with the game:
- If you know about image editing, you can help by creating some of the missing textures/GFX replacements, or by helping the mappers with the needed textures/GFX.
- If you know about modelling, mapobjects and character assitance is appreciated. If you want to rework some of the already done work, (for example, player & item/weapon models) fine. The sources, in this area, are the .blend files from Blender.
- If you know about sound creating/editing, then your help on, for example, weapon/item/ambiental sounds and voices is more than welcome. Here's a list of missing sounds, so far.
- If you're a coder, then you can help the people working on OpenArena eXpanded, (Link to its SVN) the game-logic portion of OA, or with the binaries.
- If you have nice mapping skills with GTKRadiant, then your help is appreciated. There're some maps on OA's SVN waiting to be retexturized or reworked. If you want to do work on existing maps, that's nice too.
- Or even better, even if you have or not all the skills mentioned above, you can throw your own suggestions/help on how to improve the existing stuff of OA, on the development forums.
And always remember to read the three main development articles on the main page of this Wiki: NOTTODO, Good Practices and this page.
Once you feel something you've created for the game it's done, you can post it in this thread on the Development forum, and leilol will integrate it into OpenArena, if it meets the criteria needed. Just remember again: license file and the sources along with the finished work.
[edit] Textures/Graphics
- The art direction of Open Arena is about "double" as Quake III Arena:
- quadruple texture resolution, i.e. 512x512 as opposed to a 256x256
- double the polycount of models, instead of 700-900 you'll have 1200-2000 poly players
- Sound is probably mixed in 44khz rather than 22khz, but I dunno about that as 44khz seems to crash Q3A at this moment
- Hopefully the detail should still be scalable with texture resolution and LoD's for slower computers (read: my p100 with voodoo2)
[edit] Modeling
[edit] How do I export md3s in Blender?
- You can use the script found here. A few notes
- All scripts must be copied to the scripts folder
- To export an animated md3 you MUST load the md3 export script in the text editor then run it. Also you must select the last frame of animation your model has too
- Tags are made from empties.
- Work with your objects in 0,0,0 origin as much as possible. Moving them will cause the tags to be misaligned in export.
- an alternative exporter/importer based on the previous -> import/export ( which is more up-to-date ).
[edit] Mapping
[edit] How do I setup GtkRadiant for OpenArena?
Here are articles to setup GTKRadiant on Windows & Linux, and MacRadiant on Mac.
[edit] Coding
[edit] Engine differences compared to ioquake3
The engine is close to ioquake3 but the following process has been completed:
- Add Bloom support
- Change defines in q_shared.h (PRODUCT_NAME etc.)
- Remove pak0 check from files.c
- Change defines in qcommon.h (PROTOCOL, AUTH server, UPDATE server and MASTER server)
- Add extra protocols to common.c
- Increase DEF_COMHUNKMEGS (56 is not enough for bloom)
- Patch snd_codec.c so the engine will look for ogg files if no wav is found
- Add g_humanplayers + g_needpass in client* and remover g_punkbuster from the same places
- Change default sound from sound/feedback/hit.wav to sound/misc/silence.wav (so missing sounds are not to annoying)
- Change save path in sys/*. Replace "Quake3" with "OpenArena" and ".q3a" with ".openarena"
[edit] How do I compile the sourcecode?
The Open Arena source is located in a tar.bz2 file in the svn: http://www.openarena.ws/svn/source/ The 0.8.0 source is here: http://www.openarena.ws/svn/source/080/
You can check out the files by entering from the command prompt:
svn co http://www.openarena.ws/svn/source/080 openarena
This will check out ioquake3svn1438.tar.bz2 in your openarena directory. To extract the files enter 'tar -xvf ioquake3svn1438.tar.bz2' That will extract all the files to a directory named 'ioquake3svn1438'.
If you have problems compiling the game look here. If nothing helps visit the forums.
On Debian, check for following dependencies :
- libsdl2-dev
- libopenal-dev
- libvorbis-dev
- libcurl-dev (there are different version, they should all work)
- and of course build-essential
- probably more ...
After that the compiling under Linux is as easy as typing 'make'. Change to the ioquake3svn148 directory and enter the command 'make'. Provided you have all the required libraries the binary openarena.i386 will be created in the ioquake3svn1438/build/release-linux-i386$ directory. You will need to change the mode to executable by entering the command 'chmod +x openarena.i386'
[edit] Windows user
- Download an install OpenArena (the windows installer)
- Download the source you want from http://openarena.ws/svn/source/081/ (engine if you want binaries, modSDK if you want qvms)
- Download and install MinGW (like "MinGW-5.1.3.exe") and MSys (like "MSYS-1.0.10.exe") from http://www.mingw.org/.
- Start the MSys Terminal ( Start/Programs/MinGW/MSYS/MSYS )
- Change to the directory where the source code is located
- Run 'make'
- a new directory named "build" should appear
- build will contain either the qvm files that can be placed in vm/*.qvm inside a pk3 file or the binaries depending on source package used.
[edit] Music
Please keep in mind that we want to create content under the GPL. This means you have to provide a source of your work. The only format OpenArena currently accepts for music therefor is a tracker-format. For more information please use the forum.
