1 ..entity owned_by_field;
7 .float(entity) waypointsprite_visible_for_player;
9 void WaypointSprite_UpdateSprites(entity e, string m1, string m2, string m3)
28 void WaypointSprite_UpdateHealth(entity e, float f)
30 f = bound(0, f, e.max_health);
31 if(f != e.health || e.pain_finished)
39 void WaypointSprite_UpdateMaxHealth(entity e, float f)
41 if(f != e.max_health || e.pain_finished)
49 void WaypointSprite_UpdateBuildFinished(entity e, float f)
51 if(f != e.pain_finished || e.max_health)
59 void WaypointSprite_UpdateOrigin(entity e, vector o)
68 void WaypointSprite_UpdateRule(entity e, float t, float r)
70 // no check, as this is never called without doing an actual change (usually only once)
76 void WaypointSprite_UpdateTeamRadar(entity e, float icon, vector col)
78 // no check, as this is never called without doing an actual change (usually only once)
79 e.cnt = (icon & 0x7F) | (e.cnt & 0x80);
84 .float waypointsprite_pingtime;
85 .float waypointsprite_helpmetime;
86 void WaypointSprite_Ping(entity e)
89 if(time < e.waypointsprite_pingtime)
91 e.waypointsprite_pingtime = time + 0.3;
92 // ALWAYS sends (this causes a radar circle), thus no check
97 float waypointsprite_limitedrange, waypointsprite_deployed_lifetime, waypointsprite_deadlifetime;
99 void WaypointSprite_HelpMePing(entity e)
101 WaypointSprite_Ping(e);
102 e.waypointsprite_helpmetime = time + waypointsprite_deployed_lifetime;
106 void WaypointSprite_FadeOutIn(entity e, float t)
111 e.teleport_time = time + t;
113 else if(t < (e.teleport_time - time))
115 // accelerate the waypoint's dying
117 // (e.teleport_time - time) / wp.fade_time stays
118 // e.teleport_time = time + fadetime
119 float current_fadetime;
120 current_fadetime = e.teleport_time - time;
121 e.teleport_time = time + t;
122 e.fade_time = e.fade_time * t / current_fadetime;
128 void WaypointSprite_Init()
130 waypointsprite_limitedrange = autocvar_sv_waypointsprite_limitedrange;
131 waypointsprite_deployed_lifetime = autocvar_sv_waypointsprite_deployed_lifetime;
132 waypointsprite_deadlifetime = autocvar_sv_waypointsprite_deadlifetime;
134 void WaypointSprite_InitClient(entity e)
138 void WaypointSprite_Kill(entity wp)
143 wp.owner.(wp.owned_by_field) = world;
147 void WaypointSprite_Disown(entity wp, float fadetime)
151 if(wp.classname != "sprite_waypoint")
153 backtrace("Trying to disown a non-waypointsprite");
158 if(wp.exteriormodeltoclient == wp.owner)
159 wp.exteriormodeltoclient = world;
160 wp.owner.(wp.owned_by_field) = world;
163 WaypointSprite_FadeOutIn(wp, fadetime);
167 void WaypointSprite_Think()
175 if(time >= self.teleport_time)
179 if(self.exteriormodeltoclient)
180 WaypointSprite_UpdateOrigin(self, self.exteriormodeltoclient.origin + self.view_ofs);
183 WaypointSprite_Kill(self);
185 self.nextthink = time; // WHY?!?
188 float WaypointSprite_visible_for_player(entity e)
190 // personal waypoints
196 if(self.team && self.rule == SPRITERULE_DEFAULT)
198 if(self.team != e.team)
207 entity WaypointSprite_getviewentity(entity e)
211 /* TODO idea (check this breaks nothing)
212 else if(e.classname == "observer")
218 float WaypointSprite_isteammate(entity e, entity e2)
222 if(e2.team != e.team)
233 float WaypointSprite_Customize()
235 // this is not in SendEntity because it shall run every frame, not just every update
237 // make spectators see what the player would see
239 e = WaypointSprite_getviewentity(other);
241 if(MUTATOR_CALLHOOK(CustomizeWaypoint))
244 return self.waypointsprite_visible_for_player(e);
247 float WaypointSprite_SendEntity(entity to, float sendflags)
251 WriteByte(MSG_ENTITY, ENT_CLIENT_WAYPOINT);
253 sendflags = sendflags & 0x7F;
257 else if(self.max_health || (self.pain_finished && (time < self.pain_finished + 0.25)))
260 WriteByte(MSG_ENTITY, sendflags);
266 WriteByte(MSG_ENTITY, (self.health / self.max_health) * 191.0);
270 dt = self.pain_finished - time;
271 dt = bound(0, dt * 32, 16383);
272 WriteByte(MSG_ENTITY, (dt & 0xFF00) / 256 + 192);
273 WriteByte(MSG_ENTITY, (dt & 0x00FF));
279 WriteCoord(MSG_ENTITY, self.origin_x);
280 WriteCoord(MSG_ENTITY, self.origin_y);
281 WriteCoord(MSG_ENTITY, self.origin_z);
286 WriteByte(MSG_ENTITY, self.team);
287 WriteByte(MSG_ENTITY, self.rule);
291 WriteString(MSG_ENTITY, self.model1);
294 WriteString(MSG_ENTITY, self.model2);
297 WriteString(MSG_ENTITY, self.model3);
301 WriteCoord(MSG_ENTITY, self.fade_time);
302 WriteCoord(MSG_ENTITY, self.teleport_time);
303 WriteShort(MSG_ENTITY, self.fade_rate); // maxdist
308 if(self.exteriormodeltoclient == to)
310 WriteByte(MSG_ENTITY, f);
315 WriteByte(MSG_ENTITY, self.cnt); // icon on radar
316 WriteByte(MSG_ENTITY, self.colormod_x * 255.0);
317 WriteByte(MSG_ENTITY, self.colormod_y * 255.0);
318 WriteByte(MSG_ENTITY, self.colormod_z * 255.0);
320 if(WaypointSprite_isteammate(self.owner, WaypointSprite_getviewentity(to)))
322 dt = (self.waypointsprite_helpmetime - time) / 0.1;
327 WriteByte(MSG_ENTITY, dt);
330 WriteByte(MSG_ENTITY, 0);
336 void WaypointSprite_Reset()
338 // if a WP wants to time out, let it time out immediately; other WPs ought to be reset/killed by their owners
340 if(self.fade_time) // there was there before: || g_keyhunt, do we really need this?
341 WaypointSprite_Kill(self);
344 entity WaypointSprite_Spawn(
345 string spr, // sprite
346 float lifetime, float maxdistance, // lifetime, max distance
347 entity ref, vector ofs, // position
348 entity showto, float t, // show to whom? Use a flag to indicate a team
349 entity own, .entity ownfield, // remove when own gets killed
350 float hideable, // true when it should be controlled by cl_hidewaypoints
351 float icon, vector rgb // initial icon and color
356 wp.classname = "sprite_waypoint";
357 wp.teleport_time = time + lifetime;
358 wp.fade_time = lifetime;
359 wp.exteriormodeltoclient = ref;
363 setorigin(wp, ref.origin + ofs);
370 wp.currentammo = hideable;
374 remove(own.ownfield);
376 wp.owned_by_field = ownfield;
378 wp.fade_rate = maxdistance;
379 wp.think = WaypointSprite_Think;
382 wp.customizeentityforclient = WaypointSprite_Customize;
383 wp.waypointsprite_visible_for_player = WaypointSprite_visible_for_player;
384 wp.reset2 = WaypointSprite_Reset;
387 Net_LinkEntity(wp, FALSE, 0, WaypointSprite_SendEntity);
391 entity WaypointSprite_SpawnFixed(
396 float icon, vector rgb // initial icon and color
399 return WaypointSprite_Spawn(spr, 0, 0, world, ofs, world, 0, own, ownfield, TRUE, icon, rgb);
402 .entity waypointsprite_deployed_fixed;
403 entity WaypointSprite_DeployFixed(
407 float icon, vector rgb // initial icon and color
410 float t, maxdistance;
416 maxdistance = waypointsprite_limitedrange;
419 return WaypointSprite_Spawn(spr, waypointsprite_deployed_lifetime, maxdistance, world, ofs, world, t, self, waypointsprite_deployed_fixed, FALSE, icon, rgb);
422 .entity waypointsprite_deployed_personal;
423 entity WaypointSprite_DeployPersonal(
426 float icon, vector rgb // initial icon and color
429 return WaypointSprite_Spawn(spr, 0, 0, world, ofs, world, 0, self, waypointsprite_deployed_personal, FALSE, icon, rgb);
432 .entity waypointsprite_attached;
433 .entity waypointsprite_attachedforcarrier;
434 entity WaypointSprite_Attach(
437 float icon, vector rgb // initial icon and color
440 float t, maxdistance;
441 if(self.waypointsprite_attachedforcarrier)
442 return world; // can't attach to FC
448 maxdistance = waypointsprite_limitedrange;
451 return WaypointSprite_Spawn(spr, waypointsprite_deployed_lifetime, maxdistance, self, '0 0 64', world, t, self, waypointsprite_attached, FALSE, icon, rgb);
454 entity WaypointSprite_AttachCarrier(
457 float icon, vector rgb // initial icon and color
461 WaypointSprite_Kill(carrier.waypointsprite_attached); // FC overrides attached
462 e = WaypointSprite_Spawn(spr, 0, 0, carrier, '0 0 64', world, carrier.team, carrier, waypointsprite_attachedforcarrier, FALSE, icon, rgb);
465 WaypointSprite_UpdateMaxHealth(e, '1 0 0' * healtharmor_maxdamage(start_health, start_armorvalue, autocvar_g_balance_armor_blockpercent) * 2);
466 WaypointSprite_UpdateHealth(e, '1 0 0' * healtharmor_maxdamage(carrier.health, carrier.armorvalue, autocvar_g_balance_armor_blockpercent));
471 void WaypointSprite_DetachCarrier(entity carrier)
473 WaypointSprite_Disown(carrier.waypointsprite_attachedforcarrier, waypointsprite_deadlifetime);
476 void WaypointSprite_ClearPersonal()
478 WaypointSprite_Kill(self.waypointsprite_deployed_personal);
481 void WaypointSprite_ClearOwned()
483 WaypointSprite_Kill(self.waypointsprite_deployed_fixed);
484 WaypointSprite_Kill(self.waypointsprite_deployed_personal);
485 WaypointSprite_Kill(self.waypointsprite_attached);
488 void WaypointSprite_PlayerDead()
490 WaypointSprite_Disown(self.waypointsprite_attached, waypointsprite_deadlifetime);
491 WaypointSprite_DetachCarrier(self);
494 void WaypointSprite_PlayerGone()
496 WaypointSprite_Disown(self.waypointsprite_deployed_fixed, waypointsprite_deadlifetime);
497 WaypointSprite_Kill(self.waypointsprite_deployed_personal);
498 WaypointSprite_Disown(self.waypointsprite_attached, waypointsprite_deadlifetime);
499 WaypointSprite_DetachCarrier(self);