1 void trigger_teleport_use()
4 self.team = activator.team;
7 #define TDEATHLOOP(o) \
12 deathmin = (o) + player.mins; \
13 deathmax = (o) + player.maxs; \
14 if(telefragmin != telefragmax) \
16 if(deathmin_x > telefragmin_x) deathmin_x = telefragmin_x; \
17 if(deathmin_y > telefragmin_y) deathmin_y = telefragmin_y; \
18 if(deathmin_z > telefragmin_z) deathmin_z = telefragmin_z; \
19 if(deathmax_x < telefragmax_x) deathmax_x = telefragmax_x; \
20 if(deathmax_y < telefragmax_y) deathmax_y = telefragmax_y; \
21 if(deathmax_z < telefragmax_z) deathmax_z = telefragmax_z; \
23 deathradius = max(vlen(deathmin), vlen(deathmax)); \
24 for(head = findradius(o, deathradius); head; head = head.chain) \
27 if(boxesoverlap(deathmin, deathmax, head.absmin, head.absmax))
30 float check_tdeath(entity player, vector org, vector telefragmin, vector telefragmax)
32 if (IS_PLAYER(player) && player.health >= 1)
36 if (!(teamplay && autocvar_g_telefrags_teamplay && head.team == player.team))
45 void tdeath(entity player, entity teleporter, entity telefragger, vector telefragmin, vector telefragmax)
47 TDEATHLOOP(player.origin)
49 if (IS_PLAYER(player) && player.health >= 1)
51 if (!(teamplay && autocvar_g_telefrags_teamplay && head.team == player.team))
56 Damage (head, teleporter, telefragger, 10000, DEATH_TELEFRAG, head.origin, '0 0 0');
59 else // dead bodies and monsters gib themselves instead of telefragging
60 Damage (telefragger, teleporter, telefragger, 10000, DEATH_TELEFRAG, telefragger.origin, '0 0 0');
64 void spawn_tdeath(vector v0, entity e, vector v)
66 tdeath(e, e, e, '0 0 0', '0 0 0');
70 #define TELEPORT_FLAG_SOUND 1
71 #define TELEPORT_FLAG_PARTICLES 2
72 #define TELEPORT_FLAG_TDEATH 4
73 #define TELEPORT_FLAG_FORCE_TDEATH 8
75 #define TELEPORT_FLAGS_WARPZONE 0
76 #define TELEPORT_FLAGS_PORTAL (TELEPORT_FLAG_SOUND | TELEPORT_FLAG_PARTICLES | TELEPORT_FLAG_TDEATH | TELEPORT_FLAG_FORCE_TDEATH)
77 #define TELEPORT_FLAGS_TELEPORTER (TELEPORT_FLAG_SOUND | TELEPORT_FLAG_PARTICLES | TELEPORT_FLAG_TDEATH)
79 // types for .teleportable entity setting
80 #define TELEPORT_NORMAL 1 // play sounds/effects etc
81 #define TELEPORT_SIMPLE 2 // only do teleport, nothing special
83 void TeleportPlayer(entity teleporter, entity player, vector to, vector to_angles, vector to_velocity, vector telefragmin, vector telefragmax, float tflags)
89 telefragger = teleporter.owner;
93 makevectors (to_angles);
95 if(player.teleportable == TELEPORT_NORMAL) // don't play sounds or show particles for anything that isn't a player, maybe change later to block only observers
97 if(self.pushltime < time) // only show one teleport effect per teleporter per 0.2 seconds, for better fps
99 if(tflags & TELEPORT_FLAG_SOUND)
100 sound (player, CH_TRIGGER, "misc/teleport.wav", VOL_BASE, ATTEN_NORM);
101 if(tflags & TELEPORT_FLAG_PARTICLES)
103 pointparticles(particleeffectnum("teleport"), player.origin, '0 0 0', 1);
104 pointparticles(particleeffectnum("teleport"), to + v_forward * 32, '0 0 0', 1);
106 self.pushltime = time + 0.2;
110 // Relocate the player
111 // assuming to allows PL_MIN to PL_MAX box and some more
112 from = player.origin;
113 setorigin (player, to);
114 player.oldorigin = to; // don't undo the teleport by unsticking
115 player.angles = to_angles;
116 player.fixangle = TRUE;
117 player.velocity = to_velocity;
118 BITXOR_ASSIGN(player.effects, EF_TELEPORT_BIT);
120 UpdateCSQCProjectileAfterTeleport(player);
122 if(IS_PLAYER(player))
124 if(tflags & TELEPORT_FLAG_TDEATH)
125 if(player.takedamage && player.deadflag == DEAD_NO && !g_race && !g_cts && (autocvar_g_telefrags || (tflags & TELEPORT_FLAG_FORCE_TDEATH)))
126 tdeath(player, teleporter, telefragger, telefragmin, telefragmax);
128 // player no longer is on ground
129 player.flags &= ~FL_ONGROUND;
131 // reset tracking of oldvelocity for impact damage (sudden velocity changes)
132 player.oldvelocity = player.velocity;
134 // reset tracking of who pushed you into a hazard (for kill credit)
137 player.pusher = teleporter.owner;
138 player.pushltime = time + autocvar_g_maxpushtime;
139 player.istypefrag = player.BUTTON_CHAT;
143 player.pushltime = 0;
144 player.istypefrag = 0;
147 player.lastteleporttime = time;
151 entity Simple_TeleportPlayer(entity teleporter, entity player)
157 // Find the output teleporter
160 e = teleporter.enemy;
164 RandomSelection_Init();
165 for(e = world; (e = find(e, targetname, teleporter.target)); )
168 if(autocvar_g_telefrags_avoid)
170 locout = e.origin + '0 0 1' * (1 - player.mins_z - 24);
171 if(check_tdeath(player, locout, '0 0 0', '0 0 0'))
174 RandomSelection_Add(e, 0, string_null, (e.cnt ? e.cnt : 1), p);
176 e = RandomSelection_chosen_ent;
179 if(!e) { sprint(player, "Teleport destination vanished. Sorry... please complain to the mapper.\n"); }
181 makevectors(e.mangle);
184 if(vlen(player.velocity) > e.speed)
185 player.velocity = normalize(player.velocity) * max(0, e.speed);
187 if(autocvar_g_teleport_maxspeed)
188 if(vlen(player.velocity) > autocvar_g_teleport_maxspeed)
189 player.velocity = normalize(player.velocity) * max(0, autocvar_g_teleport_maxspeed);
191 locout = e.origin + '0 0 1' * (1 - player.mins_z - 24);
192 TeleportPlayer(teleporter, player, locout, e.mangle, v_forward * vlen(player.velocity), '0 0 0', '0 0 0', TELEPORT_FLAGS_TELEPORTER);
197 void Teleport_Touch (void)
202 if (self.active != ACTIVE_ACTIVE)
205 if (!other.teleportable)
209 if(!other.vehicle.teleportable)
212 if(other.turrcaps_flags & TFL_TURRCAPS_ISTURRET)
215 if(other.deadflag != DEAD_NO)
219 if(((self.spawnflags & 4) == 0) == (self.team != other.team))
225 RemoveGrapplingHook(other);
228 e = Simple_TeleportPlayer(self, other);
231 s = self.target; self.target = string_null;
233 if (!self.target) self.target = s;
241 void spawnfunc_info_teleport_destination (void)
243 self.classname = "info_teleport_destination";
245 self.mangle = self.angles;
246 self.angles = '0 0 0';
248 //setorigin (self, self.origin + '0 0 27'); // To fix a mappers' habit as old as Quake
249 setorigin (self, self.origin);
255 objerror ("^3Teleport destination without a targetname");
258 void spawnfunc_misc_teleporter_dest (void)
260 spawnfunc_info_teleport_destination();
263 void spawnfunc_target_teleporter (void)
265 spawnfunc_info_teleport_destination();
268 void teleport_findtarget (void)
274 for(e = world; (e = find(e, targetname, self.target)); )
277 if(e.movetype == MOVETYPE_NONE)
278 waypoint_spawnforteleporter(self, e.origin, 0);
279 if(e.classname != "info_teleport_destination")
280 print("^3MAPPER ERROR: teleporter does target an invalid teleport destination entity. Angles will not work.\n");
286 objerror ("Teleporter with nonexistant target");
291 // exactly one dest - bots love that
292 self.enemy = find(e, targetname, self.target);
296 // have to use random selection every single time
301 self.touch = Teleport_Touch;
304 entity Teleport_Find(vector mi, vector ma)
307 for(e = world; (e = find(e, classname, "trigger_teleport")); )
308 if(WarpZoneLib_BoxTouchesBrush(mi, ma, e, world))
313 entity teleport_first;
314 .entity teleport_next;
315 void spawnfunc_trigger_teleport (void)
317 self.angles = '0 0 0';
321 self.active = ACTIVE_ACTIVE;
323 self.use = trigger_teleport_use;
325 // this must be called to spawn the teleport waypoints for bots
326 InitializeEntity(self, teleport_findtarget, INITPRIO_FINDTARGET);
328 if (self.target == "")
330 objerror ("Teleporter with no target");
334 self.teleport_next = teleport_first;
335 teleport_first = self;
338 void WarpZone_PostTeleportPlayer_Callback(entity pl)
340 UpdateCSQCProjectileAfterTeleport(pl);
342 entity oldself = self;
344 anticheat_fixangle();
347 // "disown" projectiles after teleport
349 if(pl.owner == pl.realowner)
351 if(!(pl.flags & FL_PROJECTILE))
352 print("A non-projectile got through a warpzone and its owner cleared. It's a ", pl.classname, ".\n");
357 // reset tracking of oldvelocity for impact damage (sudden velocity changes)
358 pl.oldvelocity = pl.velocity;
359 // reset teleport time tracking too (or multijump can cause insane speeds)
360 pl.lastteleporttime = time;