3 #include <common/mapobjects/target/music.qh>
4 #include <common/gamemodes/_mod.qh>
5 #include <server/items/items.qh>
7 void buffs_DelayedInit(entity this);
9 AUTOCVAR(g_buffs, int, -1, "Enable buffs, -1: enabled but no auto location or replacing powerups, 1: enabled and can replace them");
11 REGISTER_MUTATOR(buffs, autocvar_g_buffs)
15 if(autocvar_g_buffs > 0)
16 InitializeEntity(NULL, buffs_DelayedInit, INITPRIO_FINDTARGET);
20 bool buffs_BuffModel_Customize(entity this, entity client)
22 entity player = WaypointSprite_getviewentity(client);
23 entity myowner = this.owner;
25 if(myowner.alpha <= 0.5 && DIFF_TEAM(player, myowner) && myowner.alpha != 0)
28 if(MUTATOR_CALLHOOK(BuffModel_Customize, this, player))
33 // somewhat hide the model, but keep the glow
39 this.effects = EF_FULLBRIGHT | EF_LOWPRECISION;
45 void buffs_BuffModel_Spawn(entity player)
47 player.buff_model = new(buff_model);
48 setmodel(player.buff_model, MDL_BUFF);
49 setsize(player.buff_model, '0 0 -40', '0 0 40');
50 setattachment(player.buff_model, player, "");
51 setorigin(player.buff_model, '0 0 1' * (player.buff_model.maxs.z * 1));
52 player.buff_model.owner = player;
53 player.buff_model.scale = 0.7;
54 player.buff_model.pflags = PFLAGS_FULLDYNAMIC;
55 player.buff_model.light_lev = 200;
56 setcefc(player.buff_model, buffs_BuffModel_Customize);
59 void buffs_BuffModel_Remove(entity player)
62 delete(player.buff_model);
63 player.buff_model = NULL;
66 vector buff_GlowColor(entity buff)
68 //if(buff.team_forced) { return Team_ColorRGB(buff.team_forced); }
72 void buff_Effect(entity player, string eff)
74 if(!autocvar_g_buffs_effects) { return; }
76 if(time >= player.buff_effect_delay)
78 Send_Effect_(eff, player.origin + ((player.mins + player.maxs) * 0.5), '0 0 0', 1);
79 player.buff_effect_delay = time + 0.05; // prevent spam
84 bool buff_Waypoint_visible_for_player(entity this, entity player, entity view)
86 if(!this.owner.buff_active && !this.owner.buff_activetime)
89 if (STAT(BUFFS, view))
91 return CS(view).cvar_cl_buffs_autoreplace == false || STAT(BUFFS, view) != STAT(BUFFS, this.owner);
94 return WaypointSprite_visible_for_player(this, player, view);
97 void buff_Waypoint_Spawn(entity e)
99 if(autocvar_g_buffs_waypoint_distance <= 0) return;
101 entity buff = buff_FirstFromFlags(STAT(BUFFS, e));
102 entity wp = WaypointSprite_Spawn(WP_Buff, 0, autocvar_g_buffs_waypoint_distance, e, '0 0 1' * e.maxs.z, NULL, e.team_forced, e, buff_waypoint, true, RADARICON_Buff);
103 wp.wp_extra = buff.m_id;
104 WaypointSprite_UpdateTeamRadar(e.buff_waypoint, RADARICON_Buff, e.glowmod);
105 e.buff_waypoint.waypointsprite_visible_for_player = buff_Waypoint_visible_for_player;
108 void buff_SetCooldown(entity this, float cd)
112 if(!this.buff_waypoint)
113 buff_Waypoint_Spawn(this);
115 if(this.buff_waypoint)
116 WaypointSprite_UpdateBuildFinished(this.buff_waypoint, time + cd);
118 this.buff_activetime = cd;
119 this.buff_active = !cd;
122 void buff_Respawn(entity this)
124 if(game_stopped) return;
126 vector oldbufforigin = this.origin;
127 this.velocity = '0 0 200';
129 if(!MoveToRandomMapLocation(this, DPCONTENTS_SOLID | DPCONTENTS_CORPSE | DPCONTENTS_PLAYERCLIP, DPCONTENTS_SLIME | DPCONTENTS_LAVA | DPCONTENTS_SKY | DPCONTENTS_BODY | DPCONTENTS_DONOTENTER, Q3SURFACEFLAG_SKY,
130 ((autocvar_g_buffs_random_location_attempts > 0) ? autocvar_g_buffs_random_location_attempts : 10), 1024, 256))
132 entity spot = SelectSpawnPoint(this, true);
133 setorigin(this, spot.origin);
134 this.velocity = ((randomvec() * 100) + '0 0 200');
135 this.angles = spot.angles;
138 tracebox(this.origin, this.mins * 1.5, this.maxs * 1.5, this.origin, MOVE_NOMONSTERS, this);
140 setorigin(this, trace_endpos); // attempt to unstick
142 set_movetype(this, MOVETYPE_TOSS);
144 makevectors(this.angles);
145 this.angles = '0 0 0';
146 if(autocvar_g_buffs_random_lifetime > 0)
147 this.lifetime = time + autocvar_g_buffs_random_lifetime;
149 Send_Effect(EFFECT_ELECTRO_COMBO, oldbufforigin + ((this.mins + this.maxs) * 0.5), '0 0 0', 1);
150 Send_Effect(EFFECT_ELECTRO_COMBO, CENTER_OR_VIEWOFS(this), '0 0 0', 1);
152 WaypointSprite_Ping(this.buff_waypoint);
154 sound(this, CH_TRIGGER, SND_KA_RESPAWN, VOL_BASE, ATTEN_NONE); // ATTEN_NONE (it's a sound intended to be heard anywhere)
157 void buff_Touch(entity this, entity toucher)
159 if(game_stopped) return;
161 if(ITEM_TOUCH_NEEDKILL())
167 if(!this.buff_active)
170 if(MUTATOR_CALLHOOK(BuffTouch, this, toucher))
172 toucher = M_ARGV(1, entity);
174 if(!IS_PLAYER(toucher))
175 return; // incase mutator changed toucher
177 if((this.team_forced && toucher.team != this.team_forced)
178 || (STAT(FROZEN, toucher))
180 || (time < PS(toucher).buff_shield)
187 if (STAT(BUFFS, toucher))
189 if (CS(toucher).cvar_cl_buffs_autoreplace && STAT(BUFFS, toucher) != STAT(BUFFS, this))
191 // TODO: lost-gained notification for this case
192 int buffid = buff_FirstFromFlags(STAT(BUFFS, toucher)).m_id;
193 Send_Notification(NOTIF_ONE, toucher, MSG_INFO, INFO_ITEM_BUFF_LOST, toucher.netname, buffid);
194 if(!IS_INDEPENDENT_PLAYER(toucher))
195 Send_Notification(NOTIF_ALL_EXCEPT, toucher, MSG_INFO, INFO_ITEM_BUFF_LOST, toucher.netname, buffid);
197 STAT(BUFFS, toucher) = 0;
198 //sound(toucher, CH_TRIGGER, SND_BUFF_LOST, VOL_BASE, ATTN_NORM);
200 else { return; } // do nothing
203 this.owner = toucher;
204 this.buff_active = false;
206 entity thebuff = buff_FirstFromFlags(STAT(BUFFS, this));
207 Send_Notification(NOTIF_ONE, toucher, MSG_MULTI, ITEM_BUFF_GOT, thebuff.m_id);
208 if(!IS_INDEPENDENT_PLAYER(toucher))
209 Send_Notification(NOTIF_ALL_EXCEPT, toucher, MSG_INFO, INFO_ITEM_BUFF, toucher.netname, thebuff.m_id);
211 Send_Effect(EFFECT_ITEM_PICKUP, CENTER_OR_VIEWOFS(this), '0 0 0', 1);
212 sound(toucher, CH_TRIGGER, SND_SHIELD_RESPAWN, VOL_BASE, ATTN_NORM);
213 STAT(BUFFS, toucher) |= (STAT(BUFFS, this));
214 STAT(LAST_PICKUP, toucher) = time;
215 float bufftime = ((this.count) ? this.count : thebuff.m_time(thebuff));
217 STAT(BUFF_TIME, toucher) = min(time + bufftime, max(STAT(BUFF_TIME, toucher), time) + bufftime);
220 float buff_Available(entity buff)
222 if (buff == BUFF_Null)
224 if (buff == BUFF_AMMO && ((start_items & IT_UNLIMITED_AMMO) || cvar("g_melee_only")))
226 if (buff == BUFF_VAMPIRE && cvar("g_vampire"))
228 return cvar(strcat("g_buffs_", buff.netname));
233 void buff_NewType(entity ent)
235 RandomSelection_Init();
236 FOREACH(Buffs, buff_Available(it),
238 // if it's already been chosen, give it a lower priority
239 float myseencount = (it.buff_seencount > 0) ? it.buff_seencount : 1; // no division by zero please!
240 RandomSelection_AddEnt(it, max(0.2, 1 / myseencount), 1);
242 entity newbuff = RandomSelection_chosen_ent;
243 newbuff.buff_seencount += 1; // lower chances of seeing this buff again soon
244 STAT(BUFFS, ent) = newbuff.m_itemid;
247 void buff_Think(entity this)
249 if(this.buff_waypoint && autocvar_g_buffs_waypoint_distance <= 0)
250 WaypointSprite_Kill(this.buff_waypoint);
252 if(STAT(BUFFS, this) != this.oldbuffs)
254 entity buff = buff_FirstFromFlags(STAT(BUFFS, this));
255 this.color = buff.m_color;
256 this.glowmod = buff_GlowColor(buff);
257 this.skin = buff.m_skin;
259 setmodel(this, MDL_BUFF);
260 setsize(this, BUFF_MIN, BUFF_MAX);
262 if(this.buff_waypoint)
264 //WaypointSprite_Disown(this.buff_waypoint, 1);
265 WaypointSprite_Kill(this.buff_waypoint);
266 buff_Waypoint_Spawn(this);
267 if(this.buff_activetime)
268 WaypointSprite_UpdateBuildFinished(this.buff_waypoint, time + this.buff_activetime - frametime);
271 this.oldbuffs = STAT(BUFFS, this);
275 if((round_handler_IsActive() && round_handler_IsRoundStarted()) || time >= game_starttime)
276 if(!this.buff_activetime_updated)
278 buff_SetCooldown(this, this.buff_activetime);
279 this.buff_activetime_updated = true;
282 if(!this.buff_active && !this.buff_activetime)
283 if(!this.owner || STAT(FROZEN, this.owner) || IS_DEAD(this.owner) || !this.owner.iscreature || this.owner.vehicle || !(STAT(BUFFS, this.owner) & STAT(BUFFS, this)) || this.pickup_anyway > 0 || (this.pickup_anyway >= 0 && autocvar_g_buffs_pickup_anyway))
285 buff_SetCooldown(this, autocvar_g_buffs_cooldown_respawn + frametime);
287 if(autocvar_g_buffs_randomize && (!teamplay || autocvar_g_buffs_randomize_teamplay))
290 if(autocvar_g_buffs_random_location || (this.spawnflags & 64))
294 if(this.buff_activetime)
296 if((round_handler_IsActive() && round_handler_IsRoundStarted()) || time >= game_starttime)
298 this.buff_activetime = max(0, this.buff_activetime - frametime);
300 if(!this.buff_activetime)
302 this.buff_active = true;
303 sound(this, CH_TRIGGER, SND_STRENGTH_RESPAWN, VOL_BASE, ATTN_NORM);
304 Send_Effect(EFFECT_ITEM_RESPAWN, CENTER_OR_VIEWOFS(this), '0 0 0', 1);
310 if(this.team_forced && !this.buff_waypoint)
311 buff_Waypoint_Spawn(this);
313 if(this.lifetime && time >= this.lifetime)
317 this.nextthink = time;
318 //this.angles_y = time * 110.1;
321 void buff_Waypoint_Reset(entity this)
323 WaypointSprite_Kill(this.buff_waypoint);
325 if(this.buff_activetime) { buff_Waypoint_Spawn(this); }
328 void buff_Reset(entity this)
330 if(autocvar_g_buffs_randomize && (!teamplay || autocvar_g_buffs_randomize_teamplay))
333 buff_SetCooldown(this, autocvar_g_buffs_cooldown_activate);
334 buff_Waypoint_Reset(this);
335 this.buff_activetime_updated = false;
337 if(autocvar_g_buffs_random_location || (this.spawnflags & 64))
341 bool buff_Customize(entity this, entity client)
343 entity player = WaypointSprite_getviewentity(client);
344 if(!this.buff_active || (this.team_forced && player.team != this.team_forced))
347 if(this.effects & EF_FULLBRIGHT) { this.effects &= ~(EF_FULLBRIGHT); }
353 if(!(this.effects & EF_FULLBRIGHT)) { this.effects |= EF_FULLBRIGHT; }
354 this.light_lev = 220 + 36 * sin(time);
355 this.pflags = PFLAGS_FULLDYNAMIC;
360 void buff_Delete(entity this)
362 WaypointSprite_Kill(this.buff_waypoint);
366 void buff_Init(entity this)
368 if(!cvar("g_buffs")) { delete(this); return; }
370 entity buff = buff_FirstFromFlags(STAT(BUFFS, this));
372 if(!STAT(BUFFS, this) || !buff_Available(buff))
375 this.classname = "item_buff";
376 this.solid = SOLID_TRIGGER;
377 this.flags = FL_ITEM;
378 this.bot_pickup = true;
379 this.bot_pickupevalfunc = generic_pickupevalfunc;
380 this.bot_pickupbasevalue = 1000;
381 IL_PUSH(g_items, this);
382 setthink(this, buff_Think);
383 settouch(this, buff_Touch);
384 this.reset = buff_Reset;
385 this.nextthink = time + 0.1;
387 set_movetype(this, MOVETYPE_TOSS);
389 this.skin = buff.m_skin;
390 this.effects = EF_FULLBRIGHT | EF_STARDUST | EF_NOSHADOW;
391 this.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY;
392 setcefc(this, buff_Customize);
393 //this.gravity = 100;
394 this.color = buff.m_color;
395 this.glowmod = buff_GlowColor(this);
396 buff_SetCooldown(this, autocvar_g_buffs_cooldown_activate + max(0, game_starttime - time));
397 this.buff_active = !this.buff_activetime;
398 this.pflags = PFLAGS_FULLDYNAMIC;
399 this.dtor = buff_Delete;
401 if(this.spawnflags & 1)
405 set_movetype(this, MOVETYPE_NONE); // reset by random location
407 setmodel(this, MDL_BUFF);
408 setsize(this, BUFF_MIN, BUFF_MAX);
410 if(cvar("g_buffs_random_location") || (this.spawnflags & 64))
414 void buff_Init_Compat(entity ent, entity replacement)
418 if (ent.spawnflags & 2)
419 ent.team_forced = NUM_TEAM_1;
420 else if (ent.spawnflags & 4)
421 ent.team_forced = NUM_TEAM_2;
424 STAT(BUFFS, ent) = replacement.m_itemid;
429 void buff_SpawnReplacement(entity ent, entity old)
431 setorigin(ent, old.origin);
432 ent.angles = old.angles;
433 ent.noalign = Item_ShouldKeepPosition(old);
438 void buff_Vengeance_DelayedDamage(entity this)
441 Damage(this.enemy, this.owner, this.owner, this.dmg, DEATH_BUFF.m_id, DMG_NOWEP, this.enemy.origin, '0 0 0');
447 // note: only really useful in teamplay
448 void buff_Medic_Heal(entity this)
450 FOREACH_CLIENT(IS_PLAYER(it) && it != this && vdist(it.origin - this.origin, <=, autocvar_g_buffs_medic_heal_range),
452 if (DIFF_TEAM(it, this))
456 float hp = GetResource(it, RES_HEALTH);
457 if(hp >= autocvar_g_balance_health_regenstable)
461 Send_Effect(EFFECT_HEALING, it.origin, '0 0 0', 1);
462 SetResource(it, RES_HEALTH, bound(0, hp + autocvar_g_buffs_medic_heal_amount, autocvar_g_balance_health_regenstable));
466 float buff_Inferno_CalculateTime(float damg, float offset_x, float offset_y, float intersect_x, float intersect_y, float base)
468 return offset_y + (intersect_y - offset_y) * logn(((damg - offset_x) * ((base - 1) / intersect_x)) + 1, base);
472 MUTATOR_HOOKFUNCTION(buffs, Damage_Calculate)
474 entity frag_attacker = M_ARGV(1, entity);
475 entity frag_target = M_ARGV(2, entity);
476 float frag_deathtype = M_ARGV(3, float);
477 float frag_damage = M_ARGV(4, float);
478 vector frag_force = M_ARGV(6, vector);
480 if(frag_deathtype == DEATH_BUFF.m_id) { return; }
482 if(STAT(BUFFS, frag_target) & BUFF_RESISTANCE.m_itemid)
484 float reduced = frag_damage * autocvar_g_buffs_resistance_blockpercent;
485 frag_damage = bound(0, frag_damage - reduced, frag_damage);
488 if(STAT(BUFFS, frag_target) & BUFF_SPEED.m_itemid)
489 if(frag_target != frag_attacker)
490 frag_damage *= autocvar_g_buffs_speed_damage_take;
492 if(STAT(BUFFS, frag_target) & BUFF_MEDIC.m_itemid)
493 if((GetResource(frag_target, RES_HEALTH) - frag_damage) <= 0)
494 if(!ITEM_DAMAGE_NEEDKILL(frag_deathtype))
496 if(random() <= autocvar_g_buffs_medic_survive_chance)
497 frag_damage = max(5, GetResource(frag_target, RES_HEALTH) - autocvar_g_buffs_medic_survive_health);
499 if(STAT(BUFFS, frag_target) & BUFF_JUMP.m_itemid)
500 if(frag_deathtype == DEATH_FALL.m_id)
503 if(STAT(BUFFS, frag_target) & BUFF_VENGEANCE.m_itemid)
505 if(frag_attacker != frag_target)
506 if(!ITEM_DAMAGE_NEEDKILL(frag_deathtype))
508 entity dmgent = new(dmgent);
510 dmgent.dmg = frag_damage * autocvar_g_buffs_vengeance_damage_multiplier;
511 dmgent.enemy = frag_attacker;
512 dmgent.owner = frag_target;
513 setthink(dmgent, buff_Vengeance_DelayedDamage);
514 dmgent.nextthink = time + 0.1;
517 if(STAT(BUFFS, frag_target) & BUFF_BASH.m_itemid)
518 if(frag_attacker != frag_target)
519 frag_force = '0 0 0';
521 if(STAT(BUFFS, frag_attacker) & BUFF_BASH.m_itemid)
524 if(frag_attacker == frag_target)
525 frag_force *= autocvar_g_buffs_bash_force_self;
527 frag_force *= autocvar_g_buffs_bash_force;
530 if(STAT(BUFFS, frag_attacker) & BUFF_DISABILITY.m_itemid)
531 if(frag_target != frag_attacker)
532 frag_target.buff_disability_time = time + autocvar_g_buffs_disability_slowtime;
534 if(STAT(BUFFS, frag_target) & BUFF_INFERNO.m_itemid)
536 if(frag_deathtype == DEATH_FIRE.m_id)
538 if(frag_deathtype == DEATH_LAVA.m_id)
539 frag_damage *= 0.5; // TODO: cvarize?
542 if(STAT(BUFFS, frag_attacker) & BUFF_LUCK.m_itemid)
543 if(frag_attacker != frag_target)
544 if(autocvar_g_buffs_luck_damagemultiplier > 0)
545 if(random() <= autocvar_g_buffs_luck_chance)
546 frag_damage *= autocvar_g_buffs_luck_damagemultiplier;
548 if(STAT(BUFFS, frag_attacker) & BUFF_INFERNO.m_itemid)
549 if(frag_target != frag_attacker) {
550 float btime = buff_Inferno_CalculateTime(
553 autocvar_g_buffs_inferno_burntime_min_time,
554 autocvar_g_buffs_inferno_burntime_target_damage,
555 autocvar_g_buffs_inferno_burntime_target_time,
556 autocvar_g_buffs_inferno_burntime_factor
558 Fire_AddDamage(frag_target, frag_attacker, (frag_damage * autocvar_g_buffs_inferno_damagemultiplier), btime, DEATH_BUFF.m_id);
561 // this... is ridiculous (TODO: fix!)
562 if(STAT(BUFFS, frag_attacker) & BUFF_VAMPIRE.m_itemid)
563 if(!frag_target.vehicle)
564 if(!ITEM_DAMAGE_NEEDKILL(frag_deathtype))
565 if(!IS_DEAD(frag_target))
566 if(IS_PLAYER(frag_target) || IS_MONSTER(frag_target))
567 if(frag_attacker != frag_target)
568 if(!STAT(FROZEN, frag_target))
569 if(frag_target.takedamage)
570 if(DIFF_TEAM(frag_attacker, frag_target))
572 float amount = bound(0, frag_damage * autocvar_g_buffs_vampire_damage_steal,
573 GetResource(frag_target, RES_HEALTH));
574 GiveResourceWithLimit(frag_attacker, RES_HEALTH, amount, g_pickup_healthsmall_max);
575 if (GetResource(frag_target, RES_ARMOR))
577 amount = bound(0, frag_damage * autocvar_g_buffs_vampire_damage_steal,
578 GetResource(frag_target, RES_ARMOR));
579 GiveResourceWithLimit(frag_attacker, RES_ARMOR, amount, g_pickup_armorsmall_max);
583 M_ARGV(4, float) = frag_damage;
584 M_ARGV(6, vector) = frag_force;
587 MUTATOR_HOOKFUNCTION(buffs, PlayerSpawn)
589 entity player = M_ARGV(0, entity);
591 buffs_BuffModel_Remove(player);
593 // reset timers here to prevent them continuing after re-spawn
594 player.buff_disability_time = 0;
595 player.buff_disability_effect_time = 0;
598 MUTATOR_HOOKFUNCTION(buffs, PlayerPhysics_UpdateStats)
600 entity player = M_ARGV(0, entity);
601 // these automatically reset, no need to worry
603 if(STAT(BUFFS, player) & BUFF_SPEED.m_itemid)
604 STAT(MOVEVARS_HIGHSPEED, player) *= autocvar_g_buffs_speed_speed;
606 if(time < player.buff_disability_time)
607 STAT(MOVEVARS_HIGHSPEED, player) *= autocvar_g_buffs_disability_speed;
610 MUTATOR_HOOKFUNCTION(buffs, PlayerPhysics)
612 entity player = M_ARGV(0, entity);
613 // these automatically reset, no need to worry
615 if(STAT(BUFFS, player) & BUFF_JUMP.m_itemid)
616 STAT(MOVEVARS_JUMPVELOCITY, player) = autocvar_g_buffs_jump_height;
619 MUTATOR_HOOKFUNCTION(buffs, MonsterMove)
621 entity mon = M_ARGV(0, entity);
623 if(time < mon.buff_disability_time)
625 M_ARGV(1, float) *= autocvar_g_buffs_disability_speed; // run speed
626 M_ARGV(2, float) *= autocvar_g_buffs_disability_speed; // walk speed
630 MUTATOR_HOOKFUNCTION(buffs, PlayerDies)
632 entity frag_target = M_ARGV(2, entity);
634 if(STAT(BUFFS, frag_target))
636 int buffid = buff_FirstFromFlags(STAT(BUFFS, frag_target)).m_id;
637 if(!IS_INDEPENDENT_PLAYER(frag_target))
638 Send_Notification(NOTIF_ALL_EXCEPT, frag_target, MSG_INFO, INFO_ITEM_BUFF_LOST, frag_target.netname, buffid);
639 STAT(BUFFS, frag_target) = 0;
640 STAT(BUFF_TIME, frag_target) = 0;
642 buffs_BuffModel_Remove(frag_target);
646 MUTATOR_HOOKFUNCTION(buffs, PlayerUseKey, CBC_ORDER_FIRST)
648 if(MUTATOR_RETURNVALUE || game_stopped || !autocvar_g_buffs_drop) return;
650 entity player = M_ARGV(0, entity);
652 if(STAT(BUFFS, player))
654 int buffid = buff_FirstFromFlags(STAT(BUFFS, player)).m_id;
655 Send_Notification(NOTIF_ONE, player, MSG_MULTI, ITEM_BUFF_DROP, buffid);
656 if(!IS_INDEPENDENT_PLAYER(player))
657 Send_Notification(NOTIF_ALL_EXCEPT, player, MSG_INFO, INFO_ITEM_BUFF_LOST, player.netname, buffid);
659 STAT(BUFFS, player) = 0;
660 STAT(BUFF_TIME, player) = 0;
661 PS(player).buff_shield = time + max(0, autocvar_g_buffs_pickup_delay);
662 sound(player, CH_TRIGGER, SND_BUFF_LOST, VOL_BASE, ATTN_NORM);
667 MUTATOR_HOOKFUNCTION(buffs, ForbidThrowCurrentWeapon)
669 if(MUTATOR_RETURNVALUE || game_stopped) return;
670 entity player = M_ARGV(0, entity);
672 if(STAT(BUFFS, player) & BUFF_SWAPPER.m_itemid)
674 float best_distance = autocvar_g_buffs_swapper_range;
675 entity closest = NULL;
676 FOREACH_CLIENT(IS_PLAYER(it), {
677 if(!IS_DEAD(it) && !STAT(FROZEN, it) && !it.vehicle)
678 if(DIFF_TEAM(it, player))
680 float test = vlen2(player.origin - it.origin);
681 if(test <= best_distance * best_distance)
683 best_distance = sqrt(test);
691 vector my_org, my_vel, my_ang, their_org, their_vel, their_ang;
693 my_org = player.origin;
694 my_vel = player.velocity;
695 my_ang = player.angles;
696 their_org = closest.origin;
697 their_vel = closest.velocity;
698 their_ang = closest.angles;
700 Drop_Special_Items(closest);
702 MUTATOR_CALLHOOK(PortalTeleport, player); // initiate flag dropper
704 setorigin(player, their_org);
705 setorigin(closest, my_org);
707 closest.velocity = my_vel;
708 closest.angles = my_ang;
709 if (IS_BOT_CLIENT(closest))
711 closest.v_angle = closest.angles;
712 bot_aim_reset(closest);
714 closest.fixangle = true;
715 closest.oldorigin = my_org;
716 closest.oldvelocity = my_vel;
717 player.velocity = their_vel;
718 player.angles = their_ang;
719 if (IS_BOT_CLIENT(player))
721 player.v_angle = player.angles;
722 bot_aim_reset(player);
724 player.fixangle = true;
725 player.oldorigin = their_org;
726 player.oldvelocity = their_vel;
728 // set pusher so player gets the kill if they fall into void
729 closest.pusher = player;
730 closest.pushltime = time + autocvar_g_maxpushtime;
731 closest.istypefrag = PHYS_INPUT_BUTTON_CHAT(closest);
733 Send_Effect(EFFECT_ELECTRO_COMBO, their_org, '0 0 0', 1);
734 Send_Effect(EFFECT_ELECTRO_COMBO, my_org, '0 0 0', 1);
736 sound(player, CH_TRIGGER, SND_KA_RESPAWN, VOL_BASE, ATTEN_NORM);
737 sound(closest, CH_TRIGGER, SND_KA_RESPAWN, VOL_BASE, ATTEN_NORM);
739 // TODO: add a counter to handle how many times one can teleport, and a delay to prevent spam
740 STAT(BUFFS, player) = 0;
746 bool buffs_RemovePlayer(entity player)
748 buffs_BuffModel_Remove(player);
750 // also reset timers here to prevent them continuing after spectating
751 player.buff_disability_time = 0;
752 player.buff_disability_effect_time = 0;
756 MUTATOR_HOOKFUNCTION(buffs, MakePlayerObserver) { entity player = M_ARGV(0, entity); return buffs_RemovePlayer(player); }
757 MUTATOR_HOOKFUNCTION(buffs, ClientDisconnect) { entity player = M_ARGV(0, entity); return buffs_RemovePlayer(player); }
759 MUTATOR_HOOKFUNCTION(buffs, CustomizeWaypoint)
761 entity wp = M_ARGV(0, entity);
762 entity player = M_ARGV(1, entity);
764 entity e = WaypointSprite_getviewentity(player);
766 // if you have the invisibility powerup, sprites ALWAYS are restricted to your team
767 // but only apply this to real players, not to spectators
768 if((wp.owner.flags & FL_CLIENT) && (STAT(BUFFS, wp.owner) & BUFF_INVISIBLE.m_itemid) && (e == player))
769 if(DIFF_TEAM(wp.owner, e))
773 MUTATOR_HOOKFUNCTION(buffs, FilterItem)
775 if(autocvar_g_buffs < 0)
776 return false; // no auto replacing of entities in this mode
778 entity item = M_ARGV(0, entity);
780 if(autocvar_g_buffs_replace_powerups)
782 switch(item.classname)
784 case "item_strength":
788 buff_SpawnReplacement(e, item);
797 MUTATOR_HOOKFUNCTION(buffs, WeaponRateFactor)
799 entity player = M_ARGV(1, entity);
801 if(STAT(BUFFS, player) & BUFF_SPEED.m_itemid)
802 M_ARGV(0, float) *= autocvar_g_buffs_speed_rate;
804 if(time < player.buff_disability_time)
805 M_ARGV(0, float) *= autocvar_g_buffs_disability_rate;
808 MUTATOR_HOOKFUNCTION(buffs, WeaponSpeedFactor)
810 entity player = M_ARGV(1, entity);
812 if(STAT(BUFFS, player) & BUFF_SPEED.m_itemid)
813 M_ARGV(0, float) *= autocvar_g_buffs_speed_weaponspeed;
815 if(time < player.buff_disability_time)
816 M_ARGV(0, float) *= autocvar_g_buffs_disability_weaponspeed;
819 .bool buff_flight_crouchheld;
821 MUTATOR_HOOKFUNCTION(buffs, PlayerPreThink)
823 entity player = M_ARGV(0, entity);
825 if(game_stopped || IS_DEAD(player) || frametime || !IS_PLAYER(player)) return;
827 if(STAT(BUFFS, player) & BUFF_FLIGHT.m_itemid)
829 if(!PHYS_INPUT_BUTTON_CROUCH(player))
830 player.buff_flight_crouchheld = false;
831 else if(!player.buff_flight_crouchheld)
833 player.buff_flight_crouchheld = true;
834 player.gravity *= -1;
838 if(time < player.buff_disability_time)
839 if(time >= player.buff_disability_effect_time)
841 Send_Effect(EFFECT_SMOKING, player.origin + ((player.mins + player.maxs) * 0.5), '0 0 0', 1);
842 player.buff_disability_effect_time = time + 0.5;
845 // handle buff lost status
846 // 1: notify everyone else
847 // 2: notify carrier as well
850 if(STAT(BUFF_TIME, player) && STAT(BUFFS, player))
851 if(time >= STAT(BUFF_TIME, player))
853 STAT(BUFF_TIME, player) = 0;
857 if(STAT(FROZEN, player)) { buff_lost = 1; }
861 if(STAT(BUFFS, player))
863 int buffid = buff_FirstFromFlags(STAT(BUFFS, player)).m_id;
866 Send_Notification(NOTIF_ONE, player, MSG_MULTI, ITEM_BUFF_DROP, buffid); // TODO: special timeout message?
867 sound(player, CH_TRIGGER, SND_BUFF_LOST, VOL_BASE, ATTN_NORM);
869 else if(!IS_INDEPENDENT_PLAYER(player))
870 Send_Notification(NOTIF_ALL_EXCEPT, player, MSG_INFO, INFO_ITEM_BUFF_LOST, player.netname, buffid);
871 STAT(BUFFS, player) = 0;
872 PS(player).buff_shield = time + max(0, autocvar_g_buffs_pickup_delay); // always put in a delay, even if small
876 if(STAT(BUFFS, player) & BUFF_MAGNET.m_itemid)
879 IL_EACH(g_items, it.itemdef,
882 pickup_size = '1 1 1' * autocvar_g_buffs_magnet_range_buff;
884 pickup_size = '1 1 1' * autocvar_g_buffs_magnet_range_item;
886 if(boxesoverlap(player.absmin - pickup_size, player.absmax + pickup_size, it.absmin, it.absmax))
889 gettouch(it)(it, player);
894 if(STAT(BUFFS, player) & BUFF_AMMO.m_itemid)
896 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
898 .entity weaponentity = weaponentities[slot];
899 if(player.(weaponentity).clip_size)
900 player.(weaponentity).clip_load = player.(weaponentity).(weapon_load[player.(weaponentity).m_switchweapon.m_id]) = player.(weaponentity).clip_size;
904 if((STAT(BUFFS, player) & BUFF_INVISIBLE.m_itemid) && (player.oldbuffs & BUFF_INVISIBLE.m_itemid))
905 player.alpha = ((autocvar_g_buffs_invisible_alpha) ? autocvar_g_buffs_invisible_alpha : -1); // powerups reset alpha, so we must enforce this (TODO)
907 if(STAT(BUFFS, player) & BUFF_MEDIC.m_itemid)
908 if(teamplay && time >= player.buff_medic_healtime)
910 buff_Medic_Heal(player);
911 player.buff_medic_healtime = time + autocvar_g_buffs_medic_heal_delay;
914 #define BUFF_ONADD(b) if ( (STAT(BUFFS, player) & (b).m_itemid) && !(player.oldbuffs & (b).m_itemid))
915 #define BUFF_ONREM(b) if (!(STAT(BUFFS, player) & (b).m_itemid) && (player.oldbuffs & (b).m_itemid))
917 if(STAT(BUFFS, player) != player.oldbuffs)
919 entity buff = buff_FirstFromFlags(STAT(BUFFS, player));
920 float bufftime = buff != BUFF_Null ? buff.m_time(buff) : 0;
921 if(STAT(BUFF_TIME, player) <= time) // if the player still has a buff countdown, don't reset it!
922 STAT(BUFF_TIME, player) = (bufftime) ? time + bufftime : 0;
924 BUFF_ONADD(BUFF_AMMO)
926 player.buff_ammo_prev_infitems = (player.items & IT_UNLIMITED_AMMO);
927 player.items |= IT_UNLIMITED_AMMO;
929 if(STAT(BUFFS, player) & BUFF_AMMO.m_itemid)
931 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
933 .entity weaponentity = weaponentities[slot];
934 if(player.(weaponentity).clip_load)
935 player.(weaponentity).buff_ammo_prev_clipload = player.(weaponentity).clip_load;
936 if(player.(weaponentity).clip_size)
937 player.(weaponentity).clip_load = player.(weaponentity).(weapon_load[player.(weaponentity).m_switchweapon.m_id]) = player.(weaponentity).clip_size;
942 BUFF_ONREM(BUFF_AMMO)
944 if(player.buff_ammo_prev_infitems)
945 player.items |= IT_UNLIMITED_AMMO;
947 player.items &= ~IT_UNLIMITED_AMMO;
949 if(STAT(BUFFS, player) & BUFF_AMMO.m_itemid)
951 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
953 .entity weaponentity = weaponentities[slot];
954 if(player.(weaponentity).buff_ammo_prev_clipload)
955 player.(weaponentity).clip_load = player.(weaponentity).buff_ammo_prev_clipload;
960 BUFF_ONADD(BUFF_INVISIBLE)
962 if(time < STAT(STRENGTH_FINISHED, player) && MUTATOR_IS_ENABLED(mutator_instagib))
963 player.buff_invisible_prev_alpha = default_player_alpha; // we don't want to save the powerup's alpha, as player may lose the powerup while holding the buff
965 player.buff_invisible_prev_alpha = player.alpha;
966 player.alpha = autocvar_g_buffs_invisible_alpha;
969 BUFF_ONREM(BUFF_INVISIBLE)
971 if(time < STAT(STRENGTH_FINISHED, player) && MUTATOR_IS_ENABLED(mutator_instagib))
972 player.alpha = autocvar_g_instagib_invis_alpha;
974 player.alpha = player.buff_invisible_prev_alpha;
977 BUFF_ONADD(BUFF_FLIGHT)
979 player.buff_flight_oldgravity = player.gravity;
984 BUFF_ONREM(BUFF_FLIGHT)
985 player.gravity = ((player.trigger_gravity_check) ? player.trigger_gravity_check.enemy.gravity : player.buff_flight_oldgravity);
987 player.oldbuffs = STAT(BUFFS, player);
988 if(STAT(BUFFS, player))
990 if(!player.buff_model)
991 buffs_BuffModel_Spawn(player);
993 player.buff_model.color = buff.m_color;
994 player.buff_model.glowmod = buff_GlowColor(player.buff_model);
995 player.buff_model.skin = buff.m_skin;
997 player.effects |= EF_NOSHADOW;
1001 buffs_BuffModel_Remove(player);
1003 player.effects &= ~(EF_NOSHADOW);
1007 if(player.buff_model)
1009 player.buff_model.effects = player.effects;
1010 player.buff_model.effects |= EF_LOWPRECISION;
1011 player.buff_model.effects = player.buff_model.effects & EFMASK_CHEAP; // eat performance
1013 player.buff_model.alpha = player.alpha;
1020 MUTATOR_HOOKFUNCTION(buffs, SpectateCopy)
1022 entity spectatee = M_ARGV(0, entity);
1023 entity client = M_ARGV(1, entity);
1025 STAT(BUFFS, client) = STAT(BUFFS, spectatee);
1026 STAT(BUFF_TIME, client) = STAT(BUFF_TIME, spectatee);
1029 MUTATOR_HOOKFUNCTION(buffs, PlayerRegen)
1031 entity player = M_ARGV(0, entity);
1033 if(STAT(BUFFS, player) & BUFF_MEDIC.m_itemid)
1035 M_ARGV(2, float) = autocvar_g_buffs_medic_rot; // rot_mod
1036 M_ARGV(4, float) = M_ARGV(1, float) = autocvar_g_buffs_medic_max; // limit_mod = max_mod
1037 M_ARGV(2, float) = autocvar_g_buffs_medic_regen; // regen_mod
1040 if(STAT(BUFFS, player) & BUFF_SPEED.m_itemid)
1041 M_ARGV(2, float) = autocvar_g_buffs_speed_regen; // regen_mod
1044 REPLICATE(cvar_cl_buffs_autoreplace, bool, "cl_buffs_autoreplace");
1046 MUTATOR_HOOKFUNCTION(buffs, BuildMutatorsString)
1048 if(autocvar_g_buffs > 0) // only report as a mutator if they're enabled
1049 M_ARGV(0, string) = strcat(M_ARGV(0, string), ":Buffs");
1052 MUTATOR_HOOKFUNCTION(buffs, BuildMutatorsPrettyString)
1054 if(autocvar_g_buffs > 0)
1055 M_ARGV(0, string) = strcat(M_ARGV(0, string), ", Buffs");
1058 void buffs_DelayedInit(entity this)
1060 if(autocvar_g_buffs_spawn_count > 0)
1061 if(find(NULL, classname, "item_buff") == NULL)
1064 for(i = 0; i < autocvar_g_buffs_spawn_count; ++i)
1067 e.spawnflags |= 64; // always randomize
1068 e.velocity = randomvec() * 250; // this gets reset anyway if random location works