Add file headers

With this commit the game logic is cleaned up. Coop spawnpoint cleanup
is still missing, it'll be done at a later time. While not completely
finshed, rogue should alread run much more stable than the unmodified
code. Please note, that this is still untested! Headers are next,
monsters will be done after that.
This commit is contained in:
Yamagi Burmeister 2014-01-30 18:33:36 +01:00
parent 3f70140b56
commit daefddcf6b
19 changed files with 114 additions and 4 deletions

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* Deathmatch ball.
*
* =======================================================================
*/
#include "../header/local.h"
#define DBALL_GOAL_TEAM1 0x0001

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* Deathmatch tag.
*
* =======================================================================
*/
#include "../header/local.h"
extern edict_t *SelectFarthestDeathmatchSpawnPoint(void);

View File

@ -1,4 +1,5 @@
/* =======================================================================
/*
* =======================================================================
*
* Item handling and item definitions.
*

View File

@ -1,4 +1,5 @@
/* =======================================================================
/*
* =======================================================================
*
* Jump in into the game.so and support functions.
*

View File

@ -1,4 +1,5 @@
/* =======================================================================
/*
* =======================================================================
*
* Miscellaneos entities, functs and functions.
*

View File

@ -1,4 +1,5 @@
/* =======================================================================
/*
* =======================================================================
*
* Monster utility functions.
*

View File

@ -1,3 +1,10 @@
/*
* =======================================================================
*
* Item spawning.
*
* =======================================================================
*/
#include "header/local.h"

View File

@ -1,3 +1,11 @@
/*
* =======================================================================
*
* Defender sphere.
*
* =======================================================================
*/
#include "header/local.h"
#define DEFENDER_LIFESPAN 30

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* Game side of server CMDs. At this time only the ipfilter.
*
* =======================================================================
*/
#include "header/local.h"
#define MAX_IPFILTERS 1024

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* Targets.
*
* =======================================================================
*/
#include "header/local.h"
#define LASER_ON 0x0001

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* Trigger.
*
* =======================================================================
*/
#include "header/local.h"
#define TRIGGER_MONSTER 0x01

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* Turrets aka big cannons with a driver.
*
* =======================================================================
*/
#include "header/local.h"
qboolean FindTarget(edict_t *self);

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* Misc. utility functions for the game logic.
*
* =======================================================================
*/
#include "header/local.h"
#define MAXCHOICES 8

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* Weapon support functions.
*
* =======================================================================
*/
#include "header/local.h"
/*

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* Interface between client <-> game and client calculations.
*
* =======================================================================
*/
#include "../header/local.h"
#include "../monster/misc/player.h"

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* HUD, deathmatch scoreboard, help computer and intermission stuff.
*
* =======================================================================
*/
#include "../header/local.h"
void

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* The player trail, used by monsters to locate the player.
*
* =======================================================================
*/
#include "../header/local.h"
/*

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* The "camera" through that the player looks into the game.
*
* =======================================================================
*/
#include "../header/local.h"
#include "../monster/misc/player.h"

View File

@ -1,3 +1,10 @@
/* =======================================================================
*
* Player weapons.
*
* =======================================================================
*/
#include "../header/local.h"
#include "../monster/misc/player.h"