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)
200 if(e.classname != "player")
207 entity WaypointSprite_getviewentity(entity e)
209 if(e.classname == "spectator")
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 // as a GENERAL rule:
242 // if you have the invisibility powerup, sprites ALWAYS are restricted to your team
243 // but only apply this to real players, not to spectators
244 if(g_minstagib && (self.owner.items & IT_STRENGTH) && (e == other))
246 if(!WaypointSprite_isteammate(self.owner, e))
250 return self.waypointsprite_visible_for_player(e);
253 float WaypointSprite_SendEntity(entity to, float sendflags)
257 WriteByte(MSG_ENTITY, ENT_CLIENT_WAYPOINT);
259 sendflags = sendflags & 0x7F;
263 else if(self.max_health || (self.pain_finished && (time < self.pain_finished + 0.25)))
266 WriteByte(MSG_ENTITY, sendflags);
272 WriteByte(MSG_ENTITY, (self.health / self.max_health) * 191.0);
276 dt = self.pain_finished - time;
277 dt = bound(0, dt * 32, 16383);
278 WriteByte(MSG_ENTITY, (dt & 0xFF00) / 256 + 192);
279 WriteByte(MSG_ENTITY, (dt & 0x00FF));
285 WriteCoord(MSG_ENTITY, self.origin_x);
286 WriteCoord(MSG_ENTITY, self.origin_y);
287 WriteCoord(MSG_ENTITY, self.origin_z);
292 WriteByte(MSG_ENTITY, self.team);
293 WriteByte(MSG_ENTITY, self.rule);
297 WriteString(MSG_ENTITY, self.model1);
300 WriteString(MSG_ENTITY, self.model2);
303 WriteString(MSG_ENTITY, self.model3);
307 WriteCoord(MSG_ENTITY, self.fade_time);
308 WriteCoord(MSG_ENTITY, self.teleport_time);
309 WriteShort(MSG_ENTITY, self.fade_rate); // maxdist
314 if(self.exteriormodeltoclient == to)
316 WriteByte(MSG_ENTITY, f);
321 WriteByte(MSG_ENTITY, self.cnt); // icon on radar
322 WriteByte(MSG_ENTITY, self.colormod_x * 255.0);
323 WriteByte(MSG_ENTITY, self.colormod_y * 255.0);
324 WriteByte(MSG_ENTITY, self.colormod_z * 255.0);
326 if(WaypointSprite_isteammate(self.owner, WaypointSprite_getviewentity(to)))
328 dt = (self.waypointsprite_helpmetime - time) / 0.1;
333 WriteByte(MSG_ENTITY, dt);
336 WriteByte(MSG_ENTITY, 0);
342 void WaypointSprite_Reset()
344 // if a WP wants to time out, let it time out immediately; other WPs ought to be reset/killed by their owners
346 if(self.fade_time) // there was there before: || g_keyhunt, do we really need this?
347 WaypointSprite_Kill(self);
350 entity WaypointSprite_Spawn(
351 string spr, // sprite
352 float lifetime, float maxdistance, // lifetime, max distance
353 entity ref, vector ofs, // position
354 entity showto, float t, // show to whom? Use a flag to indicate a team
355 entity own, .entity ownfield, // remove when own gets killed
356 float hideable, // true when it should be controlled by cl_hidewaypoints
357 float icon, vector rgb // initial icon and color
362 wp.classname = "sprite_waypoint";
363 wp.teleport_time = time + lifetime;
364 wp.fade_time = lifetime;
365 wp.exteriormodeltoclient = ref;
369 setorigin(wp, ref.origin + ofs);
376 wp.currentammo = hideable;
380 remove(own.ownfield);
382 wp.owned_by_field = ownfield;
384 wp.fade_rate = maxdistance;
385 wp.think = WaypointSprite_Think;
388 wp.customizeentityforclient = WaypointSprite_Customize;
389 wp.waypointsprite_visible_for_player = WaypointSprite_visible_for_player;
390 wp.reset2 = WaypointSprite_Reset;
393 Net_LinkEntity(wp, FALSE, 0, WaypointSprite_SendEntity);
397 entity WaypointSprite_SpawnFixed(
402 float icon, vector rgb // initial icon and color
405 return WaypointSprite_Spawn(spr, 0, 0, world, ofs, world, 0, own, ownfield, TRUE, icon, rgb);
408 .entity waypointsprite_deployed_fixed;
409 entity WaypointSprite_DeployFixed(
413 float icon, vector rgb // initial icon and color
416 float t, maxdistance;
422 maxdistance = waypointsprite_limitedrange;
425 return WaypointSprite_Spawn(spr, waypointsprite_deployed_lifetime, maxdistance, world, ofs, world, t, self, waypointsprite_deployed_fixed, FALSE, icon, rgb);
428 .entity waypointsprite_deployed_personal;
429 entity WaypointSprite_DeployPersonal(
432 float icon, vector rgb // initial icon and color
435 return WaypointSprite_Spawn(spr, 0, 0, world, ofs, world, 0, self, waypointsprite_deployed_personal, FALSE, icon, rgb);
438 .entity waypointsprite_attached;
439 .entity waypointsprite_attachedforcarrier;
440 entity WaypointSprite_Attach(
443 float icon, vector rgb // initial icon and color
446 float t, maxdistance;
447 if(self.waypointsprite_attachedforcarrier)
448 return world; // can't attach to FC
454 maxdistance = waypointsprite_limitedrange;
457 return WaypointSprite_Spawn(spr, waypointsprite_deployed_lifetime, maxdistance, self, '0 0 64', world, t, self, waypointsprite_attached, FALSE, icon, rgb);
460 entity WaypointSprite_AttachCarrier(
463 float icon, vector rgb // initial icon and color
467 WaypointSprite_Kill(carrier.waypointsprite_attached); // FC overrides attached
468 e = WaypointSprite_Spawn(spr, 0, 0, carrier, '0 0 64', world, carrier.team, carrier, waypointsprite_attachedforcarrier, FALSE, icon, rgb);
471 WaypointSprite_UpdateMaxHealth(e, '1 0 0' * healtharmor_maxdamage(start_health, start_armorvalue, autocvar_g_balance_armor_blockpercent) * 2);
472 WaypointSprite_UpdateHealth(e, '1 0 0' * healtharmor_maxdamage(carrier.health, carrier.armorvalue, autocvar_g_balance_armor_blockpercent));
477 void WaypointSprite_DetachCarrier(entity carrier)
479 WaypointSprite_Disown(carrier.waypointsprite_attachedforcarrier, waypointsprite_deadlifetime);
482 void WaypointSprite_ClearPersonal()
484 WaypointSprite_Kill(self.waypointsprite_deployed_personal);
487 void WaypointSprite_ClearOwned()
489 WaypointSprite_Kill(self.waypointsprite_deployed_fixed);
490 WaypointSprite_Kill(self.waypointsprite_deployed_personal);
491 WaypointSprite_Kill(self.waypointsprite_attached);
494 void WaypointSprite_PlayerDead()
496 WaypointSprite_Disown(self.waypointsprite_attached, waypointsprite_deadlifetime);
497 WaypointSprite_DetachCarrier(self);
500 void WaypointSprite_PlayerGone()
502 WaypointSprite_Disown(self.waypointsprite_deployed_fixed, waypointsprite_deadlifetime);
503 WaypointSprite_Kill(self.waypointsprite_deployed_personal);
504 WaypointSprite_Disown(self.waypointsprite_attached, waypointsprite_deadlifetime);
505 WaypointSprite_DetachCarrier(self);