3 #include "items/_mod.qh"
7 #include "../server/bot/api.qh"
9 #include <server/mutators/_mod.qh>
11 #include "../server/weapons/common.qh"
12 #include "../server/weapons/selection.qh"
13 #include "../server/weapons/weaponsystem.qh"
15 #include "constants.qh"
16 #include <common/deathtypes/all.qh>
17 #include <common/notifications/all.qh>
18 #include "triggers/subs.qh"
21 #include <common/monsters/all.qh>
23 #include <common/weapons/_all.qh>
25 #include "../lib/warpzone/util_server.qh"
27 #include "physics/movetypes/movetypes.qh"
28 #include <common/weapons/_all.qh>
29 #include "../lib/csqcmodel/cl_model.qh"
30 #include "../lib/csqcmodel/common.qh"
33 REGISTER_NET_LINKED(ENT_CLIENT_ITEM)
36 bool autocvar_cl_ghost_items_vehicle = true;
38 void Item_SetAlpha(entity this)
40 bool veh_hud = (hud && autocvar_cl_ghost_items_vehicle);
42 if(!veh_hud && (this.ItemStatus & ITS_AVAILABLE))
45 this.colormod = '1 1 1';
46 this.glowmod = this.item_glowmod;
50 if (autocvar_cl_ghost_items_color)
52 this.alpha = autocvar_cl_ghost_items;
53 this.colormod = this.glowmod = autocvar_cl_ghost_items_color;
60 if(this.ItemStatus & ITS_STAYWEP)
62 this.colormod = this.glowmod = autocvar_cl_weapon_stay_color;
63 this.alpha = autocvar_cl_weapon_stay_alpha;
67 void ItemDraw(entity this)
71 Movetype_Physics_MatchServer(this, false);
73 { // For some reason avelocity gets set to '0 0 0' here ...
74 this.oldorigin = this.origin;
77 if(autocvar_cl_animate_items)
78 { // ... so reset it if animations are requested.
79 if(this.ItemStatus & ITS_ANIMATE1)
80 this.avelocity = '0 180 0';
82 if(this.ItemStatus & ITS_ANIMATE2)
83 this.avelocity = '0 -90 0';
87 else if (autocvar_cl_animate_items)
89 if(this.ItemStatus & ITS_ANIMATE1)
91 this.angles += this.avelocity * frametime;
92 setorigin(this, '0 0 10' + this.oldorigin + '0 0 8' * sin(time * 2));
95 if(this.ItemStatus & ITS_ANIMATE2)
97 this.angles += this.avelocity * frametime;
98 setorigin(this, '0 0 8' + this.oldorigin + '0 0 4' * sin(time * 3));
105 void ItemDrawSimple(entity this)
109 Movetype_Physics_MatchServer(this, false);
111 if(IS_ONGROUND(this))
118 void Item_PreDraw(entity this)
120 if(warpzone_warpzones_exist)
122 // just incase warpzones were initialized last, reset these
123 //this.alpha = 1; // alpha is already set by the draw function
124 this.drawmask = MASK_NORMAL;
128 vector org = getpropertyvec(VF_ORIGIN);
129 if(!checkpvs(org, this)) // this makes sense as long as we don't support recursive warpzones
131 else if(this.fade_start)
132 alph = bound(0, (this.fade_end - vlen(org - this.origin - 0.5 * (this.mins + this.maxs))) / (this.fade_end - this.fade_start), 1);
135 //printf("%v <-> %v\n", view_origin, this.origin + 0.5 * (this.mins + this.maxs));
136 if(!hud && (this.ItemStatus & ITS_AVAILABLE))
141 this.drawmask = MASK_NORMAL;
144 void ItemRemove(entity this)
150 NET_HANDLE(ENT_CLIENT_ITEM, bool isnew)
154 if(sf & ISF_LOCATION)
156 this.origin_x = ReadCoord();
157 this.origin_y = ReadCoord();
158 this.origin_z = ReadCoord();
159 setorigin(this, this.origin);
160 this.oldorigin = this.origin;
165 this.angles_x = ReadAngle();
166 this.angles_y = ReadAngle();
167 this.angles_z = ReadAngle();
172 float use_bigsize = ReadByte();
173 setsize(this, '-16 -16 0', (use_bigsize) ? '16 16 48' : '16 16 32');
176 if(sf & ISF_STATUS) // need to read/write status frist so model can handle simple, fb etc.
178 this.ItemStatus = ReadByte();
182 if(autocvar_cl_fullbright_items)
183 if(this.ItemStatus & ITS_ALLOWFB)
184 this.effects |= EF_FULLBRIGHT;
186 if(this.ItemStatus & ITS_POWERUP)
188 if(this.ItemStatus & ITS_AVAILABLE)
189 this.effects |= (EF_ADDITIVE | EF_FULLBRIGHT);
191 this.effects &= ~(EF_ADDITIVE | EF_FULLBRIGHT);
197 this.drawmask = MASK_NORMAL;
198 set_movetype(this, MOVETYPE_TOSS);
199 if (isnew) IL_PUSH(g_drawables, this);
200 this.draw = ItemDraw;
201 this.solid = SOLID_TRIGGER;
202 //this.flags |= FL_ITEM;
204 bool use_bigsize = ReadByte();
206 this.fade_end = ReadShort();
207 this.fade_start = ReadShort();
208 if(this.fade_start && !autocvar_cl_items_nofade)
209 setpredraw(this, Item_PreDraw);
215 string _fn = ReadString();
217 if(autocvar_cl_simple_items && (this.ItemStatus & ITS_ALLOWSI))
219 string _fn2 = substring(_fn, 0 , strlen(_fn) -4);
220 this.draw = ItemDrawSimple;
222 if(fexists(sprintf("%s%s.md3", _fn2, autocvar_cl_simpleitems_postfix)))
223 this.mdl = strzone(sprintf("%s%s.md3", _fn2, autocvar_cl_simpleitems_postfix));
224 else if(fexists(sprintf("%s%s.dpm", _fn2, autocvar_cl_simpleitems_postfix)))
225 this.mdl = strzone(sprintf("%s%s.dpm", _fn2, autocvar_cl_simpleitems_postfix));
226 else if(fexists(sprintf("%s%s.iqm", _fn2, autocvar_cl_simpleitems_postfix)))
227 this.mdl = strzone(sprintf("%s%s.iqm", _fn2, autocvar_cl_simpleitems_postfix));
228 else if(fexists(sprintf("%s%s.mdl", _fn2, autocvar_cl_simpleitems_postfix)))
229 this.mdl = strzone(sprintf("%s%s.mdl", _fn2, autocvar_cl_simpleitems_postfix));
232 this.draw = ItemDraw;
233 LOG_TRACE("Simple item requested for ", _fn, " but no model exists for it");
237 if(this.draw != ItemDrawSimple)
238 this.mdl = strzone(_fn);
242 LOG_TRACE("^1WARNING!^7 this.mdl is unset for item ", this.classname, ", tell tZork about this!");
244 precache_model(this.mdl);
245 _setmodel(this, this.mdl);
247 setsize(this, '-16 -16 0', (use_bigsize) ? '16 16 48' : '16 16 32');
250 if(sf & ISF_COLORMAP)
252 this.colormap = ReadShort();
253 this.item_glowmod_x = ReadByte() / 255.0;
254 this.item_glowmod_y = ReadByte() / 255.0;
255 this.item_glowmod_z = ReadByte() / 255.0;
261 this.pushable = true;
262 //this.angles = '0 0 0';
263 set_movetype(this, MOVETYPE_TOSS);
264 this.velocity_x = ReadCoord();
265 this.velocity_y = ReadCoord();
266 this.velocity_z = ReadCoord();
267 setorigin(this, this.oldorigin);
271 this.move_time = time;
272 this.spawntime = time;
275 this.move_time = max(this.move_time, time);
278 if(autocvar_cl_animate_items)
280 if(this.ItemStatus & ITS_ANIMATE1)
281 this.avelocity = '0 180 0';
283 if(this.ItemStatus & ITS_ANIMATE2)
284 this.avelocity = '0 -90 0';
287 this.entremove = ItemRemove;
295 bool ItemSend(entity this, entity to, int sf)
302 WriteHeader(MSG_ENTITY, ENT_CLIENT_ITEM);
303 WriteByte(MSG_ENTITY, sf);
305 //WriteByte(MSG_ENTITY, this.cnt);
306 if(sf & ISF_LOCATION)
308 WriteCoord(MSG_ENTITY, this.origin.x);
309 WriteCoord(MSG_ENTITY, this.origin.y);
310 WriteCoord(MSG_ENTITY, this.origin.z);
315 WriteAngle(MSG_ENTITY, this.angles_x);
316 WriteAngle(MSG_ENTITY, this.angles_y);
317 WriteAngle(MSG_ENTITY, this.angles_z);
322 Pickup p = this.itemdef;
323 WriteByte(MSG_ENTITY, p.instanceOfPowerup || p.instanceOfHealth || p.instanceOfArmor);
327 WriteByte(MSG_ENTITY, this.ItemStatus);
331 Pickup p = this.itemdef;
332 WriteByte(MSG_ENTITY, p.instanceOfPowerup || p.instanceOfHealth || p.instanceOfArmor);
333 WriteShort(MSG_ENTITY, this.fade_end);
334 WriteShort(MSG_ENTITY, this.fade_start);
337 LOG_TRACE("^1WARNING!^7 this.mdl is unset for item ", this.classname, "expect a crash just about now");
339 WriteString(MSG_ENTITY, this.mdl);
343 if(sf & ISF_COLORMAP)
345 WriteShort(MSG_ENTITY, this.colormap);
346 WriteByte(MSG_ENTITY, this.glowmod.x * 255.0);
347 WriteByte(MSG_ENTITY, this.glowmod.y * 255.0);
348 WriteByte(MSG_ENTITY, this.glowmod.z * 255.0);
353 WriteCoord(MSG_ENTITY, this.velocity.x);
354 WriteCoord(MSG_ENTITY, this.velocity.y);
355 WriteCoord(MSG_ENTITY, this.velocity.z);
361 void ItemUpdate(entity this)
363 this.oldorigin = this.origin;
364 this.SendFlags |= ISF_LOCATION;
367 void UpdateItemAfterTeleport(entity this)
369 if(getSendEntity(this) == ItemSend)
373 bool have_pickup_item(entity this)
375 if(this.itemdef.instanceOfPowerup)
377 if(autocvar_g_powerups > 0)
379 if(autocvar_g_powerups == 0)
384 if(autocvar_g_pickup_items > 0)
386 if(autocvar_g_pickup_items == 0)
389 if(this.weapons || (this.items & IT_AMMO)) // no item or ammo pickups in weaponarena
396 float Item_Customize()
398 if(this.spawnshieldtime)
400 if(this.weapons & ~other.weapons)
402 this.colormod = '0 0 0';
403 this.glowmod = this.colormod;
404 this.alpha = 0.5 + 0.5 * g_ghost_items; // halfway more alpha
411 this.colormod = stov(autocvar_g_ghost_items_color);
412 this.glowmod = this.colormod;
413 this.alpha = g_ghost_items;
422 void Item_Show (entity e, float mode)
424 e.effects &= ~(EF_ADDITIVE | EF_STARDUST | EF_FULLBRIGHT | EF_NODEPTHTEST);
425 e.ItemStatus &= ~ITS_STAYWEP;
428 // make the item look normal, and be touchable
430 e.solid = SOLID_TRIGGER;
431 e.spawnshieldtime = 1;
432 e.ItemStatus |= ITS_AVAILABLE;
436 // hide the item completely
437 e.model = string_null;
439 e.spawnshieldtime = 1;
440 e.ItemStatus &= ~ITS_AVAILABLE;
443 entity def = e.itemdef;
444 bool nostay = def.instanceOfWeaponPickup ? !!(def.m_weapon.weapons & WEPSET_SUPERWEAPONS) : false // no weapon-stay on superweapons
445 || e.team // weapon stay isn't supported for teamed weapons
447 if(def.instanceOfWeaponPickup && !nostay && g_weapon_stay)
449 // make the item translucent and not touchable
451 e.solid = SOLID_TRIGGER; // can STILL be picked up!
452 e.effects |= EF_STARDUST;
453 e.spawnshieldtime = 0; // field indicates whether picking it up may give you anything other than the weapon
454 e.ItemStatus |= (ITS_AVAILABLE | ITS_STAYWEP);
458 //setmodel(e, "null");
460 e.colormod = '0 0 0';
461 //e.glowmod = e.colormod;
462 e.spawnshieldtime = 1;
463 e.ItemStatus &= ~ITS_AVAILABLE;
466 if (e.items & ITEM_Strength.m_itemid || e.items & ITEM_Shield.m_itemid)
467 e.ItemStatus |= ITS_POWERUP;
469 if (autocvar_g_nodepthtestitems)
470 e.effects |= EF_NODEPTHTEST;
473 if (autocvar_g_fullbrightitems)
474 e.ItemStatus |= ITS_ALLOWFB;
476 if (autocvar_sv_simple_items)
477 e.ItemStatus |= ITS_ALLOWSI;
479 // relink entity (because solid may have changed)
480 setorigin(e, e.origin);
481 e.SendFlags |= ISF_STATUS;
484 void Item_Think(entity this)
486 this.nextthink = time;
487 if(this.origin != this.oldorigin)
491 bool Item_ItemsTime_SpectatorOnly(GameItem it);
492 bool Item_ItemsTime_Allow(GameItem it);
493 float Item_ItemsTime_UpdateTime(entity e, float t);
494 void Item_ItemsTime_SetTime(entity e, float t);
495 void Item_ItemsTime_SetTimesForAllPlayers();
497 void Item_Respawn (entity this)
501 if(this.items == ITEM_Strength.m_itemid)
502 sound (this, CH_TRIGGER, SND_STRENGTH_RESPAWN, VOL_BASE, ATTEN_NORM); // play respawn sound
503 else if(this.items == ITEM_Shield.m_itemid)
504 sound (this, CH_TRIGGER, SND_SHIELD_RESPAWN, VOL_BASE, ATTEN_NORM); // play respawn sound
506 sound (this, CH_TRIGGER, SND_ITEMRESPAWN, VOL_BASE, ATTEN_NORM); // play respawn sound
507 setorigin(this, this.origin);
509 if (Item_ItemsTime_Allow(this.itemdef) || this.weapons & WEPSET_SUPERWEAPONS)
511 float t = Item_ItemsTime_UpdateTime(this, 0);
512 Item_ItemsTime_SetTime(this, t);
513 Item_ItemsTime_SetTimesForAllPlayers();
516 setthink(this, Item_Think);
517 this.nextthink = time;
519 //Send_Effect(EFFECT_ITEM_RESPAWN, this.origin + this.mins_z * '0 0 1' + '0 0 48', '0 0 0', 1);
520 Send_Effect(EFFECT_ITEM_RESPAWN, CENTER_OR_VIEWOFS(this), '0 0 0', 1);
523 void Item_RespawnCountdown (entity this)
525 if(this.count >= ITEM_RESPAWN_TICKS)
527 if(this.waypointsprite_attached)
528 WaypointSprite_Kill(this.waypointsprite_attached);
533 this.nextthink = time + 1;
537 MUTATOR_CALLHOOK(Item_RespawnCountdown, string_null, '0 0 0');
540 entity wi = Weapons_from(this.weapon);
541 if (wi != WEP_Null) {
542 entity wp = WaypointSprite_Spawn(WP_Weapon, 0, 0, this, '0 0 64', NULL, 0, this, waypointsprite_attached, true, RADARICON_Weapon);
543 wp.wp_extra = wi.m_id;
548 entity ii = this.itemdef;
550 entity wp = WaypointSprite_Spawn(WP_Item, 0, 0, this, '0 0 64', NULL, 0, this, waypointsprite_attached, true, RADARICON_Item);
551 wp.wp_extra = ii.m_id;
556 if(this.waypointsprite_attached)
558 GameItem def = this.itemdef;
559 if (Item_ItemsTime_SpectatorOnly(def))
560 WaypointSprite_UpdateRule(this.waypointsprite_attached, 0, SPRITERULE_SPECTATOR);
561 WaypointSprite_UpdateBuildFinished(this.waypointsprite_attached, time + ITEM_RESPAWN_TICKS);
565 if(this.waypointsprite_attached)
567 FOREACH_CLIENT(IS_REAL_CLIENT(it), {
568 if(this.waypointsprite_attached.waypointsprite_visible_for_player(this.waypointsprite_attached, it, it))
571 soundto(MSG_ONE, this, CH_TRIGGER, SND(ITEMRESPAWNCOUNTDOWN), VOL_BASE, ATTEN_NORM); // play respawn sound
575 WaypointSprite_Ping(this.waypointsprite_attached);
576 //WaypointSprite_UpdateHealth(this.waypointsprite_attached, this.count);
581 void Item_RespawnThink(entity this)
583 this.nextthink = time;
584 if(this.origin != this.oldorigin)
587 if(time >= this.wait)
591 void Item_ScheduleRespawnIn(entity e, float t)
593 // if the respawn time is longer than 10 seconds, show a waypoint, otherwise, just respawn normally
594 if ((Item_ItemsTime_Allow(e.itemdef) || e.weapons & WEPSET_SUPERWEAPONS) && (t - ITEM_RESPAWN_TICKS) > 0)
596 setthink(e, Item_RespawnCountdown);
597 e.nextthink = time + max(0, t - ITEM_RESPAWN_TICKS);
598 e.scheduledrespawntime = e.nextthink + ITEM_RESPAWN_TICKS;
600 t = Item_ItemsTime_UpdateTime(e, e.scheduledrespawntime);
601 Item_ItemsTime_SetTime(e, t);
602 Item_ItemsTime_SetTimesForAllPlayers();
606 setthink(e, Item_RespawnThink);
608 e.scheduledrespawntime = time + t;
613 void Item_ScheduleRespawn(entity e)
615 if(e.respawntime > 0)
618 Item_ScheduleRespawnIn(e, ITEM_RESPAWNTIME(e));
620 else // if respawntime is -1, this item does not respawn
624 void Item_ScheduleInitialRespawn(entity e)
627 Item_ScheduleRespawnIn(e, game_starttime - time + ((e.respawntimestart) ? e.respawntimestart : ITEM_RESPAWNTIME_INITIAL(e)));
630 float Item_GiveAmmoTo(entity item, entity player, .float ammotype, float ammomax, float mode)
632 if (!item.(ammotype))
635 if (item.spawnshieldtime)
637 if ((player.(ammotype) < ammomax) || item.pickup_anyway > 0)
639 player.(ammotype) = bound(player.(ammotype), ammomax, player.(ammotype) + item.(ammotype));
643 else if(g_weapon_stay == 2)
645 float mi = min(item.(ammotype), ammomax);
646 if (player.(ammotype) < mi)
648 player.(ammotype) = mi;
659 player.pauserotfuel_finished = max(player.pauserotfuel_finished, time + autocvar_g_balance_pause_fuel_rot);
661 case ITEM_MODE_HEALTH:
662 player.pauserothealth_finished = max(player.pauserothealth_finished, time + autocvar_g_balance_pause_health_rot);
664 case ITEM_MODE_ARMOR:
665 player.pauserotarmor_finished = max(player.pauserotarmor_finished, time + autocvar_g_balance_pause_armor_rot);
673 float Item_GiveTo(entity item, entity player)
678 // if nothing happens to player, just return without taking the item
680 _switchweapon = false;
681 // in case the player has autoswitch enabled do the following:
682 // if the player is using their best weapon before items are given, they
683 // probably want to switch to an even better weapon after items are given
684 if (player.autoswitch)
685 if (PS(player).m_switchweapon == w_getbestweapon(player))
686 _switchweapon = true;
688 if (!(player.weapons & WepSet_FromWeapon(PS(player).m_switchweapon)))
689 _switchweapon = true;
691 pickedup |= Item_GiveAmmoTo(item, player, ammo_fuel, g_pickup_fuel_max, ITEM_MODE_FUEL);
692 pickedup |= Item_GiveAmmoTo(item, player, ammo_shells, g_pickup_shells_max, ITEM_MODE_NONE);
693 pickedup |= Item_GiveAmmoTo(item, player, ammo_nails, g_pickup_nails_max, ITEM_MODE_NONE);
694 pickedup |= Item_GiveAmmoTo(item, player, ammo_rockets, g_pickup_rockets_max, ITEM_MODE_NONE);
695 pickedup |= Item_GiveAmmoTo(item, player, ammo_cells, g_pickup_cells_max, ITEM_MODE_NONE);
696 pickedup |= Item_GiveAmmoTo(item, player, ammo_plasma, g_pickup_plasma_max, ITEM_MODE_NONE);
697 pickedup |= Item_GiveAmmoTo(item, player, health, item.max_health, ITEM_MODE_HEALTH);
698 pickedup |= Item_GiveAmmoTo(item, player, armorvalue, item.max_armorvalue, ITEM_MODE_ARMOR);
700 if (item.itemdef.instanceOfWeaponPickup)
704 w &= ~player.weapons;
706 if (w || (item.spawnshieldtime && item.pickup_anyway > 0))
709 FOREACH(Weapons, it != WEP_Null, {
710 if(w & (it.m_wepset))
712 W_DropEvent(wr_pickup, player, it.m_id, item);
713 W_GiveWeapon(player, it.m_id);
719 if (item.itemdef.instanceOfPowerup)
721 if ((item.itemdef == ITEM_JetpackRegen) && !(player.items & IT_FUEL_REGEN))
722 Send_Notification(NOTIF_ONE, player, MSG_CENTER, CENTER_ITEM_FUELREGEN_GOT);
723 else if ((item.itemdef == ITEM_Jetpack) && !(player.items & IT_JETPACK))
724 Send_Notification(NOTIF_ONE, player, MSG_CENTER, CENTER_ITEM_JETPACK_GOT);
728 if((its = (item.items - (item.items & player.items)) & IT_PICKUPMASK))
732 Send_Notification(NOTIF_ONE, player, MSG_INFO, INFO_ITEM_WEAPON_GOT, item.netname);
735 if (item.strength_finished)
738 player.strength_finished = max(player.strength_finished, time) + item.strength_finished;
740 if (item.invincible_finished)
743 player.invincible_finished = max(player.invincible_finished, time) + item.invincible_finished;
745 if (item.superweapons_finished)
748 player.superweapons_finished = max(player.superweapons_finished, time) + item.superweapons_finished;
753 // always eat teamed entities
760 // crude hack to enforce switching weapons
761 if(g_cts && item.itemdef.instanceOfWeaponPickup)
763 W_SwitchWeapon_Force(player, Weapons_from(item.weapon));
768 if (PS(player).m_switchweapon != w_getbestweapon(player))
769 W_SwitchWeapon_Force(player, w_getbestweapon(player));
774 void Item_Touch(entity this, entity toucher)
777 // remove the item if it's currnetly in a NODROP brush or hits a NOIMPACT surface (such as sky)
778 if (this.classname == "droppedweapon")
780 if (ITEM_TOUCH_NEEDKILL())
787 if(!(toucher.flags & FL_PICKUPITEMS)
788 || STAT(FROZEN, toucher)
790 || (this.solid != SOLID_TRIGGER)
791 || (this.owner == toucher)
792 || (time < this.item_spawnshieldtime)
795 switch (MUTATOR_CALLHOOK(ItemTouch, this, toucher))
797 case MUT_ITEMTOUCH_RETURN: { return; }
798 case MUT_ITEMTOUCH_PICKUP: { toucher = M_ARGV(1, entity); goto pickup; }
801 toucher = M_ARGV(1, entity);
803 if (this.classname == "droppedweapon")
805 this.strength_finished = max(0, this.strength_finished - time);
806 this.invincible_finished = max(0, this.invincible_finished - time);
807 this.superweapons_finished = max(0, this.superweapons_finished - time);
809 entity it = this.itemdef;
810 bool gave = ITEM_HANDLE(Pickup, it, this, toucher);
813 if (this.classname == "droppedweapon")
815 // undo what we did above
816 this.strength_finished += time;
817 this.invincible_finished += time;
818 this.superweapons_finished += time;
825 toucher.last_pickup = time;
827 Send_Effect(EFFECT_ITEM_PICKUP, CENTER_OR_VIEWOFS(this), '0 0 0', 1);
828 _sound (toucher, (this.itemdef.instanceOfPowerup ? CH_TRIGGER_SINGLE : CH_TRIGGER), (this.item_pickupsound ? this.item_pickupsound : Sound_fixpath(this.item_pickupsound_ent)), VOL_BASE, ATTEN_NORM);
830 if (this.classname == "droppedweapon")
832 else if (this.spawnshieldtime)
837 RandomSelection_Init();
838 FOREACH_ENTITY_FLAGS(flags, FL_ITEM,
840 if(it.team == this.team)
841 if(it.classname != "item_flag_team" && it.classname != "item_key_team")
844 RandomSelection_Add(it, 0, string_null, it.cnt, 0);
847 e = RandomSelection_chosen_ent;
852 Item_ScheduleRespawn(e);
856 void Item_Reset(entity this)
858 Item_Show(this, !this.state);
859 setorigin(this, this.origin);
861 if (this.classname != "droppedweapon")
863 setthink(this, Item_Think);
864 this.nextthink = time;
866 if (this.waypointsprite_attached)
867 WaypointSprite_Kill(this.waypointsprite_attached);
869 if (this.itemdef.instanceOfPowerup || (this.weapons & WEPSET_SUPERWEAPONS)) // do not spawn powerups initially!
870 Item_ScheduleInitialRespawn(this);
874 void Item_FindTeam(entity this)
878 if(this.effects & EF_NODRAW)
880 // marker for item team search
881 LOG_TRACE("Initializing item team ", ftos(this.team));
882 RandomSelection_Init();
883 FOREACH_ENTITY_FLOAT(team, this.team,
885 if(it.flags & FL_ITEM)
886 if(it.classname != "item_flag_team" && it.classname != "item_key_team")
887 RandomSelection_Add(it, 0, string_null, it.cnt, 0);
890 e = RandomSelection_chosen_ent;
894 FOREACH_ENTITY_FLOAT(team, this.team,
896 if(it.flags & FL_ITEM)
897 if(it.classname != "item_flag_team" && it.classname != "item_key_team")
901 // make it non-spawned
903 it.state = 1; // state 1 = initially hidden item, apparently
905 it.effects &= ~EF_NODRAW;
913 // Savage: used for item garbage-collection
914 void RemoveItem(entity this)
916 if(wasfreed(this) || !this) { return; }
917 Send_Effect(EFFECT_ITEM_PICKUP, CENTER_OR_VIEWOFS(this), '0 0 0', 1);
921 // pickup evaluation functions
922 // these functions decide how desirable an item is to the bots
924 float generic_pickupevalfunc(entity player, entity item) {return item.bot_pickupbasevalue;}
926 float weapon_pickupevalfunc(entity player, entity item)
930 // See if I have it already
931 if(item.weapons & ~player.weapons)
933 // If I can pick it up
934 if(!item.spawnshieldtime)
936 else if(player.ammo_cells || player.ammo_shells || player.ammo_plasma || player.ammo_nails || player.ammo_rockets)
938 // Skilled bots will grab more
939 c = bound(0, skill / 10, 1) * 0.5;
947 // If custom weapon priorities for bots is enabled rate most wanted weapons higher
948 if( bot_custom_weapon && c )
950 // Find the highest position on any range
952 for (int j = 0; j < WEP_LAST ; ++j){
954 bot_weapons_far[j] == item.weapon ||
955 bot_weapons_mid[j] == item.weapon ||
956 bot_weapons_close[j] == item.weapon
967 position = WEP_LAST - position;
968 // item.bot_pickupbasevalue is overwritten here
969 return (BOT_PICKUP_RATING_LOW + ( (BOT_PICKUP_RATING_HIGH - BOT_PICKUP_RATING_LOW) * (position / WEP_LAST ))) * c;
973 return item.bot_pickupbasevalue * c;
976 float commodity_pickupevalfunc(entity player, entity item)
979 float need_shells = false, need_nails = false, need_rockets = false, need_cells = false, need_plasma = false, need_fuel = false;
982 // Detect needed ammo
983 FOREACH(Weapons, it != WEP_Null, {
984 if(!(player.weapons & (it.m_wepset)))
987 if(it.items & ITEM_Shells.m_itemid)
989 else if(it.items & ITEM_Bullets.m_itemid)
991 else if(it.items & ITEM_Rockets.m_itemid)
993 else if(it.items & ITEM_Cells.m_itemid)
995 else if(it.items & ITEM_Plasma.m_itemid)
997 else if(it.items & ITEM_JetpackFuel.m_itemid)
1001 // TODO: figure out if the player even has the weapon this ammo is for?
1002 // may not affect strategy much though...
1003 // find out how much more ammo/armor/health the player can hold
1005 if (item.ammo_shells)
1006 if (player.ammo_shells < g_pickup_shells_max)
1007 c = c + max(0, 1 - player.ammo_shells / g_pickup_shells_max);
1009 if (item.ammo_nails)
1010 if (player.ammo_nails < g_pickup_nails_max)
1011 c = c + max(0, 1 - player.ammo_nails / g_pickup_nails_max);
1013 if (item.ammo_rockets)
1014 if (player.ammo_rockets < g_pickup_rockets_max)
1015 c = c + max(0, 1 - player.ammo_rockets / g_pickup_rockets_max);
1017 if (item.ammo_cells)
1018 if (player.ammo_cells < g_pickup_cells_max)
1019 c = c + max(0, 1 - player.ammo_cells / g_pickup_cells_max);
1021 if (item.ammo_plasma)
1022 if (player.ammo_plasma < g_pickup_plasma_max)
1023 c = c + max(0, 1 - player.ammo_plasma / g_pickup_plasma_max);
1026 if (player.ammo_fuel < g_pickup_fuel_max)
1027 c = c + max(0, 1 - player.ammo_fuel / g_pickup_fuel_max);
1028 if (item.armorvalue)
1029 if (player.armorvalue < item.max_armorvalue)
1030 c = c + max(0, 1 - player.armorvalue / item.max_armorvalue);
1032 if (player.health < item.max_health)
1033 c = c + max(0, 1 - player.health / item.max_health);
1035 return item.bot_pickupbasevalue * c;
1038 void Item_Damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, vector hitloc, vector force)
1040 if(ITEM_DAMAGE_NEEDKILL(deathtype))
1044 void _StartItem(entity this, entity def, float defaultrespawntime, float defaultrespawntimejitter)
1046 string itemname = def.m_name;
1047 Model itemmodel = def.m_model;
1048 Sound pickupsound = def.m_sound;
1049 float(entity player, entity item) pickupevalfunc = def.m_pickupevalfunc;
1050 float pickupbasevalue = def.m_botvalue;
1051 int itemflags = def.m_itemflags;
1053 startitem_failed = false;
1055 this.item_model_ent = itemmodel;
1056 this.item_pickupsound_ent = pickupsound;
1058 if(!this.respawntime) // both need to be set
1060 this.respawntime = defaultrespawntime;
1061 this.respawntimejitter = defaultrespawntimejitter;
1064 int itemid = def.m_itemid;
1065 this.items = itemid;
1066 int weaponid = def.instanceOfWeaponPickup ? def.m_weapon.m_id : 0;
1067 this.weapon = weaponid;
1071 this.fade_start = autocvar_g_items_mindist;
1072 this.fade_end = autocvar_g_items_maxdist;
1076 this.weapons = WepSet_FromWeapon(Weapons_from(weaponid));
1078 this.flags = FL_ITEM | itemflags;
1080 if(MUTATOR_CALLHOOK(FilterItem, this)) // error means we do not want the item
1082 startitem_failed = true;
1087 // is it a dropped weapon?
1088 if (this.classname == "droppedweapon")
1090 this.reset = SUB_Remove;
1091 // it's a dropped weapon
1092 set_movetype(this, MOVETYPE_TOSS);
1094 // Savage: remove thrown items after a certain period of time ("garbage collection")
1095 setthink(this, RemoveItem);
1096 this.nextthink = time + 20;
1098 this.takedamage = DAMAGE_YES;
1099 this.event_damage = Item_Damage;
1101 if(this.strength_finished || this.invincible_finished || this.superweapons_finished)
1103 // if item is worthless after a timer, have it expire then
1104 this.nextthink = max(this.strength_finished, this.invincible_finished, this.superweapons_finished);
1107 // don't drop if in a NODROP zone (such as lava)
1108 traceline(this.origin, this.origin, MOVE_NORMAL, this);
1109 if (trace_dpstartcontents & DPCONTENTS_NODROP)
1111 startitem_failed = true;
1118 if(!have_pickup_item(this))
1120 startitem_failed = true;
1125 if(this.angles != '0 0 0')
1126 this.SendFlags |= ISF_ANGLES;
1128 this.reset = Item_Reset;
1129 // it's a level item
1130 if(this.spawnflags & 1)
1132 if (this.noalign > 0)
1133 set_movetype(this, MOVETYPE_NONE);
1135 set_movetype(this, MOVETYPE_TOSS);
1136 // do item filtering according to game mode and other things
1137 if (this.noalign <= 0)
1139 // first nudge it off the floor a little bit to avoid math errors
1140 setorigin(this, this.origin + '0 0 1');
1141 // set item size before we spawn a spawnfunc_waypoint
1142 setsize(this, def.m_mins, def.m_maxs);
1143 this.SendFlags |= ISF_SIZE;
1144 // note droptofloor returns false if stuck/or would fall too far
1147 waypoint_spawnforitem(this);
1151 * can't do it that way, as it would break maps
1152 * TODO make a target_give like entity another way, that perhaps has
1153 * the weapon name in a key
1156 // target_give not yet supported; maybe later
1157 print("removed targeted ", this.classname, "\n");
1158 startitem_failed = true;
1164 if(autocvar_spawn_debug >= 2)
1166 // why not flags & fl_item?
1167 FOREACH_ENTITY_RADIUS(this.origin, 3, it.is_item, {
1168 LOG_TRACE("XXX Found duplicated item: ", itemname, vtos(this.origin));
1169 LOG_TRACE(" vs ", it.netname, vtos(it.origin));
1170 error("Mapper sucks.");
1172 this.is_item = true;
1175 weaponsInMap |= WepSet_FromWeapon(Weapons_from(weaponid));
1177 precache_model(this.model);
1178 precache_sound(this.item_pickupsound);
1180 if ( def.instanceOfPowerup
1181 || def.instanceOfWeaponPickup
1182 || (def.instanceOfHealth && def != ITEM_HealthSmall)
1183 || (def.instanceOfArmor && def != ITEM_ArmorSmall)
1184 || (itemid & (IT_KEY1 | IT_KEY2))
1185 ) this.target = "###item###"; // for finding the nearest item using find()
1187 Item_ItemsTime_SetTime(this, 0);
1190 this.bot_pickup = true;
1191 this.bot_pickupevalfunc = pickupevalfunc;
1192 this.bot_pickupbasevalue = pickupbasevalue;
1193 this.mdl = this.model ? this.model : strzone(this.item_model_ent.model_str());
1194 this.netname = itemname;
1195 settouch(this, Item_Touch);
1196 setmodel(this, MDL_Null); // precision set below
1197 //this.effects |= EF_LOWPRECISION;
1199 setsize (this, this.pos1 = def.m_mins, this.pos2 = def.m_maxs);
1201 this.SendFlags |= ISF_SIZE;
1203 if (!(this.spawnflags & 1024)) {
1204 if(def.instanceOfPowerup)
1205 this.ItemStatus |= ITS_ANIMATE1;
1207 if(this.armorvalue || this.health)
1208 this.ItemStatus |= ITS_ANIMATE2;
1211 if(def.instanceOfWeaponPickup)
1213 if (this.classname != "droppedweapon") // if dropped, colormap is already set up nicely
1214 this.colormap = 1024; // color shirt=0 pants=0 grey
1217 if (!(this.spawnflags & 1024))
1218 this.ItemStatus |= ITS_ANIMATE1;
1219 this.SendFlags |= ISF_COLORMAP;
1223 if(this.team) // broken, no idea why.
1226 this.cnt = 1; // item probability weight
1228 this.effects |= EF_NODRAW; // marker for item team search
1229 InitializeEntity(this, Item_FindTeam, INITPRIO_FINDTARGET);
1234 Net_LinkEntity(this, !(def.instanceOfPowerup || def.instanceOfHealth || def.instanceOfArmor), 0, ItemSend);
1236 // call this hook after everything else has been done
1237 if (MUTATOR_CALLHOOK(Item_Spawn, this))
1239 startitem_failed = true;
1245 void StartItem(entity this, GameItem def)
1250 def.m_respawntime(), // defaultrespawntime
1251 def.m_respawntimejitter() // defaultrespawntimejitter
1255 spawnfunc(item_rockets)
1257 if(!this.ammo_rockets)
1258 this.ammo_rockets = g_pickup_rockets;
1259 if(!this.pickup_anyway)
1260 this.pickup_anyway = g_pickup_ammo_anyway;
1261 StartItem(this, ITEM_Rockets);
1264 spawnfunc(item_bullets)
1267 if(autocvar_sv_q3acompat_machineshotgunswap)
1268 if(this.classname != "droppedweapon")
1270 weaponswapping = true;
1271 spawnfunc_item_shells(this);
1272 weaponswapping = false;
1276 if(!this.ammo_nails)
1277 this.ammo_nails = g_pickup_nails;
1278 if(!this.pickup_anyway)
1279 this.pickup_anyway = g_pickup_ammo_anyway;
1280 StartItem(this, ITEM_Bullets);
1283 spawnfunc(item_cells)
1285 if(!this.ammo_cells)
1286 this.ammo_cells = g_pickup_cells;
1287 if(!this.pickup_anyway)
1288 this.pickup_anyway = g_pickup_ammo_anyway;
1289 StartItem(this, ITEM_Cells);
1292 spawnfunc(item_plasma)
1294 if(!this.ammo_plasma)
1295 this.ammo_plasma = g_pickup_plasma;
1296 if(!this.pickup_anyway)
1297 this.pickup_anyway = g_pickup_ammo_anyway;
1298 StartItem(this, ITEM_Plasma);
1301 spawnfunc(item_shells)
1304 if(autocvar_sv_q3acompat_machineshotgunswap)
1305 if(this.classname != "droppedweapon")
1307 weaponswapping = true;
1308 spawnfunc_item_bullets(this);
1309 weaponswapping = false;
1313 if(!this.ammo_shells)
1314 this.ammo_shells = g_pickup_shells;
1315 if(!this.pickup_anyway)
1316 this.pickup_anyway = g_pickup_ammo_anyway;
1317 StartItem(this, ITEM_Shells);
1320 spawnfunc(item_armor_small)
1322 if(!this.armorvalue)
1323 this.armorvalue = g_pickup_armorsmall;
1324 if(!this.max_armorvalue)
1325 this.max_armorvalue = g_pickup_armorsmall_max;
1326 if(!this.pickup_anyway)
1327 this.pickup_anyway = g_pickup_armorsmall_anyway;
1328 StartItem(this, ITEM_ArmorSmall);
1331 spawnfunc(item_armor_medium)
1333 if(!this.armorvalue)
1334 this.armorvalue = g_pickup_armormedium;
1335 if(!this.max_armorvalue)
1336 this.max_armorvalue = g_pickup_armormedium_max;
1337 if(!this.pickup_anyway)
1338 this.pickup_anyway = g_pickup_armormedium_anyway;
1339 StartItem(this, ITEM_ArmorMedium);
1342 spawnfunc(item_armor_big)
1344 if(!this.armorvalue)
1345 this.armorvalue = g_pickup_armorbig;
1346 if(!this.max_armorvalue)
1347 this.max_armorvalue = g_pickup_armorbig_max;
1348 if(!this.pickup_anyway)
1349 this.pickup_anyway = g_pickup_armorbig_anyway;
1350 StartItem(this, ITEM_ArmorLarge);
1353 spawnfunc(item_armor_large)
1355 if(!this.armorvalue)
1356 this.armorvalue = g_pickup_armorlarge;
1357 if(!this.max_armorvalue)
1358 this.max_armorvalue = g_pickup_armorlarge_max;
1359 if(!this.pickup_anyway)
1360 this.pickup_anyway = g_pickup_armorlarge_anyway;
1361 StartItem(this, ITEM_ArmorMega);
1364 spawnfunc(item_health_small)
1366 if(!this.max_health)
1367 this.max_health = g_pickup_healthsmall_max;
1369 this.health = g_pickup_healthsmall;
1370 if(!this.pickup_anyway)
1371 this.pickup_anyway = g_pickup_healthsmall_anyway;
1372 StartItem(this, ITEM_HealthSmall);
1375 spawnfunc(item_health_medium)
1377 if(!this.max_health)
1378 this.max_health = g_pickup_healthmedium_max;
1380 this.health = g_pickup_healthmedium;
1381 if(!this.pickup_anyway)
1382 this.pickup_anyway = g_pickup_healthmedium_anyway;
1383 StartItem(this, ITEM_HealthMedium);
1386 spawnfunc(item_health_large)
1388 if(!this.max_health)
1389 this.max_health = g_pickup_healthlarge_max;
1391 this.health = g_pickup_healthlarge;
1392 if(!this.pickup_anyway)
1393 this.pickup_anyway = g_pickup_healthlarge_anyway;
1394 StartItem(this, ITEM_HealthLarge);
1397 spawnfunc(item_health_mega)
1399 if(!this.max_health)
1400 this.max_health = g_pickup_healthmega_max;
1402 this.health = g_pickup_healthmega;
1403 if(!this.pickup_anyway)
1404 this.pickup_anyway = g_pickup_healthmega_anyway;
1405 StartItem(this, ITEM_HealthMega);
1408 // support old misnamed entities
1409 spawnfunc(item_armor1) { spawnfunc_item_armor_small(this); } // FIXME: in Quake this is green armor, in Xonotic maps it is an armor shard
1410 spawnfunc(item_armor25) { spawnfunc_item_armor_large(this); }
1411 spawnfunc(item_health1) { spawnfunc_item_health_small(this); }
1412 spawnfunc(item_health25) { spawnfunc_item_health_medium(this); }
1413 spawnfunc(item_health100) { spawnfunc_item_health_mega(this); }
1415 spawnfunc(item_strength)
1417 if(!this.strength_finished)
1418 this.strength_finished = autocvar_g_balance_powerup_strength_time;
1419 StartItem(this, ITEM_Strength);
1422 spawnfunc(item_invincible)
1424 if(!this.invincible_finished)
1425 this.invincible_finished = autocvar_g_balance_powerup_invincible_time;
1426 StartItem(this, ITEM_Shield);
1430 spawnfunc(item_quad) { this.classname = "item_strength";spawnfunc_item_strength(this);}
1432 void target_items_use(entity this, entity actor, entity trigger)
1434 if(actor.classname == "droppedweapon")
1436 EXACTTRIGGER_TOUCH(this, trigger);
1441 if (!IS_PLAYER(actor))
1445 if(trigger.solid == SOLID_TRIGGER)
1447 EXACTTRIGGER_TOUCH(this, trigger);
1450 FOREACH_ENTITY_ENT(enemy, actor,
1452 if(it.classname == "droppedweapon")
1456 if(GiveItems(actor, 0, tokenize_console(this.netname)))
1457 centerprint(actor, this.message);
1460 spawnfunc(target_items)
1465 this.use = target_items_use;
1466 if(!this.strength_finished)
1467 this.strength_finished = autocvar_g_balance_powerup_strength_time;
1468 if(!this.invincible_finished)
1469 this.invincible_finished = autocvar_g_balance_powerup_invincible_time;
1470 if(!this.superweapons_finished)
1471 this.superweapons_finished = autocvar_g_balance_superweapons_time;
1473 n = tokenize_console(this.netname);
1474 if(argv(0) == "give")
1476 this.netname = substring(this.netname, argv_start_index(1), argv_end_index(-1) - argv_start_index(1));
1480 for(j = 0; j < n; ++j)
1482 if (argv(j) == "unlimited_ammo") this.items |= IT_UNLIMITED_AMMO;
1483 else if(argv(j) == "unlimited_weapon_ammo") this.items |= IT_UNLIMITED_WEAPON_AMMO;
1484 else if(argv(j) == "unlimited_superweapons") this.items |= IT_UNLIMITED_SUPERWEAPONS;
1485 else if(argv(j) == "strength") this.items |= ITEM_Strength.m_itemid;
1486 else if(argv(j) == "invincible") this.items |= ITEM_Shield.m_itemid;
1487 else if(argv(j) == "superweapons") this.items |= IT_SUPERWEAPON;
1488 else if(argv(j) == "jetpack") this.items |= ITEM_Jetpack.m_itemid;
1489 else if(argv(j) == "fuel_regen") this.items |= ITEM_JetpackRegen.m_itemid;
1492 FOREACH(Weapons, it != WEP_Null, {
1493 s = W_UndeprecateName(argv(j));
1496 this.weapons |= (it.m_wepset);
1497 if(this.spawnflags == 0 || this.spawnflags == 2)
1505 string itemprefix, valueprefix;
1506 if(this.spawnflags == 0)
1511 else if(this.spawnflags == 1)
1513 itemprefix = "max ";
1514 valueprefix = "max ";
1516 else if(this.spawnflags == 2)
1518 itemprefix = "min ";
1519 valueprefix = "min ";
1521 else if(this.spawnflags == 4)
1523 itemprefix = "minus ";
1524 valueprefix = "max ";
1528 error("invalid spawnflags");
1529 itemprefix = valueprefix = string_null;
1533 this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, boolean(this.items & IT_UNLIMITED_WEAPON_AMMO), "unlimited_weapon_ammo");
1534 this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, boolean(this.items & IT_UNLIMITED_SUPERWEAPONS), "unlimited_superweapons");
1535 this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, this.strength_finished * boolean(this.items & ITEM_Strength.m_itemid), "strength");
1536 this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, this.invincible_finished * boolean(this.items & ITEM_Shield.m_itemid), "invincible");
1537 this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, this.superweapons_finished * boolean(this.items & IT_SUPERWEAPON), "superweapons");
1538 this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, boolean(this.items & ITEM_Jetpack.m_itemid), "jetpack");
1539 this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, boolean(this.items & ITEM_JetpackRegen.m_itemid), "fuel_regen");
1540 if(this.ammo_shells != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_shells), "shells");
1541 if(this.ammo_nails != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_nails), "nails");
1542 if(this.ammo_rockets != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_rockets), "rockets");
1543 if(this.ammo_cells != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_cells), "cells");
1544 if(this.ammo_plasma != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_plasma), "plasma");
1545 if(this.ammo_fuel != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_fuel), "fuel");
1546 if(this.health != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.health), "health");
1547 if(this.armorvalue != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.armorvalue), "armor");
1548 FOREACH(Weapons, it != WEP_Null, this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, !!(this.weapons & (it.m_wepset)), it.netname));
1550 this.netname = strzone(this.netname);
1551 //print(this.netname, "\n");
1553 n = tokenize_console(this.netname);
1554 for(j = 0; j < n; ++j)
1556 FOREACH(Weapons, it != WEP_Null && W_UndeprecateName(argv(j)) == it.netname, {
1563 spawnfunc(item_fuel)
1566 this.ammo_fuel = g_pickup_fuel;
1567 if(!this.pickup_anyway)
1568 this.pickup_anyway = g_pickup_ammo_anyway;
1569 StartItem(this, ITEM_JetpackFuel);
1572 spawnfunc(item_fuel_regen)
1574 if(start_items & ITEM_JetpackRegen.m_itemid)
1576 spawnfunc_item_fuel(this);
1579 StartItem(this, ITEM_JetpackRegen);
1582 spawnfunc(item_jetpack)
1585 this.ammo_fuel = g_pickup_fuel_jetpack;
1586 if(start_items & ITEM_Jetpack.m_itemid)
1588 spawnfunc_item_fuel(this);
1591 StartItem(this, ITEM_Jetpack);
1594 float GiveWeapon(entity e, float wpn, float op, float val)
1597 WepSet s = WepSet_FromWeapon(Weapons_from(wpn));
1598 v0 = (e.weapons & s);
1621 v1 = (e.weapons & s);
1625 void GiveSound(entity e, float v0, float v1, float t, Sound snd_incr, Sound snd_decr)
1631 if(snd_decr != NULL)
1632 sound (e, CH_TRIGGER, snd_decr, VOL_BASE, ATTEN_NORM);
1634 else if(v0 >= v0 + t)
1636 if(snd_incr != NULL)
1637 sound (e, CH_TRIGGER, snd_incr, VOL_BASE, ATTEN_NORM);
1641 void GiveRot(entity e, float v0, float v1, .float rotfield, float rottime, .float regenfield, float regentime)
1644 e.(rotfield) = max(e.(rotfield), time + rottime);
1646 e.(regenfield) = max(e.(regenfield), time + regentime);
1648 float GiveItems(entity e, float beginarg, float endarg)
1650 float got, i, val, op;
1651 float _switchweapon;
1659 _switchweapon = false;
1661 if (PS(e).m_switchweapon == w_getbestweapon(e))
1662 _switchweapon = true;
1664 e.strength_finished = max(0, e.strength_finished - time);
1665 e.invincible_finished = max(0, e.invincible_finished - time);
1666 e.superweapons_finished = max(0, e.superweapons_finished - time);
1670 PREGIVE(e, strength_finished);
1671 PREGIVE(e, invincible_finished);
1672 PREGIVE(e, superweapons_finished);
1673 PREGIVE(e, ammo_nails);
1674 PREGIVE(e, ammo_cells);
1675 PREGIVE(e, ammo_plasma);
1676 PREGIVE(e, ammo_shells);
1677 PREGIVE(e, ammo_rockets);
1678 PREGIVE(e, ammo_fuel);
1679 PREGIVE(e, armorvalue);
1682 for(i = beginarg; i < endarg; ++i)
1686 if(cmd == "0" || stof(cmd))
1710 got += GiveBit(e, items, ITEM_JetpackRegen.m_itemid, op, val);
1711 got += GiveValue(e, strength_finished, op, val);
1712 got += GiveValue(e, invincible_finished, op, val);
1713 got += GiveValue(e, superweapons_finished, op, val);
1714 got += GiveBit(e, items, IT_UNLIMITED_AMMO, op, val);
1716 got += GiveBit(e, items, ITEM_Jetpack.m_itemid, op, val);
1717 got += GiveValue(e, health, op, val);
1718 got += GiveValue(e, armorvalue, op, val);
1720 FOREACH(Weapons, it != WEP_Null && !(it.spawnflags & WEP_FLAG_MUTATORBLOCKED), got += GiveWeapon(e, it.m_id, op, val));
1722 got += GiveValue(e, ammo_cells, op, val);
1723 got += GiveValue(e, ammo_plasma, op, val);
1724 got += GiveValue(e, ammo_shells, op, val);
1725 got += GiveValue(e, ammo_nails, op, val);
1726 got += GiveValue(e, ammo_rockets, op, val);
1727 got += GiveValue(e, ammo_fuel, op, val);
1729 case "unlimited_ammo":
1730 got += GiveBit(e, items, IT_UNLIMITED_AMMO, op, val);
1732 case "unlimited_weapon_ammo":
1733 got += GiveBit(e, items, IT_UNLIMITED_WEAPON_AMMO, op, val);
1735 case "unlimited_superweapons":
1736 got += GiveBit(e, items, IT_UNLIMITED_SUPERWEAPONS, op, val);
1739 got += GiveBit(e, items, ITEM_Jetpack.m_itemid, op, val);
1742 got += GiveBit(e, items, ITEM_JetpackRegen.m_itemid, op, val);
1745 got += GiveValue(e, strength_finished, op, val);
1748 got += GiveValue(e, invincible_finished, op, val);
1750 case "superweapons":
1751 got += GiveValue(e, superweapons_finished, op, val);
1754 got += GiveValue(e, ammo_cells, op, val);
1757 got += GiveValue(e, ammo_plasma, op, val);
1760 got += GiveValue(e, ammo_shells, op, val);
1764 got += GiveValue(e, ammo_nails, op, val);
1767 got += GiveValue(e, ammo_rockets, op, val);
1770 got += GiveValue(e, health, op, val);
1773 got += GiveValue(e, armorvalue, op, val);
1776 got += GiveValue(e, ammo_fuel, op, val);
1779 FOREACH(Weapons, it != WEP_Null && W_UndeprecateName(cmd) == it.netname, {
1780 got += GiveWeapon(e, it.m_id, op, val);
1789 POSTGIVE_BIT(e, items, ITEM_JetpackRegen.m_itemid, SND_ITEMPICKUP, SND_Null);
1790 POSTGIVE_BIT(e, items, IT_UNLIMITED_SUPERWEAPONS, SND_POWERUP, SND_POWEROFF);
1791 POSTGIVE_BIT(e, items, IT_UNLIMITED_WEAPON_AMMO, SND_POWERUP, SND_POWEROFF);
1792 POSTGIVE_BIT(e, items, ITEM_Jetpack.m_itemid, SND_ITEMPICKUP, SND_Null);
1793 FOREACH(Weapons, it != WEP_Null, {
1794 POSTGIVE_WEAPON(e, it, SND_WEAPONPICKUP, SND_Null);
1795 if(!(save_weapons & (it.m_wepset)))
1796 if(e.weapons & (it.m_wepset))
1799 POSTGIVE_VALUE(e, strength_finished, 1, SND_POWERUP, SND_POWEROFF);
1800 POSTGIVE_VALUE(e, invincible_finished, 1, SND_Shield, SND_POWEROFF);
1801 POSTGIVE_VALUE(e, ammo_nails, 0, SND_ITEMPICKUP, SND_Null);
1802 POSTGIVE_VALUE(e, ammo_cells, 0, SND_ITEMPICKUP, SND_Null);
1803 POSTGIVE_VALUE(e, ammo_plasma, 0, SND_ITEMPICKUP, SND_Null);
1804 POSTGIVE_VALUE(e, ammo_shells, 0, SND_ITEMPICKUP, SND_Null);
1805 POSTGIVE_VALUE(e, ammo_rockets, 0, SND_ITEMPICKUP, SND_Null);
1806 POSTGIVE_VALUE_ROT(e, ammo_fuel, 1, pauserotfuel_finished, autocvar_g_balance_pause_fuel_rot, pauseregen_finished, autocvar_g_balance_pause_fuel_regen, SND_ITEMPICKUP, SND_Null);
1807 POSTGIVE_VALUE_ROT(e, armorvalue, 1, pauserotarmor_finished, autocvar_g_balance_pause_armor_rot, pauseregen_finished, autocvar_g_balance_pause_health_regen, SND_ARMOR25, SND_Null);
1808 POSTGIVE_VALUE_ROT(e, health, 1, pauserothealth_finished, autocvar_g_balance_pause_health_rot, pauseregen_finished, autocvar_g_balance_pause_health_regen, SND_MEGAHEALTH, SND_Null);
1810 if(e.superweapons_finished <= 0)
1811 if(e.weapons & WEPSET_SUPERWEAPONS)
1812 e.superweapons_finished = autocvar_g_balance_superweapons_time;
1814 if(e.strength_finished <= 0)
1815 e.strength_finished = 0;
1817 e.strength_finished += time;
1818 if(e.invincible_finished <= 0)
1819 e.invincible_finished = 0;
1821 e.invincible_finished += time;
1822 if(e.superweapons_finished <= 0)
1823 e.superweapons_finished = 0;
1825 e.superweapons_finished += time;
1827 if (!(e.weapons & WepSet_FromWeapon(PS(e).m_switchweapon)))
1828 _switchweapon = true;
1830 W_SwitchWeapon_Force(e, w_getbestweapon(e));