djcev.com

//

Git Repos / fte_dogmode / qc / info / teleport_destination.qc

Last update to this file was on 2025-03-30 at 19:29.

Show teleport_destination.qc

//==============================================================================
// info_teleport_destination, info_teleport_random -- with additions by CEV
//==============================================================================

//======================================================================
// constants
//======================================================================

#if defined(CSQC) || defined(SSQC)
//----------------------------------------------------------------------
// info_teleport_destination spawnflags -- CEV
//----------------------------------------------------------------------
typedef enumflags
{
SPAWNFLAG_INFO_TELEPORT_DESTINATION_DROP = 1
// SPAWNFLAG_NOT_ON_EASY = 256, // see base_entities.qc -- CEV
// SPAWNFLAG_NOT_ON_NORMAL = 512, // see base_entities.qc -- CEV
// SPAWNFLAG_NOT_ON_HARD_OR_NIGHTMARE = 1024, // base_entities.qc -- CEV
// SPAWNFLAG_NOT_IN_DEATHMATCH = 2048, // see base_entities.qc -- CEV
// SPAWNFLAG_NOT_IN_COOP = 4096,// see base_entities.qc -- CEV
// SPAWNFLAG_NOT_IN_SP = 8192, // see base_entities.qc -- CEV
// SPAWNFLAG_NOT_ON_SKILL2 = 32768,// see base_entities.qc -- CEV
// SPAWNFLAG_NOT_ON_SKILL3 = 65536,// see base_entities.qc -- CEV
// SPAWNFLAG_CENTERPRINTALL = 131072 // see base_entities.qc -- CEV
} info_teleport_destination_spawnflags;
#endif

//======================================================================
// forward declarations
//======================================================================

#ifdef SSQC
// info_teleport_destination
entity(entity src, vector org, string tname) spawn_info_teleport_destination;
void(entity e) info_teleport_destination_init;
void() info_teleport_destination;
#endif

#ifdef SSQC
// info_teleport_random
entity(entity src, vector org) spawn_info_teleport_random;
void(entity e) info_teleport_random_init;
void() info_teleport_random;
#endif

//------------------------------------------------------------------------------

#ifdef SSQC
/*QUAKED info_teleport_destination (.5 .5 .5) (-8 -8 -8) (8 8 32) X X X X X X X X NOT_ON_EASY NOT_ON_NORMAL NOT_ON_HARD_OR_NIGHTMARE NOT_IN_DEATHMATCH NOT_IN_COOP NOT_IN_SINGLEPLAYER X NOT_ON_HARD_ONLY NOT_ON_NIGHTMARE_ONLY
{
model ("progs/player.mdl");
}
This is the destination marker for a teleporter. It should have a "targetname"
field with the same value as a teleporter's "target" field.
*/
//----------------------------------------------------------------------
// class info_teleport_destination: base_mapentity
// {
//--------------------------------------------------------------
entity(entity src, vector org, string tname)
spawn_info_teleport_destination =
{
local entity e = spawn ();
e.owner = src;
e.origin = org;
e.targetname = tname;
info_teleport_destination_init (e);
return e;
};

//--------------------------------------------------------------
void(entity e) info_teleport_destination_init =
{
base_mapentity_init (e);
e.classname = "info_teleport_destination";
e.classtype = CT_INFO_TELEPORT_DESTINATION;

local vector end;

// this does nothing, just serves as a target spot
e.mangle = e.angles;
e.angles = '0 0 0';
e.model = "";
setsize (e, VEC_HULL_MIN, VEC_HULL_MAX);

if (known_release != KNOWN_RELEASE_QUAKE3)
if (known_release != KNOWN_RELEASE_CPMA)
if (known_release != KNOWN_RELEASE_QUAKELIVE)
// standard id1 offset from floor -- CEV
e.origin = e.origin + '0 0 27';

if (e.spawnflags & SPAWNFLAG_INFO_TELEPORT_DESTINATION_DROP)
{
// drop if flagged to do so -- CEV
local entity oself = self;
self = e;
droptofloor ();
self = oself;
}

setorigin (e, e.origin);

if (!e.targetname)
if (e.target != __NULL__ && e.target != "")
// quake 3 compat -- CEV
e.targetname = e.target;
else
objerror ("no targetname");
};

//--------------------------------------------------------------
void() info_teleport_destination =
{
// new spawnflags for all entities -- iw
if (SUB_Inhibit())
return;

info_teleport_destination_init (self);
};
// };
#endif

#ifdef SSQC
/*QUAKED info_teleport_random (.5 .5 .5) (-8 -8 -8) (8 8 32) X X X X X X X X NOT_ON_EASY NOT_ON_NORMAL NOT_ON_HARD_OR_NIGHTMARE NOT_IN_DEATHMATCH NOT_IN_COOP NOT_IN_SINGLEPLAYER X NOT_ON_HARD_ONLY NOT_ON_NIGHTMARE_ONLY
{
model ("progs/player.mdl");
}
This is a random destination marker for a teleporter.
*/
//----------------------------------------------------------------------
// class info_teleport_random: base_mapentity
// {
//--------------------------------------------------------------
entity(entity src, vector org) spawn_info_teleport_random =
{
local entity e = spawn ();
e.owner = src;
e.origin = org;
info_teleport_random_init (e);
return e;
};

//--------------------------------------------------------------
void(entity e) info_teleport_random_init =
{
base_mapentity_init (e);
e.classname = "info_teleport_random";
e.classtype = CT_INFO_TELEPORT_RANDOM;

// this does nothing, just serves as a target spot
e.mangle = e.angles;
e.angles = '0 0 0';
e.model = "";
e.origin = e.origin + '0 0 27';
};

//--------------------------------------------------------------
void() info_teleport_random =
{
// new spawnflags for all entities -- iw
if (SUB_Inhibit())
return;

info_teleport_random_init (self);
};
// };
#endif

Return to the top of this page or return to the overview of this repo.

Log teleport_destination.qc

Date Commit Message Author + -
2025-03-30 Big commit. Entity networking, etc. cev +45 -15
2024-03-24 2nd pass refactor, rework QC class structure cev +79 -26
2024-01-31 Class based monster refactor & start projectiles cev +1 -1
2024-01-09 Continue OO / Class-based refactor cev +17 -12
2023-12-09 Start OO / class-based refactor, work on items cev +79  

Return to the top of this page or return to the overview of this repo.