2003-10-22 09:24:50 +00:00
|
|
|
#include "config.rh"
|
|
|
|
|
|
|
|
#include "paroxysm.rh"
|
|
|
|
|
|
|
|
// Spectator functions
|
|
|
|
// Added Aug11'97 by Zoid <zoid@idsoftware.com>
|
|
|
|
//
|
|
|
|
// These functions are called from the server if they exist.
|
|
|
|
// Note that Spectators only have one think since they movement code doesn't
|
|
|
|
// track them much. Impulse commands work as usual, but don't call
|
|
|
|
// the regular ImpulseCommand handler in weapons.qc since Spectators don't
|
|
|
|
// have any weapons and things can explode.
|
|
|
|
//
|
|
|
|
// --- Zoid.
|
|
|
|
/*
|
|
|
|
===========
|
|
|
|
SpectatorConnect
|
|
|
|
called when a spectator connects to a server
|
|
|
|
============
|
|
|
|
*/
|
|
|
|
void() SpectatorConnect =
|
|
|
|
{
|
|
|
|
bprint (PRINT_MEDIUM, "Spectator ");
|
2003-10-22 21:54:29 +00:00
|
|
|
bprint (PRINT_MEDIUM, @self.netname);
|
2003-10-22 09:24:50 +00:00
|
|
|
bprint (PRINT_MEDIUM, " entered the game\n");
|
2003-10-22 21:54:29 +00:00
|
|
|
@self.goalentity = world; // used for impulse 1 below
|
2003-10-22 09:24:50 +00:00
|
|
|
};
|
|
|
|
/*
|
|
|
|
===========
|
|
|
|
SpectatorDisconnect
|
|
|
|
called when a spectator disconnects from a server
|
|
|
|
============
|
|
|
|
*/
|
|
|
|
void() SpectatorDisconnect =
|
|
|
|
{
|
|
|
|
bprint (PRINT_MEDIUM, "Spectator ");
|
2003-10-22 21:54:29 +00:00
|
|
|
bprint (PRINT_MEDIUM, @self.netname);
|
2003-10-22 09:24:50 +00:00
|
|
|
bprint (PRINT_MEDIUM, " left the game\n");
|
|
|
|
};
|
|
|
|
/*
|
|
|
|
================
|
|
|
|
SpectatorImpulseCommand
|
|
|
|
Called by SpectatorThink if the spectator entered an impulse
|
|
|
|
================
|
|
|
|
*/
|
|
|
|
void() SpectatorImpulseCommand =
|
|
|
|
{
|
2003-10-22 21:54:29 +00:00
|
|
|
if (@self.impulse == 1) {
|
2003-10-22 09:24:50 +00:00
|
|
|
// teleport the spectator to the next spawn point
|
|
|
|
// note that if the spectator is tracking, this doesn't do
|
|
|
|
// much
|
2003-10-22 21:54:29 +00:00
|
|
|
@self.goalentity = find(@self.goalentity, classname, "info_player_deathmatch");
|
|
|
|
if (@self.goalentity == world)
|
|
|
|
@self.goalentity = find(@self.goalentity, classname, "info_player_deathmatch");
|
|
|
|
if (@self.goalentity != world) {
|
|
|
|
setorigin(@self, @self.goalentity.origin);
|
|
|
|
@self.angles = @self.goalentity.angles;
|
|
|
|
@self.fixangle = TRUE; // turn this way immediately
|
2003-10-22 09:24:50 +00:00
|
|
|
}
|
|
|
|
}
|
2003-10-22 21:54:29 +00:00
|
|
|
@self.impulse = 0;
|
2003-10-22 09:24:50 +00:00
|
|
|
};
|
|
|
|
/*
|
|
|
|
================
|
|
|
|
SpectatorThink
|
|
|
|
Called every frame after physics are run
|
|
|
|
================
|
|
|
|
*/
|
|
|
|
void() SpectatorThink =
|
|
|
|
{
|
2003-10-22 21:54:29 +00:00
|
|
|
// @self.origin, etc contains spectator position, so you could
|
2003-10-22 09:24:50 +00:00
|
|
|
// do some neat stuff here
|
2003-10-22 21:54:29 +00:00
|
|
|
if (@self.impulse)
|
2003-10-22 09:24:50 +00:00
|
|
|
SpectatorImpulseCommand();
|
|
|
|
};
|