From 579fdbdb3aa92f9f5e788062f68e675b6af25a4e Mon Sep 17 00:00:00 2001 From: kadaverjack Date: Thu, 5 Jan 2006 21:32:28 +0000 Subject: [PATCH] added development section to faq and changed makefile to use fteqcc ;) git-svn-id: svn://svn.icculus.org/nexuiz/trunk@772 f962a42d-fe04-0410-a3ab-8c8b0445ebaa --- Docs/FAQ.aft | 17 ++++++++++++++++- Docs/FAQ.html | 30 ++++++++++++++++++++++++++++-- data/qcsrc/Makefile | 2 +- 3 files changed, 45 insertions(+), 4 deletions(-) diff --git a/Docs/FAQ.aft b/Docs/FAQ.aft index 313aad6c6..9f3be65c9 100644 --- a/Docs/FAQ.aft +++ b/Docs/FAQ.aft @@ -62,7 +62,7 @@ Maps usually ship as *.pk3 file. All you have to do is to copy this file to your Before you can create a desktop/menu item you have to create a little shell script. Open a text editor (like gedit or kate) and paste the following lines: ^<< #!/bin/sh -cd /path/to/Nexuiz # replace this with the full path to your Nexuiz folder +cd `dirname $0` ./nexuiz-linux-x86-sdl "$@" # or ./nexuiz-linux-x86_64-sdl if you're using an AMD64/EM64T distributions ^>> Save this in your Nexuiz directory as |nexuiz.sh|. Now you have to make this file executable by opening a xterm/konsole and typing: @@ -112,3 +112,18 @@ Colors can be used in nicknames and chat messages by typing ^ followed by a numb To record a demo: open the console and type |rec |. The demo file will be stored in |~/.nexuiz/data/demos/.dem| (Linux) or |Nexuiz/data/demos/.dem| (Windows). To watch a demo: open the console and type |ply | (|name| is the filename without extension). If you downloaded a demo, copy it to |Nexuiz/data/demos| first. You can list all your demo files by typing |dem| on the console. Some usefull keybindings for viewing demos are listed [here (http://www.nexuiz.com/forums/index.php?showtopic=1766&st=0&p=13400&#entry13400)]. + + +* Development + +** How do i set up gtkradiant to create/edit Nexuiz maps? +There's a [detailed guide (http://www.nexuiz.com/forums/index.php?showtopic=195)] on gtkradiant setup in the forums. There are also a [Linux shell script (http://www.nexuiz.com/forums/index.php?showtopic=195&view=findpost&p=11176)] and a [Windows application (http://www.nexuiz.com/forums/index.php?showtopic=195&view=findpost&p=11838)] that will configure your gtkradiant (1.4) automagically. + +** Where can i get latest development versions of the source code? +_Engine:_ instructions are available at http://icculus.org/twilight/darkplaces/download.html (you will need a [cvs client (http://www.nongnu.org/cvs/)]) + +_Game data:_ to check out the Nexuiz svn, you'll need a [svn client (http://subversion.tigris.org/project_packages.html)]. To check out the repository with a commandline svn client, do +^<< +svn co svn://svn.icculus.org/nexuiz/trunk/ +^>> +To compile the gamecode you need [fteqcc (http://sourceforge.net/project/showfiles.php?group\_id=116842&package\_id=129507)]. Just download it and run it twice, once in |data/menuqc| and once in |data/qcsrc|. diff --git a/Docs/FAQ.html b/Docs/FAQ.html index f68f32d0f..8edf05074 100644 --- a/Docs/FAQ.html +++ b/Docs/FAQ.html @@ -142,7 +142,12 @@ h1, h2, h3, h4, h5, h6 {
  • What console commands/variables are there?
  • How can I speed up my frame rate?
  • How can I activate colors in my name?
  • -
  • How do i watch/record demos? +
  • How do i watch/record demos?
  • + +
  • Development
  • + @@ -223,7 +228,7 @@ Maps usually ship as *.pk3 file. All you have to do is to copy this file to your Before you can create a desktop/menu item you have to create a little shell script. Open a text editor (like gedit or kate) and paste the following lines:
     #!/bin/sh
    -cd /path/to/Nexuiz		# replace this with the full path to your Nexuiz folder
    +cd `dirname $0`
     ./nexuiz-linux-x86-sdl "$@"	# or ./nexuiz-linux-x86_64-sdl if you're using an AMD64/EM64T distributions
     
    Save this in your Nexuiz directory as nexuiz.sh. Now you have to make this file executable by opening a xterm/konsole and typing: @@ -277,6 +282,27 @@ You can list all your demo files by typing dem on the console. Some use +

    Development

    + +

    How do i set up gtkradiant to create/edit Nexuiz maps?

    +

    +There's a detailed guide on gtkradiant setup in the forums. There are also a Linux shell script and a Windows application that will configure your gtkradiant (1.4) automagically. +

    + +

    Where can i get latest development versions of the source code?

    +

    +Engine: instructions are available at http://icculus.org/twilight/darkplaces/download.html (you will need a cvs client) +

    +

    +Game data: to check out the Nexuiz svn, you'll need a svn client. To check out the repository with a commandline svn client, do +

    +svn co svn://svn.icculus.org/nexuiz/trunk/
    +
    +To compile the gamecode you need fteqcc. Just download it and run it twice, once in data/menuqc and once in data/qcsrc. +

    + + +

    diff --git a/data/qcsrc/Makefile b/data/qcsrc/Makefile index 25c71afe4..047f5c92f 100644 --- a/data/qcsrc/Makefile +++ b/data/qcsrc/Makefile @@ -1,6 +1,6 @@ .PHONY: ../../data/progs.dat ../../data/progs.dat: - frikqcc /O2 -warn 2 || true + fteqcc -O2 clean: rm -f ../../data/progs.dat progdefs.h error.log -- 2.39.2