4 .vector warpzone_save_origin;
5 .vector warpzone_save_angles;
6 .vector warpzone_save_eorigin;
7 .vector warpzone_save_eangles;
10 .vector warpzone_oldorigin, warpzone_oldvelocity, warpzone_oldangles;
11 .float warpzone_teleport_time;
12 .float warpzone_teleport_finishtime;
13 .entity warpzone_teleport_zone;
15 void WarpZone_StoreProjectileData(entity e)
17 e.warpzone_oldorigin = e.origin;
18 e.warpzone_oldvelocity = e.velocity;
19 e.warpzone_oldangles = e.angles;
22 void WarpZone_TeleportPlayer(entity teleporter, entity player, vector to, vector to_angles, vector to_velocity)
24 setorigin (player, to); // NOTE: this also aborts the move, when this is called by touch
25 player.oldorigin = to; // for DP's unsticking
26 player.angles = to_angles;
27 player.fixangle = TRUE;
28 player.velocity = to_velocity;
30 BITXOR_ASSIGN(player.effects, EF_TELEPORT_BIT);
32 if(player.classname == "player")
33 BITCLR_ASSIGN(player.flags, FL_ONGROUND);
35 WarpZone_PostTeleportPlayer_Callback(player);
38 float WarpZone_Teleported_Send(entity to, float sf)
40 WriteByte(MSG_ENTITY, ENT_CLIENT_WARPZONE_TELEPORTED);
41 WriteCoord(MSG_ENTITY, self.angles_x);
42 WriteCoord(MSG_ENTITY, self.angles_y);
43 WriteCoord(MSG_ENTITY, self.angles_z);
47 float WarpZone_Teleport(entity wz, entity player, float f0, float f1)
49 vector o0, a0, v0, o1, a1, v1, o10;
51 o0 = player.origin + player.view_ofs;
55 o10 = o1 = WarpZone_TransformOrigin(wz, o0);
56 v1 = WarpZone_TransformVelocity(wz, v0);
57 if(clienttype(player) != CLIENTTYPE_NOTACLIENT)
58 a1 = WarpZone_TransformVAngles(wz, player.v_angle);
60 a1 = WarpZone_TransformAngles(wz, a0);
62 if(f0 != 0 || f1 != 0)
64 // retry last move but behind the warpzone!
65 // we must first go back as far as we can, then forward again, to not cause double touch events!
67 tracebox(o1 - player.view_ofs + v1 * frametime * f1, player.mins, player.maxs, o1 - player.view_ofs + v1 * frametime * f0, MOVE_WORLDONLY, player);
72 tracebox(trace_endpos, player.mins, player.maxs, o1 - player.view_ofs + v1 * frametime * f1, MOVE_NORMAL, player); // this should get us through the warpzone
75 o1 = trace_endpos + player.view_ofs;
78 md = max(vlen(player.mins), vlen(player.maxs));
79 d = WarpZone_TargetPlaneDist(wz, o1);
80 dv = WarpZone_TargetPlaneDist(wz, v1);
82 o1 = o1 - v1 * (d / dv);
85 // put him out of solid
86 tracebox(o1 - player.view_ofs, player.mins, player.maxs, o1 - player.view_ofs, MOVE_NOMONSTERS, player);
89 setorigin(player, o1 - player.view_ofs);
90 if(WarpZoneLib_MoveOutOfSolid(player))
92 o1 = player.origin + player.view_ofs;
93 setorigin(player, o0 - player.view_ofs);
97 print("would have to put player in solid, won't do that\n");
98 setorigin(player, o0 - player.view_ofs);
104 WarpZone_RefSys_Add(player, wz);
105 WarpZone_TeleportPlayer(wz, player, o1 - player.view_ofs, a1, v1);
106 WarpZone_StoreProjectileData(player);
107 player.warpzone_teleport_time = time;
108 player.warpzone_teleport_finishtime = time;
109 player.warpzone_teleport_zone = wz;
111 // prevent further teleports back
112 float dt = (o1 - o10) * v1 * (1 / (v1 * v1));
113 if(dt < sys_frametime)
114 player.warpzone_teleport_finishtime += sys_frametime - dt;
116 #ifndef WARPZONE_USE_FIXANGLE
117 if(player.classname == "player")
119 // instead of fixangle, send the transform to the client for smoother operation
120 player.fixangle = FALSE;
123 setmodel(ts, "null");
124 ts.SendEntity = WarpZone_Teleported_Send;
125 ts.SendFlags = 0xFFFFFF;
126 ts.drawonlytoclient = player;
127 ts.think = SUB_Remove;
128 ts.nextthink = time + 1;
131 ts.effects = EF_NODEPTHTEST;
132 ts.classname = "warpzone_teleported";
133 ts.angles = wz.warpzone_transform;
140 void WarpZone_Touch (void)
144 if(other.classname == "trigger_warpzone")
147 if(time <= other.warpzone_teleport_finishtime) // already teleported this frame
150 // FIXME needs a better check to know what is safe to teleport and what not
151 if(other.movetype == MOVETYPE_NONE || other.movetype == MOVETYPE_FOLLOW || other.tag_entity)
154 if(WarpZoneLib_ExactTrigger_Touch())
157 if(WarpZone_PlaneDist(self, other.origin + other.view_ofs) >= 0) // wrong side of the trigger_warpzone (don't teleport yet)
161 // number of frames we need to go back:
162 // dist = 16*sqrt(2) qu
165 // 24 qu = v*frametime*n
166 // n = 24 qu/(v*frametime)
167 // for clients go only one frame though, may be too irritating otherwise
168 // but max 0.25 sec = 0.25/frametime frames
169 // 24/(0.25/frametime)
172 d = 24 + max(vlen(other.mins), vlen(other.maxs));
173 if(clienttype(other) == CLIENTTYPE_NOTACLIENT)
174 f = -d / bound(frametime * d * 1, frametime * vlen(other.velocity), d);
177 if(WarpZone_Teleport(self, other, f, 0))
182 save1 = self.target; self.target = string_null;
183 save2 = self.target3; self.target3 = string_null;
185 if not(self.target) self.target = save1;
186 if not(self.target3) self.target3 = save2;
190 save1 = self.target; self.target = string_null;
191 save2 = self.target2; self.target2 = string_null;
193 if not(self.target) self.target = save1;
194 if not(self.target2) self.target2 = save2;
199 dprint("WARPZONE FAIL AHAHAHAHAH))\n");
203 float WarpZone_Send(entity to, float sendflags)
206 WriteByte(MSG_ENTITY, ENT_CLIENT_WARPZONE);
208 // we must send this flag for clientside to match properly too
210 if(self.warpzone_isboxy)
212 if(self.warpzone_fadestart)
214 if(self.origin != '0 0 0')
216 WriteByte(MSG_ENTITY, f);
218 // we need THESE to render the warpzone (and cull properly)...
221 WriteCoord(MSG_ENTITY, self.origin_x);
222 WriteCoord(MSG_ENTITY, self.origin_y);
223 WriteCoord(MSG_ENTITY, self.origin_z);
226 WriteShort(MSG_ENTITY, self.modelindex);
227 WriteCoord(MSG_ENTITY, self.mins_x);
228 WriteCoord(MSG_ENTITY, self.mins_y);
229 WriteCoord(MSG_ENTITY, self.mins_z);
230 WriteCoord(MSG_ENTITY, self.maxs_x);
231 WriteCoord(MSG_ENTITY, self.maxs_y);
232 WriteCoord(MSG_ENTITY, self.maxs_z);
233 WriteByte(MSG_ENTITY, bound(1, self.scale * 16, 255));
235 // we need THESE to calculate the proper transform
236 WriteCoord(MSG_ENTITY, self.warpzone_origin_x);
237 WriteCoord(MSG_ENTITY, self.warpzone_origin_y);
238 WriteCoord(MSG_ENTITY, self.warpzone_origin_z);
239 WriteCoord(MSG_ENTITY, self.warpzone_angles_x);
240 WriteCoord(MSG_ENTITY, self.warpzone_angles_y);
241 WriteCoord(MSG_ENTITY, self.warpzone_angles_z);
242 WriteCoord(MSG_ENTITY, self.warpzone_targetorigin_x);
243 WriteCoord(MSG_ENTITY, self.warpzone_targetorigin_y);
244 WriteCoord(MSG_ENTITY, self.warpzone_targetorigin_z);
245 WriteCoord(MSG_ENTITY, self.warpzone_targetangles_x);
246 WriteCoord(MSG_ENTITY, self.warpzone_targetangles_y);
247 WriteCoord(MSG_ENTITY, self.warpzone_targetangles_z);
251 WriteShort(MSG_ENTITY, self.warpzone_fadestart);
252 WriteShort(MSG_ENTITY, self.warpzone_fadeend);
258 float WarpZone_Camera_Send(entity to, float sendflags)
261 WriteByte(MSG_ENTITY, ENT_CLIENT_WARPZONE_CAMERA);
263 if(self.warpzone_fadestart)
265 if(self.origin != '0 0 0')
267 WriteByte(MSG_ENTITY, f);
269 // we need THESE to render the warpzone (and cull properly)...
272 WriteCoord(MSG_ENTITY, self.origin_x);
273 WriteCoord(MSG_ENTITY, self.origin_y);
274 WriteCoord(MSG_ENTITY, self.origin_z);
277 WriteShort(MSG_ENTITY, self.modelindex);
278 WriteCoord(MSG_ENTITY, self.mins_x);
279 WriteCoord(MSG_ENTITY, self.mins_y);
280 WriteCoord(MSG_ENTITY, self.mins_z);
281 WriteCoord(MSG_ENTITY, self.maxs_x);
282 WriteCoord(MSG_ENTITY, self.maxs_y);
283 WriteCoord(MSG_ENTITY, self.maxs_z);
284 WriteByte(MSG_ENTITY, bound(1, self.scale * 16, 255));
286 // we need THESE to calculate the proper transform
287 WriteCoord(MSG_ENTITY, self.enemy.origin_x);
288 WriteCoord(MSG_ENTITY, self.enemy.origin_y);
289 WriteCoord(MSG_ENTITY, self.enemy.origin_z);
290 WriteCoord(MSG_ENTITY, self.enemy.angles_x);
291 WriteCoord(MSG_ENTITY, self.enemy.angles_y);
292 WriteCoord(MSG_ENTITY, self.enemy.angles_z);
296 WriteShort(MSG_ENTITY, self.warpzone_fadestart);
297 WriteShort(MSG_ENTITY, self.warpzone_fadeend);
303 float WarpZone_CheckProjectileImpact(entity player)
307 o0 = player.origin + player.view_ofs;
308 v0 = player.velocity;
310 // if we teleported shortly before, abort
311 if(time <= player.warpzone_teleport_finishtime + 0.1)
314 // if player hit a warpzone, abort
316 wz = WarpZone_Find(o0 + player.mins, o0 + player.maxs);
321 print("impactfilter found something - and it no longer gets handled correctly - please tell divVerent whether anything behaves broken now\n");
323 print("impactfilter found something - and it even gets handled correctly - please tell divVerent that this code apparently gets triggered again\n");
325 print("Entity type: ", player.classname, "\n");
326 print("Origin: ", vtos(player.origin), "\n");
327 print("Velocity: ", vtos(player.velocity), "\n");
332 // retry previous move
333 setorigin(player, player.warpzone_oldorigin);
334 player.velocity = player.warpzone_oldvelocity;
335 if(WarpZone_Teleport(wz, player, 0, 1))
345 save1 = self.target; self.target = string_null;
346 save2 = self.target3; self.target3 = string_null;
348 if not(self.target) self.target = save1;
349 if not(self.target3) self.target3 = save2;
352 save1 = self.target; self.target = string_null;
353 save2 = self.target2; self.target2 = string_null;
355 if not(self.target) self.target = save1;
356 if not(self.target2) self.target2 = save2;
361 setorigin(player, o0 - player.view_ofs);
362 player.velocity = v0;
368 float WarpZone_Projectile_Touch()
371 if(other.classname == "trigger_warpzone")
374 // no further impacts if we teleported this frame!
375 if(time == self.warpzone_teleport_time)
378 // this SEEMS to not happen at the moment, but if it did, it would be more reliable
380 float save_dpstartcontents;
381 float save_dphitcontents;
382 float save_dphitq3surfaceflags;
383 string save_dphittexturename;
385 float save_startsolid;
388 vector save_plane_normal;
389 float save_plane_dist;
393 save_dpstartcontents = trace_dpstartcontents;
394 save_dphitcontents = trace_dphitcontents;
395 save_dphitq3surfaceflags = trace_dphitq3surfaceflags;
396 save_dphittexturename = trace_dphittexturename;
397 save_allsolid = trace_allsolid;
398 save_startsolid = trace_startsolid;
399 save_fraction = trace_fraction;
400 save_endpos = trace_endpos;
401 save_plane_normal = trace_plane_normal;
402 save_plane_dist = trace_plane_dist;
403 save_ent = trace_ent;
404 save_inopen = trace_inopen;
405 save_inwater = trace_inwater;
406 if((f = WarpZone_CheckProjectileImpact(self)) != 0)
408 trace_dpstartcontents = save_dpstartcontents;
409 trace_dphitcontents = save_dphitcontents;
410 trace_dphitq3surfaceflags = save_dphitq3surfaceflags;
411 trace_dphittexturename = save_dphittexturename;
412 trace_allsolid = save_allsolid;
413 trace_startsolid = save_startsolid;
414 trace_fraction = save_fraction;
415 trace_endpos = save_endpos;
416 trace_plane_normal = save_plane_normal;
417 trace_plane_dist = save_plane_dist;
418 trace_ent = save_ent;
419 trace_inopen = save_inopen;
420 trace_inwater = save_inwater;
423 if(WarpZone_Projectile_Touch_ImpactFilter_Callback())
429 void WarpZone_InitStep_FindOriginTarget()
431 if(self.killtarget != "")
433 self.aiment = find(world, targetname, self.killtarget);
434 if(self.aiment == world)
436 error("Warp zone with nonexisting killtarget");
439 self.killtarget = string_null;
443 void WarpZonePosition_InitStep_FindTarget()
445 if(self.target == "")
447 error("Warp zone position with no target");
450 self.enemy = find(world, targetname, self.target);
451 if(self.enemy == world)
453 error("Warp zone position with nonexisting target");
456 if(self.enemy.aiment)
458 // already is positioned
459 error("Warp zone position targeting already oriented warpzone");
462 self.enemy.aiment = self;
465 void WarpZoneCamera_Think(void)
467 if(self.warpzone_save_origin != self.origin
468 || self.warpzone_save_angles != self.angles
469 || self.warpzone_save_eorigin != self.enemy.origin
470 || self.warpzone_save_eangles != self.enemy.angles)
472 WarpZone_Camera_SetUp(self, self.enemy.origin, self.enemy.angles);
473 self.warpzone_save_origin = self.origin;
474 self.warpzone_save_angles = self.angles;
475 self.warpzone_save_eorigin = self.enemy.origin;
476 self.warpzone_save_eangles = self.enemy.angles;
478 self.nextthink = time;
481 void WarpZoneCamera_InitStep_FindTarget()
485 if(self.target == "")
487 error("Camera with no target");
491 for(e = world, i = 0; (e = find(e, targetname, self.target)); )
492 if(random() * ++i < 1)
494 if(self.enemy == world)
496 error("Camera with nonexisting target");
499 warpzone_cameras_exist = 1;
500 WarpZone_Camera_SetUp(self, self.enemy.origin, self.enemy.angles);
501 self.SendFlags = 0xFFFFFF;
502 if(self.spawnflags & 1)
504 self.think = WarpZoneCamera_Think;
505 self.nextthink = time;
511 void WarpZone_InitStep_UpdateTransform()
513 vector org, ang, norm, point;
515 vector tri, a, b, c, p, q, n;
521 org = 0.5 * (self.mins + self.maxs);
523 norm = point = '0 0 0';
525 for(i_s = 0; ; ++i_s)
527 tex = getsurfacetexture(self, i_s);
529 break; // this is beyond the last one
530 if(tex == "textures/common/trigger" || tex == "trigger")
532 n_t = getsurfacenumtriangles(self, i_s);
533 for(i_t = 0; i_t < n_t; ++i_t)
535 tri = getsurfacetriangle(self, i_s, i_t);
536 a = getsurfacepoint(self, i_s, tri_x);
537 b = getsurfacepoint(self, i_s, tri_y);
538 c = getsurfacepoint(self, i_s, tri_z);
541 n = '1 0 0' * (q_y * p_z - q_z * p_y)
542 + '0 1 0' * (q_z * p_x - q_x * p_z)
543 + '0 0 1' * (q_x * p_y - q_y * p_x);
544 area = area + vlen(n);
546 point = point + vlen(n) * (a + b + c);
551 norm = norm * (1 / area);
552 point = point * (1 / (3 * area));
553 if(vlen(norm) < 0.99)
555 print("trigger_warpzone near ", vtos(self.aiment.origin), " is nonplanar. BEWARE.\n");
556 area = 0; // no autofixing in this case
558 norm = normalize(norm);
563 org = self.aiment.origin;
564 ang = self.aiment.angles;
567 org = org - ((org - point) * norm) * norm; // project to plane
569 if(norm * v_forward < 0)
571 print("Position target of trigger_warpzone near ", vtos(self.aiment.origin), " points into trigger_warpzone. BEWARE.\n");
574 ang = vectoangles2(norm, v_up); // keep rotation, but turn exactly against plane
576 if(norm * v_forward < 0.99)
577 print("trigger_warpzone near ", vtos(self.aiment.origin), " has been turned to match plane orientation (", vtos(self.aiment.angles), " -> ", vtos(ang), "\n");
578 if(vlen(org - self.aiment.origin) > 0.5)
579 print("trigger_warpzone near ", vtos(self.aiment.origin), " has been moved to match the plane (", vtos(self.aiment.origin), " -> ", vtos(org), ").\n");
585 ang = vectoangles(norm);
589 error("cannot infer origin/angles for this warpzone, please use a killtarget or a trigger_warpzone_position");
591 self.warpzone_origin = org;
592 self.warpzone_angles = ang;
595 void WarpZone_InitStep_ClearTarget()
598 self.enemy.enemy = world;
602 entity warpzone_first; .entity warpzone_next;
603 void WarpZone_InitStep_FindTarget()
611 // this way only one of the two ents needs to target
612 if(self.target != "")
614 self.enemy = self; // so the if(!e.enemy) check also skips self, saves one IF
617 for(e = world, i = 0; (e = find(e, targetname, self.target)); )
619 if(e.classname == self.classname) // possibly non-warpzones may use the same targetname!
620 if(random() * ++i < 1)
625 error("Warpzone with non-existing target");
633 void WarpZone_Think();
634 void WarpZone_InitStep_FinalizeTransform()
636 if(!self.enemy || self.enemy.enemy != self)
638 error("Invalid warp zone detected. Killed.");
642 warpzone_warpzones_exist = 1;
643 WarpZone_SetUp(self, self.warpzone_origin, self.warpzone_angles, self.enemy.warpzone_origin, self.enemy.warpzone_angles);
644 self.touch = WarpZone_Touch;
645 self.SendFlags = 0xFFFFFF;
646 if(self.spawnflags & 1)
648 self.think = WarpZone_Think;
649 self.nextthink = time;
655 float warpzone_initialized;
656 entity warpzone_first;
657 entity warpzone_position_first;
658 entity warpzone_camera_first;
659 .entity warpzone_next;
660 void spawnfunc_misc_warpzone_position(void)
662 // "target", "angles", "origin"
663 self.warpzone_next = warpzone_position_first;
664 warpzone_position_first = self;
666 void spawnfunc_trigger_warpzone_position(void)
668 spawnfunc_misc_warpzone_position();
670 void spawnfunc_trigger_warpzone(void)
672 // warp zone entities must have:
673 // "killtarget" pointing to a target_position with a direction arrow
674 // that points AWAY from the warp zone, and that is inside
675 // the warp zone trigger
676 // "target" pointing to an identical warp zone at another place in
677 // the map, with another killtarget to designate its
680 #ifndef WARPZONE_USE_FIXANGLE
681 // used when teleporting
682 precache_model("null");
686 self.scale = self.modelscale;
691 WarpZoneLib_ExactTrigger_Init();
695 setmodel(self, m); // no precision needed
697 setorigin(self, self.origin);
699 setsize(self, self.mins * self.scale, self.maxs * self.scale);
701 setsize(self, self.mins, self.maxs);
702 self.SendEntity = WarpZone_Send;
703 self.SendFlags = 0xFFFFFF;
704 BITSET_ASSIGN(self.effects, EF_NODEPTHTEST);
705 self.warpzone_next = warpzone_first;
706 warpzone_first = self;
708 void spawnfunc_func_camera(void)
711 self.scale = self.modelscale;
716 precache_model(self.model);
717 setmodel(self, self.model); // no precision needed
719 setorigin(self, self.origin);
721 setsize(self, self.mins * self.scale, self.maxs * self.scale);
723 setsize(self, self.mins, self.maxs);
725 self.solid = SOLID_BSP;
726 else if(self.solid < 0)
727 self.solid = SOLID_NOT;
728 self.SendEntity = WarpZone_Camera_Send;
729 self.SendFlags = 0xFFFFFF;
730 self.warpzone_next = warpzone_camera_first;
731 warpzone_camera_first = self;
733 void WarpZones_Reconnect()
737 for(self = warpzone_first; self; self = self.warpzone_next)
738 WarpZone_InitStep_ClearTarget();
739 for(self = warpzone_first; self; self = self.warpzone_next)
740 WarpZone_InitStep_FindTarget();
741 for(self = warpzone_camera_first; self; self = self.warpzone_next)
742 WarpZoneCamera_InitStep_FindTarget();
743 for(self = warpzone_first; self; self = self.warpzone_next)
744 WarpZone_InitStep_FinalizeTransform();
748 void WarpZone_Think()
750 if(self.warpzone_save_origin != self.origin
751 || self.warpzone_save_angles != self.angles
752 || self.warpzone_save_eorigin != self.enemy.origin
753 || self.warpzone_save_eangles != self.enemy.angles)
757 WarpZone_InitStep_UpdateTransform();
759 WarpZone_InitStep_UpdateTransform();
761 WarpZone_InitStep_FinalizeTransform();
763 WarpZone_InitStep_FinalizeTransform();
765 self.warpzone_save_origin = self.origin;
766 self.warpzone_save_angles = self.angles;
767 self.warpzone_save_eorigin = self.enemy.origin;
768 self.warpzone_save_eangles = self.enemy.angles;
770 self.nextthink = time;
773 void WarpZone_StartFrame()
776 if(warpzone_initialized == 0)
778 warpzone_initialized = 1;
780 for(self = warpzone_first; self; self = self.warpzone_next)
781 WarpZone_InitStep_FindOriginTarget();
782 for(self = warpzone_position_first; self; self = self.warpzone_next)
783 WarpZonePosition_InitStep_FindTarget();
784 for(self = warpzone_first; self; self = self.warpzone_next)
785 WarpZone_InitStep_UpdateTransform();
787 WarpZones_Reconnect();
788 WarpZone_PostInitialize_Callback();
791 entity oldself, oldother;
794 for(e = world; (e = nextent(e)); )
796 if(warpzone_warpzones_exist) { WarpZone_StoreProjectileData(e); }
798 float f = clienttype(e);
799 if(f == CLIENTTYPE_REAL)
801 if(e.solid == SOLID_NOT) // not spectating?
802 if(e.movetype == MOVETYPE_NOCLIP || e.movetype == MOVETYPE_FLY || e.movetype == MOVETYPE_FLY_WORLDONLY) // not spectating? (this is to catch observers)
807 if(warpzone_warpzones_exist) {
808 self = WarpZone_Find(e.origin + e.mins, e.origin + e.maxs);
810 if(!WarpZoneLib_ExactTrigger_Touch())
811 if(WarpZone_PlaneDist(self, e.origin + e.view_ofs) <= 0)
812 WarpZone_Teleport(self, e, -1, 0); } // NOT triggering targets by this!
815 self = Teleport_Find(e.origin + e.mins, e.origin + e.maxs);
817 if(!WarpZoneLib_ExactTrigger_Touch())
818 Simple_TeleportPlayer(self, other); // NOT triggering targets by this!
822 if(f == CLIENTTYPE_NOTACLIENT)
824 if(warpzone_warpzones_exist)
825 for(; (e = nextent(e)); )
826 WarpZone_StoreProjectileData(e);
834 .float warpzone_reconnecting;
835 float visible_to_some_client(entity ent)
838 for(e = nextent(world); clienttype(e) != CLIENTTYPE_NOTACLIENT; e = nextent(e))
839 if(e.classname == "player" && clienttype(e) == CLIENTTYPE_REAL)
840 if(checkpvs(e.origin + e.view_ofs, ent))
844 void trigger_warpzone_reconnect_use()
848 // NOTE: this matches for target, not targetname, but of course
849 // targetname must be set too on the other entities
850 for(self = warpzone_first; self; self = self.warpzone_next)
851 self.warpzone_reconnecting = ((e.target == "" || self.target == e.target) && !((e.spawnflags & 1) && (visible_to_some_client(self) || visible_to_some_client(self.enemy))));
852 for(self = warpzone_camera_first; self; self = self.warpzone_next)
853 self.warpzone_reconnecting = ((e.target == "" || self.target == e.target) && !((e.spawnflags & 1) && visible_to_some_client(self)));
854 for(self = warpzone_first; self; self = self.warpzone_next)
855 if(self.warpzone_reconnecting)
856 WarpZone_InitStep_ClearTarget();
857 for(self = warpzone_first; self; self = self.warpzone_next)
858 if(self.warpzone_reconnecting)
859 WarpZone_InitStep_FindTarget();
860 for(self = warpzone_camera_first; self; self = self.warpzone_next)
861 if(self.warpzone_reconnecting)
862 WarpZoneCamera_InitStep_FindTarget();
863 for(self = warpzone_first; self; self = self.warpzone_next)
864 if(self.warpzone_reconnecting || self.enemy.warpzone_reconnecting)
865 WarpZone_InitStep_FinalizeTransform();
869 void spawnfunc_trigger_warpzone_reconnect()
871 self.use = trigger_warpzone_reconnect_use;
874 void spawnfunc_target_warpzone_reconnect()
876 spawnfunc_trigger_warpzone_reconnect(); // both names make sense here :(
879 void WarpZone_PlayerPhysics_FixVAngle(void)
881 #ifndef WARPZONE_DONT_FIX_VANGLE
882 if(clienttype(self) == CLIENTTYPE_REAL)
883 if(self.v_angle_z <= 360) // if not already adjusted
884 if(time - self.ping * 0.001 < self.warpzone_teleport_time)
886 self.v_angle = WarpZone_TransformVAngles(self.warpzone_teleport_zone, self.v_angle);
887 self.v_angle_z += 720; // mark as adjusted