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/_mod.qh>
23 #include <common/weapons/_all.qh>
25 #include <common/mutators/mutator/buffs/buffs.qh>
27 #include "../lib/warpzone/util_server.qh"
29 #include "physics/movetypes/movetypes.qh"
30 #include <common/weapons/_all.qh>
31 #include "../lib/csqcmodel/cl_model.qh"
32 #include "../lib/csqcmodel/common.qh"
35 REGISTER_NET_LINKED(ENT_CLIENT_ITEM)
38 bool autocvar_cl_ghost_items_vehicle = true;
40 .bool item_simple; // probably not really needed, but better safe than sorry
41 void Item_SetAlpha(entity this)
43 bool veh_hud = (hud && autocvar_cl_ghost_items_vehicle);
45 if(!veh_hud && (this.ItemStatus & ITS_AVAILABLE))
48 this.colormod = '1 1 1';
49 this.glowmod = this.item_glowmod;
53 if (autocvar_cl_ghost_items_color)
55 this.alpha = autocvar_cl_ghost_items;
56 this.colormod = this.glowmod = autocvar_cl_ghost_items_color;
62 if((!veh_hud) && (this.ItemStatus & ITS_STAYWEP))
64 this.colormod = this.glowmod = autocvar_cl_weapon_stay_color;
65 this.alpha = autocvar_cl_weapon_stay_alpha;
68 this.drawmask = ((this.alpha <= 0) ? 0 : MASK_NORMAL);
71 void ItemDraw(entity this)
75 Movetype_Physics_MatchServer(this, false);
77 { // For some reason avelocity gets set to '0 0 0' here ...
78 this.oldorigin = this.origin;
81 if(autocvar_cl_animate_items)
82 { // ... so reset it if animations are requested.
83 if(this.ItemStatus & ITS_ANIMATE1)
84 this.avelocity = '0 180 0';
86 if(this.ItemStatus & ITS_ANIMATE2)
87 this.avelocity = '0 -90 0';
90 // delay is for blocking item's position for a while;
91 // it's a workaround for dropped weapons that receive the position
92 // another time right after they spawn overriding animation position
93 this.onground_time = time + 0.5;
96 else if (autocvar_cl_animate_items)
98 if(this.ItemStatus & ITS_ANIMATE1)
100 if(!this.item_simple)
101 this.angles += this.avelocity * frametime;
102 float fade_in = bound(0, time - this.onground_time, 1);
103 setorigin(this, this.oldorigin + fade_in * ('0 0 10' + '0 0 8' * sin((time - this.onground_time) * 2)));
106 if(this.ItemStatus & ITS_ANIMATE2)
108 if(!this.item_simple)
109 this.angles += this.avelocity * frametime;
110 float fade_in = bound(0, time - this.onground_time, 1);
111 setorigin(this, this.oldorigin + fade_in * ('0 0 8' + '0 0 4' * sin((time - this.onground_time) * 3)));
118 void Item_PreDraw(entity this)
120 if(warpzone_warpzones_exist)
122 setpredraw(this, func_null); // no need to keep running this
126 vector org = getpropertyvec(VF_ORIGIN);
127 //if(!checkpvs(org, this)) // this makes sense as long as we don't support recursive warpzones
128 //alph = 0; // this shouldn't be needed, since items behind walls are culled anyway
131 if(vdist(org - this.origin, >, this.fade_end))
132 alph = 0; // save on some processing
133 else if(vdist(org - this.origin, <, this.fade_start))
134 alph = 1; // more processing saved
136 alph = bound(0, (this.fade_end - vlen(org - this.origin - 0.5 * (this.mins + this.maxs))) / (this.fade_end - this.fade_start), 1);
140 //printf("%v <-> %v\n", view_origin, this.origin + 0.5 * (this.mins + this.maxs));
141 if(!hud && (this.ItemStatus & ITS_AVAILABLE))
146 //this.drawmask = MASK_NORMAL; // reset by the setalpha function
149 void ItemRemove(entity this)
154 HashMap ENT_CLIENT_ITEM_simple;
155 STATIC_INIT(ENT_CLIENT_ITEM_simple)
157 HM_NEW(ENT_CLIENT_ITEM_simple);
159 SHUTDOWN(ENT_CLIENT_ITEM_simple)
161 HM_DELETE(ENT_CLIENT_ITEM_simple);
164 NET_HANDLE(ENT_CLIENT_ITEM, bool isnew)
168 if(sf & ISF_LOCATION)
170 this.origin = ReadVector();
171 setorigin(this, this.origin);
172 this.oldorigin = this.origin;
177 this.angles_x = ReadAngle();
178 this.angles_y = ReadAngle();
179 this.angles_z = ReadAngle();
184 float use_bigsize = ReadByte();
185 setsize(this, '-16 -16 0', (use_bigsize) ? '16 16 48' : '16 16 32');
188 if(sf & ISF_STATUS) // need to read/write status first so model can handle simple, fb etc.
190 this.ItemStatus = ReadByte();
194 if(autocvar_cl_fullbright_items)
195 if(this.ItemStatus & ITS_ALLOWFB)
196 this.effects |= EF_FULLBRIGHT;
198 if(this.ItemStatus & ITS_GLOW)
200 if(this.ItemStatus & ITS_AVAILABLE)
201 this.effects |= (EF_ADDITIVE | EF_FULLBRIGHT);
203 this.effects &= ~(EF_ADDITIVE | EF_FULLBRIGHT);
209 this.drawmask = MASK_NORMAL;
210 set_movetype(this, MOVETYPE_TOSS);
211 if (isnew) IL_PUSH(g_drawables, this);
212 this.draw = ItemDraw;
213 this.solid = SOLID_TRIGGER;
214 //this.flags |= FL_ITEM;
216 bool use_bigsize = ReadByte();
218 this.fade_end = ReadShort();
219 this.fade_start = ReadShort();
220 if(!warpzone_warpzones_exist && this.fade_start && !autocvar_cl_items_nofade)
221 setpredraw(this, Item_PreDraw);
225 string _fn = ReadString();
226 this.item_simple = false; // reset it!
228 if(autocvar_cl_simple_items && (this.ItemStatus & ITS_ALLOWSI))
230 string _fn2 = substring(_fn, 0 , strlen(_fn) -4);
231 this.item_simple = true;
233 #define extensions(x) \
239 #define tryext(ext) { \
240 string s = strcat(_fn2, autocvar_cl_simpleitems_postfix, "." #ext); \
241 string cached = HM_gets(ENT_CLIENT_ITEM_simple, s); \
242 if (cached == "") { \
243 HM_sets(ENT_CLIENT_ITEM_simple, s, cached = fexists(s) ? "1" : "0"); \
245 if (cached != "0") { \
246 strcpy(this.mdl, s); \
252 this.item_simple = false;
253 LOG_TRACEF("Simple item requested for %s but no model exists for it", _fn);
259 if(!this.item_simple)
260 strcpy(this.mdl, _fn);
263 LOG_WARNF("this.mdl is unset for item %s", this.classname);
265 precache_model(this.mdl);
266 _setmodel(this, this.mdl);
268 setsize(this, '-16 -16 0', (use_bigsize) ? '16 16 48' : '16 16 32');
271 if(sf & ISF_COLORMAP)
273 this.colormap = ReadShort();
274 this.item_glowmod_x = ReadByte() / 255.0;
275 this.item_glowmod_y = ReadByte() / 255.0;
276 this.item_glowmod_z = ReadByte() / 255.0;
282 this.pushable = true;
283 //this.angles = '0 0 0';
284 set_movetype(this, MOVETYPE_TOSS);
285 this.velocity = ReadVector();
286 setorigin(this, this.oldorigin);
290 this.move_time = time;
291 this.spawntime = time;
294 this.move_time = max(this.move_time, time);
297 if(autocvar_cl_animate_items)
299 if(this.ItemStatus & ITS_ANIMATE1)
300 this.avelocity = '0 180 0';
302 if(this.ItemStatus & ITS_ANIMATE2)
303 this.avelocity = '0 -90 0';
306 this.entremove = ItemRemove;
314 bool ItemSend(entity this, entity to, int sf)
321 WriteHeader(MSG_ENTITY, ENT_CLIENT_ITEM);
322 WriteByte(MSG_ENTITY, sf);
324 //WriteByte(MSG_ENTITY, this.cnt);
325 if(sf & ISF_LOCATION)
327 WriteVector(MSG_ENTITY, this.origin);
332 WriteAngle(MSG_ENTITY, this.angles_x);
333 WriteAngle(MSG_ENTITY, this.angles_y);
334 WriteAngle(MSG_ENTITY, this.angles_z);
339 Pickup p = this.itemdef;
340 WriteByte(MSG_ENTITY, p.instanceOfPowerup || p.instanceOfHealth || p.instanceOfArmor);
344 WriteByte(MSG_ENTITY, this.ItemStatus);
348 Pickup p = this.itemdef;
349 WriteByte(MSG_ENTITY, p.instanceOfPowerup || p.instanceOfHealth || p.instanceOfArmor);
350 WriteShort(MSG_ENTITY, this.fade_end);
351 WriteShort(MSG_ENTITY, this.fade_start);
354 LOG_TRACE("^1WARNING!^7 this.mdl is unset for item ", this.classname, "expect a crash just about now");
356 WriteString(MSG_ENTITY, this.mdl);
360 if(sf & ISF_COLORMAP)
362 WriteShort(MSG_ENTITY, this.colormap);
363 WriteByte(MSG_ENTITY, this.glowmod.x * 255.0);
364 WriteByte(MSG_ENTITY, this.glowmod.y * 255.0);
365 WriteByte(MSG_ENTITY, this.glowmod.z * 255.0);
370 WriteVector(MSG_ENTITY, this.velocity);
376 void ItemUpdate(entity this)
378 this.oldorigin = this.origin;
379 this.SendFlags |= ISF_LOCATION;
382 void UpdateItemAfterTeleport(entity this)
384 if(getSendEntity(this) == ItemSend)
388 bool have_pickup_item(entity this)
390 if(this.itemdef.instanceOfPowerup)
392 if(autocvar_g_powerups > 0)
394 if(autocvar_g_powerups == 0)
399 if(autocvar_g_pickup_items > 0)
401 if(autocvar_g_pickup_items == 0)
404 if(this.weapons || this.itemdef.instanceOfAmmo) // no item or ammo pickups in weaponarena
411 float Item_Customize()
413 if(this.spawnshieldtime)
415 if(this.weapons & ~other.weapons)
417 this.colormod = '0 0 0';
418 this.glowmod = this.colormod;
419 this.alpha = 0.5 + 0.5 * g_ghost_items; // halfway more alpha
426 this.colormod = stov(autocvar_g_ghost_items_color);
427 this.glowmod = this.colormod;
428 this.alpha = g_ghost_items;
437 void Item_Show (entity e, float mode)
439 e.effects &= ~(EF_ADDITIVE | EF_STARDUST | EF_FULLBRIGHT | EF_NODEPTHTEST);
440 e.ItemStatus &= ~ITS_STAYWEP;
441 entity def = e.itemdef;
444 // make the item look normal, and be touchable
446 e.solid = SOLID_TRIGGER;
447 e.spawnshieldtime = 1;
448 e.ItemStatus |= ITS_AVAILABLE;
452 // hide the item completely
453 e.model = string_null;
455 e.spawnshieldtime = 1;
456 e.ItemStatus &= ~ITS_AVAILABLE;
460 bool nostay = def.instanceOfWeaponPickup ? !!(def.m_weapon.weapons & WEPSET_SUPERWEAPONS) : false // no weapon-stay on superweapons
461 || e.team // weapon stay isn't supported for teamed weapons
463 if(def.instanceOfWeaponPickup && !nostay && g_weapon_stay)
465 // make the item translucent and not touchable
467 e.solid = SOLID_TRIGGER; // can STILL be picked up!
468 e.effects |= EF_STARDUST;
469 e.spawnshieldtime = 0; // field indicates whether picking it up may give you anything other than the weapon
470 e.ItemStatus |= (ITS_AVAILABLE | ITS_STAYWEP);
474 //setmodel(e, "null");
476 e.colormod = '0 0 0';
477 //e.glowmod = e.colormod;
478 e.spawnshieldtime = 1;
479 e.ItemStatus &= ~ITS_AVAILABLE;
484 e.ItemStatus |= ITS_GLOW;
486 if (autocvar_g_nodepthtestitems)
487 e.effects |= EF_NODEPTHTEST;
490 if (autocvar_g_fullbrightitems)
491 e.ItemStatus |= ITS_ALLOWFB;
493 if (autocvar_sv_simple_items)
494 e.ItemStatus |= ITS_ALLOWSI;
496 // relink entity (because solid may have changed)
497 setorigin(e, e.origin);
498 e.SendFlags |= ISF_STATUS;
501 void Item_Think(entity this)
503 this.nextthink = time;
504 if(this.origin != this.oldorigin)
508 bool Item_ItemsTime_SpectatorOnly(GameItem it);
509 bool Item_ItemsTime_Allow(GameItem it);
510 float Item_ItemsTime_UpdateTime(entity e, float t);
511 void Item_ItemsTime_SetTime(entity e, float t);
512 void Item_ItemsTime_SetTimesForAllPlayers();
514 void Item_Respawn (entity this)
517 sound(this, CH_TRIGGER, this.itemdef.m_respawnsound, VOL_BASE, ATTEN_NORM); // play respawn sound
518 setorigin(this, this.origin);
520 if (Item_ItemsTime_Allow(this.itemdef) || (this.weapons & WEPSET_SUPERWEAPONS))
522 float t = Item_ItemsTime_UpdateTime(this, 0);
523 Item_ItemsTime_SetTime(this, t);
524 Item_ItemsTime_SetTimesForAllPlayers();
527 setthink(this, Item_Think);
528 this.nextthink = time;
530 //Send_Effect(EFFECT_ITEM_RESPAWN, this.origin + this.mins_z * '0 0 1' + '0 0 48', '0 0 0', 1);
531 Send_Effect(EFFECT_ITEM_RESPAWN, CENTER_OR_VIEWOFS(this), '0 0 0', 1);
534 void Item_RespawnCountdown (entity this)
536 if(this.item_respawncounter >= ITEM_RESPAWN_TICKS)
538 if(this.waypointsprite_attached)
539 WaypointSprite_Kill(this.waypointsprite_attached);
544 this.nextthink = time + 1;
545 this.item_respawncounter += 1;
546 if(this.item_respawncounter == 1)
550 entity wi = Weapons_from(this.weapon);
551 if (wi != WEP_Null) {
552 entity wp = WaypointSprite_Spawn(WP_Weapon, 0, 0, this, '0 0 64', NULL, 0, this, waypointsprite_attached, true, RADARICON_Weapon);
553 wp.wp_extra = wi.m_id;
558 entity ii = this.itemdef;
560 entity wp = WaypointSprite_Spawn(WP_Item, 0, 0, this, '0 0 64', NULL, 0, this, waypointsprite_attached, true, RADARICON_Item);
561 wp.wp_extra = ii.m_id;
566 bool mutator_returnvalue = MUTATOR_CALLHOOK(Item_RespawnCountdown, this);
567 if(this.waypointsprite_attached)
569 GameItem def = this.itemdef;
570 if (Item_ItemsTime_SpectatorOnly(def) && !mutator_returnvalue)
571 WaypointSprite_UpdateRule(this.waypointsprite_attached, 0, SPRITERULE_SPECTATOR);
572 WaypointSprite_UpdateBuildFinished(this.waypointsprite_attached, time + ITEM_RESPAWN_TICKS);
576 if(this.waypointsprite_attached)
578 FOREACH_CLIENT(IS_REAL_CLIENT(it), {
579 if(this.waypointsprite_attached.waypointsprite_visible_for_player(this.waypointsprite_attached, it, it))
582 soundto(MSG_ONE, this, CH_TRIGGER, SND(ITEMRESPAWNCOUNTDOWN), VOL_BASE, ATTEN_NORM); // play respawn sound
586 WaypointSprite_Ping(this.waypointsprite_attached);
587 //WaypointSprite_UpdateHealth(this.waypointsprite_attached, this.item_respawncounter);
592 void Item_RespawnThink(entity this)
594 this.nextthink = time;
595 if(this.origin != this.oldorigin)
598 if(time >= this.wait)
602 void Item_ScheduleRespawnIn(entity e, float t)
604 // if the respawn time is longer than 10 seconds, show a waypoint, otherwise, just respawn normally
605 if ((Item_ItemsTime_Allow(e.itemdef) || (e.weapons & WEPSET_SUPERWEAPONS) || MUTATOR_CALLHOOK(Item_ScheduleRespawn, e, t)) && (t - ITEM_RESPAWN_TICKS) > 0)
607 setthink(e, Item_RespawnCountdown);
608 e.nextthink = time + max(0, t - ITEM_RESPAWN_TICKS);
609 e.scheduledrespawntime = e.nextthink + ITEM_RESPAWN_TICKS;
610 e.item_respawncounter = 0;
611 if(Item_ItemsTime_Allow(e.itemdef) || (e.weapons & WEPSET_SUPERWEAPONS))
613 t = Item_ItemsTime_UpdateTime(e, e.scheduledrespawntime);
614 Item_ItemsTime_SetTime(e, t);
615 Item_ItemsTime_SetTimesForAllPlayers();
620 setthink(e, Item_RespawnThink);
622 e.scheduledrespawntime = time + t;
625 if(Item_ItemsTime_Allow(e.itemdef) || (e.weapons & WEPSET_SUPERWEAPONS))
627 t = Item_ItemsTime_UpdateTime(e, e.scheduledrespawntime);
628 Item_ItemsTime_SetTime(e, t);
629 Item_ItemsTime_SetTimesForAllPlayers();
634 AUTOCVAR(g_pickup_respawntime_scaling_reciprocal, float, 0.0, "Multiply respawn time by `reciprocal / (p + offset) + linear` where `p` is the current number of players, takes effect with 2 or more players present, `reciprocal` (with `offset` and `linear` set to 0) can be used to achieve a constant number of items spawned *per player*");
635 AUTOCVAR(g_pickup_respawntime_scaling_offset, float, 0.0, "Multiply respawn time by `reciprocal / (p + offset) + linear` where `p` is the current number of players, takes effect with 2 or more players present, `offset` offsets the curve left or right - the results are not intuitive and I recommend plotting the respawn time and the number of items per player to see what's happening");
636 AUTOCVAR(g_pickup_respawntime_scaling_linear, float, 1.0, "Multiply respawn time by `reciprocal / (p + offset) + linear` where `p` is the current number of players, takes effect with 2 or more players present, `linear` can be used to simply scale the respawn time linearly");
638 /// Adjust respawn time according to the number of players.
639 float adjust_respawntime(float normal_respawntime) {
640 float r = autocvar_g_pickup_respawntime_scaling_reciprocal;
641 float o = autocvar_g_pickup_respawntime_scaling_offset;
642 float l = autocvar_g_pickup_respawntime_scaling_linear;
644 if (r == 0 && l == 1) {
645 return normal_respawntime;
648 CheckAllowedTeams(NULL);
651 if (c1 != -1) players += c1;
652 if (c2 != -1) players += c2;
653 if (c3 != -1) players += c3;
654 if (c4 != -1) players += c4;
657 return normal_respawntime * (r / (players + o) + l);
659 return normal_respawntime;
663 void Item_ScheduleRespawn(entity e)
665 if(e.respawntime > 0)
669 float adjusted_respawntime = adjust_respawntime(e.respawntime);
670 //LOG_INFOF("item %s will respawn in %f", e.classname, adjusted_respawntime);
672 // range: adjusted_respawntime - respawntimejitter .. adjusted_respawntime + respawntimejitter
673 float respawn_in = adjusted_respawntime + crandom() * e.respawntimejitter;
674 Item_ScheduleRespawnIn(e, respawn_in);
676 else // if respawntime is -1, this item does not respawn
680 AUTOCVAR(g_pickup_respawntime_initial_random, int, 1,
681 "For items that don't start spawned: 0: spawn after their normal respawntime; 1: spawn after `random * respawntime` with the *same* random; 2: same as 1 but each item has separate random");
683 void Item_ScheduleInitialRespawn(entity e)
688 if (autocvar_g_pickup_respawntime_initial_random == 0)
690 // range: respawntime .. respawntime + respawntimejitter
691 spawn_in = e.respawntime + random() * e.respawntimejitter;
696 if (autocvar_g_pickup_respawntime_initial_random == 1)
698 static float shared_random = 0;
699 // NOTE this code works only if items are scheduled at the same time (normal case)
700 // NOTE2 random() can't return exactly 1 so this check always work as intended
701 if (!shared_random || floor(time) > shared_random)
702 shared_random = floor(time) + random();
703 rnd = shared_random - floor(time);
709 // if respawntime >= ITEM_RESPAWN_TICKS: ITEM_RESPAWN_TICKS .. respawntime + respawntimejitter
710 // else: 0 .. ITEM_RESPAWN_TICKS
711 // this is to prevent powerups spawning unexpectedly without waypoints
712 spawn_in = ITEM_RESPAWN_TICKS + rnd * (e.respawntime + e.respawntimejitter - ITEM_RESPAWN_TICKS);
715 Item_ScheduleRespawnIn(e, max(0, game_starttime - time) + ((e.respawntimestart) ? e.respawntimestart : spawn_in));
718 void GiveRandomWeapons(entity receiver, int num_weapons, string weapon_names,
721 if (num_weapons == 0)
725 int num_potential_weapons = tokenize_console(weapon_names);
726 for (int give_attempt = 0; give_attempt < num_weapons; ++give_attempt)
728 RandomSelection_Init();
729 for (int weapon_index = 0; weapon_index < num_potential_weapons;
732 string weapon = argv(weapon_index);
733 FOREACH(Weapons, it != WEP_Null,
735 // Finding a weapon which player doesn't have.
736 if (!(receiver.weapons & it.m_wepset) && (it.netname == weapon))
738 RandomSelection_AddEnt(it, 1, 1);
743 if (RandomSelection_chosen_ent == NULL)
747 receiver.weapons |= RandomSelection_chosen_ent.m_wepset;
748 if (RandomSelection_chosen_ent.ammo_type == RESOURCE_NONE)
752 if (GetResourceAmount(receiver,
753 RandomSelection_chosen_ent.ammo_type) != 0)
757 GiveResource(receiver, RandomSelection_chosen_ent.ammo_type,
758 GetResourceAmount(ammo_entity,
759 RandomSelection_chosen_ent.ammo_type));
763 float Item_GiveAmmoTo(entity item, entity player, int resource_type, float ammomax)
765 float amount = GetResourceAmount(item, resource_type);
770 float player_amount = GetResourceAmount(player, resource_type);
771 if (item.spawnshieldtime)
773 if ((player_amount >= ammomax) && (item.pickup_anyway <= 0))
777 GiveResourceWithLimit(player, resource_type, amount, ammomax);
780 if (g_weapon_stay != 2)
784 GiveResourceWithLimit(player, resource_type, amount, min(amount, ammomax));
788 float Item_GiveTo(entity item, entity player)
792 // if nothing happens to player, just return without taking the item
794 int _switchweapon = 0;
795 // in case the player has autoswitch enabled do the following:
796 // if the player is using their best weapon before items are given, they
797 // probably want to switch to an even better weapon after items are given
799 if(CS(player).autoswitch)
801 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
803 .entity weaponentity = weaponentities[slot];
804 if(player.(weaponentity).m_weapon != WEP_Null || slot == 0)
806 if(player.(weaponentity).m_switchweapon == w_getbestweapon(player, weaponentity))
807 _switchweapon |= BIT(slot);
809 if(!(player.weapons & WepSet_FromWeapon(player.(weaponentity).m_switchweapon)))
810 _switchweapon |= BIT(slot);
814 pickedup |= Item_GiveAmmoTo(item, player, RESOURCE_HEALTH, item.max_health);
815 pickedup |= Item_GiveAmmoTo(item, player, RESOURCE_ARMOR, item.max_armorvalue);
816 pickedup |= Item_GiveAmmoTo(item, player, RESOURCE_SHELLS, g_pickup_shells_max);
817 pickedup |= Item_GiveAmmoTo(item, player, RESOURCE_BULLETS, g_pickup_nails_max);
818 pickedup |= Item_GiveAmmoTo(item, player, RESOURCE_ROCKETS, g_pickup_rockets_max);
819 pickedup |= Item_GiveAmmoTo(item, player, RESOURCE_CELLS, g_pickup_cells_max);
820 pickedup |= Item_GiveAmmoTo(item, player, RESOURCE_PLASMA, g_pickup_plasma_max);
821 pickedup |= Item_GiveAmmoTo(item, player, RESOURCE_FUEL, g_pickup_fuel_max);
822 if (item.itemdef.instanceOfWeaponPickup)
826 w &= ~player.weapons;
828 if (w || (item.spawnshieldtime && item.pickup_anyway > 0))
831 FOREACH(Weapons, it != WEP_Null, {
832 if(w & (it.m_wepset))
834 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
836 .entity weaponentity = weaponentities[slot];
837 if(player.(weaponentity).m_weapon != WEP_Null || slot == 0)
838 W_DropEvent(wr_pickup, player, it.m_id, item, weaponentity);
840 W_GiveWeapon(player, it.m_id);
846 if (item.itemdef.instanceOfPowerup)
848 if ((item.itemdef == ITEM_JetpackRegen) && !(player.items & IT_FUEL_REGEN))
849 Send_Notification(NOTIF_ONE, player, MSG_CENTER, CENTER_ITEM_FUELREGEN_GOT);
850 else if ((item.itemdef == ITEM_Jetpack) && !(player.items & IT_JETPACK))
851 Send_Notification(NOTIF_ONE, player, MSG_CENTER, CENTER_ITEM_JETPACK_GOT);
855 if((its = (item.items - (item.items & player.items)) & IT_PICKUPMASK))
859 Send_Notification(NOTIF_ONE, player, MSG_INFO, INFO_ITEM_WEAPON_GOT, item.netname);
862 if (item.strength_finished)
865 player.strength_finished = max(player.strength_finished, time) + item.strength_finished;
867 if (item.invincible_finished)
870 player.invincible_finished = max(player.invincible_finished, time) + item.invincible_finished;
872 if (item.superweapons_finished)
875 player.superweapons_finished = max(player.superweapons_finished, time) + item.superweapons_finished;
878 // always eat teamed entities
885 // crude hack to enforce switching weapons
886 if(g_cts && item.itemdef.instanceOfWeaponPickup)
888 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
890 .entity weaponentity = weaponentities[slot];
891 if(player.(weaponentity).m_weapon != WEP_Null || slot == 0)
892 W_SwitchWeapon_Force(player, Weapons_from(item.weapon), weaponentity);
899 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
901 .entity weaponentity = weaponentities[slot];
902 if(_switchweapon & BIT(slot))
903 if(player.(weaponentity).m_switchweapon != w_getbestweapon(player, weaponentity))
904 W_SwitchWeapon_Force(player, w_getbestweapon(player, weaponentity), weaponentity);
911 void Item_Touch(entity this, entity toucher)
913 // remove the item if it's currnetly in a NODROP brush or hits a NOIMPACT surface (such as sky)
914 if (Item_IsLoot(this))
916 if (ITEM_TOUCH_NEEDKILL())
923 if(!(toucher.flags & FL_PICKUPITEMS)
924 || STAT(FROZEN, toucher)
926 || (this.solid != SOLID_TRIGGER)
927 || (this.owner == toucher)
928 || (time < this.item_spawnshieldtime)
931 switch (MUTATOR_CALLHOOK(ItemTouch, this, toucher))
933 case MUT_ITEMTOUCH_RETURN: { return; }
934 case MUT_ITEMTOUCH_PICKUP: { toucher = M_ARGV(1, entity); goto pickup; }
937 toucher = M_ARGV(1, entity);
939 if (Item_IsExpiring(this))
941 this.strength_finished = max(0, this.strength_finished - time);
942 this.invincible_finished = max(0, this.invincible_finished - time);
943 this.superweapons_finished = max(0, this.superweapons_finished - time);
945 bool gave = ITEM_HANDLE(Pickup, this.itemdef, this, toucher);
948 if (Item_IsExpiring(this))
950 // undo what we did above
951 this.strength_finished += time;
952 this.invincible_finished += time;
953 this.superweapons_finished += time;
960 STAT(LAST_PICKUP, toucher) = time;
962 Send_Effect(EFFECT_ITEM_PICKUP, CENTER_OR_VIEWOFS(this), '0 0 0', 1);
963 _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);
965 MUTATOR_CALLHOOK(ItemTouched, this, toucher);
971 if (Item_IsLoot(this))
976 if (!this.spawnshieldtime)
983 RandomSelection_Init();
984 IL_EACH(g_items, it.team == this.team,
986 if (it.itemdef) // is a registered item
989 it.scheduledrespawntime = 0;
990 RandomSelection_AddEnt(it, it.cnt, 0);
993 e = RandomSelection_chosen_ent;
994 Item_Show(e, 1); // reset its state so it is visible (extra sendflags doesn't matter, this happens anyway)
998 Item_ScheduleRespawn(e);
1001 void Item_Reset(entity this)
1003 Item_Show(this, !this.state);
1004 setorigin(this, this.origin);
1006 if (Item_IsLoot(this))
1010 setthink(this, Item_Think);
1011 this.nextthink = time;
1012 if (this.waypointsprite_attached)
1014 WaypointSprite_Kill(this.waypointsprite_attached);
1016 if (this.itemdef.instanceOfPowerup || (this.weapons & WEPSET_SUPERWEAPONS)) // do not spawn powerups initially!
1018 Item_ScheduleInitialRespawn(this);
1022 void Item_FindTeam(entity this)
1026 if(this.effects & EF_NODRAW)
1028 // marker for item team search
1029 LOG_TRACE("Initializing item team ", ftos(this.team));
1030 RandomSelection_Init();
1031 IL_EACH(g_items, it.team == this.team,
1033 if(it.itemdef) // is a registered item
1034 RandomSelection_AddEnt(it, it.cnt, 0);
1037 e = RandomSelection_chosen_ent;
1041 IL_EACH(g_items, it.team == this.team,
1043 if(it.itemdef) // is a registered item
1047 // make it non-spawned
1049 it.state = 1; // state 1 = initially hidden item, apparently
1051 it.effects &= ~EF_NODRAW;
1059 // Savage: used for item garbage-collection
1060 void RemoveItem(entity this)
1062 if(wasfreed(this) || !this) { return; }
1063 Send_Effect(EFFECT_ITEM_PICKUP, CENTER_OR_VIEWOFS(this), '0 0 0', 1);
1067 // pickup evaluation functions
1068 // these functions decide how desirable an item is to the bots
1070 float generic_pickupevalfunc(entity player, entity item) {return item.bot_pickupbasevalue;}
1072 float weapon_pickupevalfunc(entity player, entity item)
1074 // See if I have it already
1075 if(player.weapons & item.weapons)
1077 // If I can pick it up
1078 if(!item.spawnshieldtime)
1080 return ammo_pickupevalfunc(player, item);
1083 // reduce weapon value if bot already got a good arsenal
1085 int weapons_value = 0;
1086 FOREACH(Weapons, it != WEP_Null && (player.weapons & it.m_wepset), {
1087 weapons_value += it.bot_pickupbasevalue;
1089 c -= bound(0, weapons_value / 20000, 1) * 0.5;
1091 return item.bot_pickupbasevalue * c;
1094 float ammo_pickupevalfunc(entity player, entity item)
1096 bool need_shells = false, need_nails = false, need_rockets = false, need_cells = false, need_plasma = false, need_fuel = false;
1101 // Detect needed ammo
1102 if(item.itemdef.instanceOfWeaponPickup)
1105 if(item.ammo_shells) { need_shells = true; ammo = ITEM_Shells; }
1106 else if(item.ammo_nails) { need_nails = true; ammo = ITEM_Bullets; }
1107 else if(item.ammo_rockets) { need_rockets = true; ammo = ITEM_Rockets; }
1108 else if(item.ammo_cells) { need_cells = true; ammo = ITEM_Cells; }
1109 else if(item.ammo_plasma) { need_plasma = true; ammo = ITEM_Plasma; }
1110 else if(item.ammo_fuel) { need_fuel = true; ammo = ITEM_JetpackFuel; }
1115 rating = ammo.m_botvalue;
1119 FOREACH(Weapons, it != WEP_Null, {
1120 if(!(player.weapons & (it.m_wepset)))
1123 switch(it.ammo_type)
1125 case RESOURCE_SHELLS: need_shells = true; break;
1126 case RESOURCE_BULLETS: need_nails = true; break;
1127 case RESOURCE_ROCKETS: need_rockets = true; break;
1128 case RESOURCE_CELLS: need_cells = true; break;
1129 case RESOURCE_PLASMA: need_plasma = true; break;
1130 case RESOURCE_FUEL: need_fuel = true; break;
1133 rating = item.bot_pickupbasevalue;
1136 float noammorating = 0.5;
1138 if ((need_shells) && (item.ammo_shells) && (player.ammo_shells < g_pickup_shells_max))
1139 c = item.ammo_shells / max(noammorating, player.ammo_shells);
1141 if ((need_nails) && (item.ammo_nails) && (player.ammo_nails < g_pickup_nails_max))
1142 c = item.ammo_nails / max(noammorating, player.ammo_nails);
1144 if ((need_rockets) && (item.ammo_rockets) && (player.ammo_rockets < g_pickup_rockets_max))
1145 c = item.ammo_rockets / max(noammorating, player.ammo_rockets);
1147 if ((need_cells) && (item.ammo_cells) && (player.ammo_cells < g_pickup_cells_max))
1148 c = item.ammo_cells / max(noammorating, player.ammo_cells);
1150 if ((need_plasma) && (item.ammo_plasma) && (player.ammo_plasma < g_pickup_plasma_max))
1151 c = item.ammo_plasma / max(noammorating, player.ammo_plasma);
1153 if ((need_fuel) && (item.ammo_fuel) && (player.ammo_fuel < g_pickup_fuel_max))
1154 c = item.ammo_fuel / max(noammorating, player.ammo_fuel);
1156 rating *= min(c, 2);
1158 rating += wpn.bot_pickupbasevalue * 0.1;
1162 float healtharmor_pickupevalfunc(entity player, entity item)
1165 float rating = item.bot_pickupbasevalue;
1167 float itemarmor = item.armorvalue;
1168 float itemhealth = item.health;
1172 itemarmor *= min(4, item.item_group_count);
1173 itemhealth *= min(4, item.item_group_count);
1176 if (itemarmor && (player.armorvalue < item.max_armorvalue))
1177 c = itemarmor / max(1, player.armorvalue * 2/3 + player.health * 1/3);
1179 if (itemhealth && (player.health < item.max_health))
1180 c = itemhealth / max(1, player.health);
1182 rating *= min(2, c);
1186 void Item_Damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector force)
1188 if(ITEM_DAMAGE_NEEDKILL(deathtype))
1192 void item_use(entity this, entity actor, entity trigger)
1194 // use the touch function to handle collection
1195 gettouch(this)(this, actor);
1198 void _StartItem(entity this, entity def, float defaultrespawntime, float defaultrespawntimejitter)
1200 string itemname = def.m_name;
1201 Model itemmodel = def.m_model;
1202 Sound pickupsound = def.m_sound;
1203 float(entity player, entity item) pickupevalfunc = def.m_pickupevalfunc;
1204 float pickupbasevalue = def.m_botvalue;
1205 int itemflags = def.m_itemflags;
1207 startitem_failed = false;
1209 this.item_model_ent = itemmodel;
1210 this.item_pickupsound_ent = pickupsound;
1213 def.m_iteminit(this);
1215 if(!this.respawntime) // both need to be set
1217 this.respawntime = defaultrespawntime;
1218 this.respawntimejitter = defaultrespawntimejitter;
1221 if(!this.pickup_anyway && def.m_pickupanyway)
1222 this.pickup_anyway = def.m_pickupanyway();
1224 int itemid = def.m_itemid;
1225 this.items = itemid;
1226 int weaponid = def.instanceOfWeaponPickup ? def.m_weapon.m_id : 0;
1227 this.weapon = weaponid;
1231 this.fade_start = autocvar_g_items_mindist;
1232 this.fade_end = autocvar_g_items_maxdist;
1236 this.weapons = WepSet_FromWeapon(Weapons_from(weaponid));
1238 this.flags = FL_ITEM | itemflags;
1239 IL_PUSH(g_items, this);
1241 if(MUTATOR_CALLHOOK(FilterItem, this)) // error means we do not want the item
1243 startitem_failed = true;
1248 if (Item_IsLoot(this))
1250 this.reset = SUB_Remove;
1251 set_movetype(this, MOVETYPE_TOSS);
1253 // Savage: remove thrown items after a certain period of time ("garbage collection")
1254 setthink(this, RemoveItem);
1255 this.nextthink = time + 20;
1257 this.takedamage = DAMAGE_YES;
1258 this.event_damage = Item_Damage;
1260 if (Item_IsExpiring(this))
1262 // if item is worthless after a timer, have it expire then
1263 this.nextthink = max(this.strength_finished, this.invincible_finished, this.superweapons_finished);
1266 // don't drop if in a NODROP zone (such as lava)
1267 traceline(this.origin, this.origin, MOVE_NORMAL, this);
1268 if (trace_dpstartcontents & DPCONTENTS_NODROP)
1270 startitem_failed = true;
1277 if(!have_pickup_item(this))
1279 startitem_failed = true;
1284 if(this.angles != '0 0 0')
1285 this.SendFlags |= ISF_ANGLES;
1287 this.reset = Item_Reset;
1288 // it's a level item
1289 if(this.spawnflags & 1)
1291 if (this.noalign > 0)
1292 set_movetype(this, MOVETYPE_NONE);
1294 set_movetype(this, MOVETYPE_TOSS);
1295 // do item filtering according to game mode and other things
1296 if (this.noalign <= 0)
1298 // first nudge it off the floor a little bit to avoid math errors
1299 setorigin(this, this.origin + '0 0 1');
1300 // set item size before we spawn a spawnfunc_waypoint
1301 setsize(this, def.m_mins, def.m_maxs);
1302 this.SendFlags |= ISF_SIZE;
1303 // note droptofloor returns false if stuck/or would fall too far
1306 waypoint_spawnforitem(this);
1310 * can't do it that way, as it would break maps
1311 * TODO make a target_give like entity another way, that perhaps has
1312 * the weapon name in a key
1315 // target_give not yet supported; maybe later
1316 print("removed targeted ", this.classname, "\n");
1317 startitem_failed = true;
1323 if(this.targetname != "" && (this.spawnflags & 16))
1324 this.use = item_use;
1326 if(autocvar_spawn_debug >= 2)
1328 // why not flags & fl_item?
1329 FOREACH_ENTITY_RADIUS(this.origin, 3, it.is_item, {
1330 LOG_TRACE("XXX Found duplicated item: ", itemname, vtos(this.origin));
1331 LOG_TRACE(" vs ", it.netname, vtos(it.origin));
1332 error("Mapper sucks.");
1334 this.is_item = true;
1337 weaponsInMap |= WepSet_FromWeapon(Weapons_from(weaponid));
1339 precache_model(this.model);
1340 precache_sound(this.item_pickupsound);
1342 if ( def.instanceOfPowerup
1343 || def.instanceOfWeaponPickup
1344 || (def.instanceOfHealth && def != ITEM_HealthSmall)
1345 || (def.instanceOfArmor && def != ITEM_ArmorSmall)
1346 || (itemid & (IT_KEY1 | IT_KEY2))
1347 ) this.target = "###item###"; // for finding the nearest item using find()
1349 Item_ItemsTime_SetTime(this, 0);
1352 this.bot_pickup = true;
1353 this.bot_pickupevalfunc = pickupevalfunc;
1354 this.bot_pickupbasevalue = pickupbasevalue;
1355 this.mdl = this.model ? this.model : strzone(this.item_model_ent.model_str());
1356 this.netname = itemname;
1357 settouch(this, Item_Touch);
1358 setmodel(this, MDL_Null); // precision set below
1359 //this.effects |= EF_LOWPRECISION;
1361 setsize (this, this.pos1 = def.m_mins, this.pos2 = def.m_maxs);
1363 this.SendFlags |= ISF_SIZE;
1365 if (!(this.spawnflags & 1024)) {
1366 if(def.instanceOfPowerup)
1367 this.ItemStatus |= ITS_ANIMATE1;
1369 if(this.armorvalue || this.health)
1370 this.ItemStatus |= ITS_ANIMATE2;
1373 if(def.instanceOfWeaponPickup)
1375 if (!Item_IsLoot(this)) // if dropped, colormap is already set up nicely
1376 this.colormap = 1024; // color shirt=0 pants=0 grey
1379 if (!(this.spawnflags & 1024))
1380 this.ItemStatus |= ITS_ANIMATE1;
1381 this.SendFlags |= ISF_COLORMAP;
1385 if(this.team) // broken, no idea why.
1388 this.cnt = 1; // item probability weight
1390 this.effects |= EF_NODRAW; // marker for item team search
1391 InitializeEntity(this, Item_FindTeam, INITPRIO_FINDTARGET);
1396 Net_LinkEntity(this, !(def.instanceOfPowerup || def.instanceOfHealth || def.instanceOfArmor), 0, ItemSend);
1398 // call this hook after everything else has been done
1399 if (MUTATOR_CALLHOOK(Item_Spawn, this))
1401 startitem_failed = true;
1409 void StartItem(entity this, GameItem def)
1411 def = def.m_spawnfunc_hookreplace(def, this);
1412 if (def.spawnflags & ITEM_FLAG_MUTATORBLOCKED)
1417 this.classname = def.m_canonical_spawnfunc;
1421 def.m_respawntime(), // defaultrespawntime
1422 def.m_respawntimejitter() // defaultrespawntimejitter
1426 #define IS_SMALL(def) ((def.instanceOfHealth && def == ITEM_HealthSmall) || (def.instanceOfArmor && def == ITEM_ArmorSmall))
1427 int group_count = 1;
1429 void setItemGroup(entity this)
1431 if(!IS_SMALL(this.itemdef))
1434 FOREACH_ENTITY_RADIUS(this.origin, 120, (it != this) && IS_SMALL(it.itemdef),
1436 if(!this.item_group)
1440 it.item_group = group_count;
1443 this.item_group = it.item_group;
1445 else // spawning item is already part of a item_group X
1448 it.item_group = this.item_group;
1449 else if(it.item_group != this.item_group) // found an item near the spawning item that is part of a different item_group Y
1451 int grY = it.item_group;
1452 // move all items of item_group Y to item_group X
1453 IL_EACH(g_items, IS_SMALL(it.itemdef),
1455 if(it.item_group == grY)
1456 it.item_group = this.item_group;
1463 void setItemGroupCount()
1465 for (int k = 1; k <= group_count; k++)
1468 IL_EACH(g_items, IS_SMALL(it.itemdef) && it.item_group == k, { count++; });
1470 IL_EACH(g_items, IS_SMALL(it.itemdef) && it.item_group == k, { it.item_group_count = count; });
1474 void target_items_use(entity this, entity actor, entity trigger)
1476 if(Item_IsLoot(actor))
1478 EXACTTRIGGER_TOUCH(this, trigger);
1483 if (!IS_PLAYER(actor) || IS_DEAD(actor))
1486 if(trigger.solid == SOLID_TRIGGER)
1488 EXACTTRIGGER_TOUCH(this, trigger);
1491 IL_EACH(g_items, it.enemy == actor && Item_IsLoot(it),
1496 if(GiveItems(actor, 0, tokenize_console(this.netname)))
1497 centerprint(actor, this.message);
1500 spawnfunc(target_items)
1505 this.use = target_items_use;
1506 if(!this.strength_finished)
1507 this.strength_finished = autocvar_g_balance_powerup_strength_time;
1508 if(!this.invincible_finished)
1509 this.invincible_finished = autocvar_g_balance_powerup_invincible_time;
1510 if(!this.superweapons_finished)
1511 this.superweapons_finished = autocvar_g_balance_superweapons_time;
1513 n = tokenize_console(this.netname);
1514 if(argv(0) == "give")
1516 this.netname = substring(this.netname, argv_start_index(1), argv_end_index(-1) - argv_start_index(1));
1520 for(int j = 0; j < n; ++j)
1522 if (argv(j) == "unlimited_ammo") this.items |= IT_UNLIMITED_AMMO;
1523 else if(argv(j) == "unlimited_weapon_ammo") this.items |= IT_UNLIMITED_WEAPON_AMMO;
1524 else if(argv(j) == "unlimited_superweapons") this.items |= IT_UNLIMITED_SUPERWEAPONS;
1525 else if(argv(j) == "strength") this.items |= ITEM_Strength.m_itemid;
1526 else if(argv(j) == "invincible") this.items |= ITEM_Shield.m_itemid;
1527 else if(argv(j) == "superweapons") this.items |= IT_SUPERWEAPON;
1528 else if(argv(j) == "jetpack") this.items |= ITEM_Jetpack.m_itemid;
1529 else if(argv(j) == "fuel_regen") this.items |= ITEM_JetpackRegen.m_itemid;
1532 FOREACH(Buffs, it != BUFF_Null,
1534 s = Buff_UndeprecateName(argv(j));
1537 STAT(BUFFS, this) |= (it.m_itemid);
1541 FOREACH(Weapons, it != WEP_Null, {
1542 s = W_UndeprecateName(argv(j));
1545 this.weapons |= (it.m_wepset);
1546 if(this.spawnflags == 0 || this.spawnflags == 2)
1554 string itemprefix, valueprefix;
1555 if(this.spawnflags == 0)
1560 else if(this.spawnflags == 1)
1562 itemprefix = "max ";
1563 valueprefix = "max ";
1565 else if(this.spawnflags == 2)
1567 itemprefix = "min ";
1568 valueprefix = "min ";
1570 else if(this.spawnflags == 4)
1572 itemprefix = "minus ";
1573 valueprefix = "max ";
1577 error("invalid spawnflags");
1578 itemprefix = valueprefix = string_null;
1582 this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, boolean(this.items & IT_UNLIMITED_WEAPON_AMMO), "unlimited_weapon_ammo");
1583 this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, boolean(this.items & IT_UNLIMITED_SUPERWEAPONS), "unlimited_superweapons");
1584 this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, this.strength_finished * boolean(this.items & ITEM_Strength.m_itemid), "strength");
1585 this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, this.invincible_finished * boolean(this.items & ITEM_Shield.m_itemid), "invincible");
1586 this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, this.superweapons_finished * boolean(this.items & IT_SUPERWEAPON), "superweapons");
1587 this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, boolean(this.items & ITEM_Jetpack.m_itemid), "jetpack");
1588 this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, boolean(this.items & ITEM_JetpackRegen.m_itemid), "fuel_regen");
1589 if(this.ammo_shells != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_shells), "shells");
1590 if(this.ammo_nails != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_nails), "nails");
1591 if(this.ammo_rockets != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_rockets), "rockets");
1592 if(this.ammo_cells != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_cells), "cells");
1593 if(this.ammo_plasma != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_plasma), "plasma");
1594 if(this.ammo_fuel != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.ammo_fuel), "fuel");
1595 if(this.health != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.health), "health");
1596 if(this.armorvalue != 0) this.netname = sprintf("%s %s%d %s", this.netname, valueprefix, max(0, this.armorvalue), "armor");
1597 FOREACH(Buffs, it != BUFF_Null, this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, !!(STAT(BUFFS, this) & (it.m_itemid)), it.m_name));
1598 FOREACH(Weapons, it != WEP_Null, this.netname = sprintf("%s %s%d %s", this.netname, itemprefix, !!(this.weapons & (it.m_wepset)), it.netname));
1600 this.netname = strzone(this.netname);
1601 //print(this.netname, "\n");
1603 n = tokenize_console(this.netname);
1604 for(int j = 0; j < n; ++j)
1606 FOREACH(Weapons, it != WEP_Null && W_UndeprecateName(argv(j)) == it.netname, {
1613 float GiveWeapon(entity e, float wpn, float op, float val)
1616 WepSet s = WepSet_FromWeapon(Weapons_from(wpn));
1617 v0 = (e.weapons & s);
1640 v1 = (e.weapons & s);
1644 bool GiveBuff(entity e, Buff thebuff, int op, int val)
1646 bool had_buff = (STAT(BUFFS, e) & thebuff.m_itemid);
1651 STAT(BUFFS, e) |= thebuff.m_itemid;
1653 STAT(BUFFS, e) &= ~thebuff.m_itemid;
1658 STAT(BUFFS, e) |= thebuff.m_itemid;
1662 STAT(BUFFS, e) &= ~thebuff.m_itemid;
1666 STAT(BUFFS, e) &= ~thebuff.m_itemid;
1669 bool have_buff = (STAT(BUFFS, e) & thebuff.m_itemid);
1670 return (had_buff != have_buff);
1673 void GiveSound(entity e, float v0, float v1, float t, Sound snd_incr, Sound snd_decr)
1679 if(snd_decr != NULL)
1680 sound (e, CH_TRIGGER, snd_decr, VOL_BASE, ATTEN_NORM);
1682 else if(v0 >= v0 + t)
1684 if(snd_incr != NULL)
1685 sound (e, CH_TRIGGER, snd_incr, VOL_BASE, ATTEN_NORM);
1689 void GiveRot(entity e, float v0, float v1, .float rotfield, float rottime, .float regenfield, float regentime)
1692 e.(rotfield) = max(e.(rotfield), time + rottime);
1694 e.(regenfield) = max(e.(regenfield), time + regentime);
1696 float GiveItems(entity e, float beginarg, float endarg)
1698 float got, i, val, op;
1706 int _switchweapon = 0;
1708 if(CS(e).autoswitch)
1710 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1712 .entity weaponentity = weaponentities[slot];
1713 if(e.(weaponentity).m_weapon != WEP_Null || slot == 0)
1714 if(e.(weaponentity).m_switchweapon == w_getbestweapon(e, weaponentity))
1715 _switchweapon |= BIT(slot);
1719 e.strength_finished = max(0, e.strength_finished - time);
1720 e.invincible_finished = max(0, e.invincible_finished - time);
1721 e.superweapons_finished = max(0, e.superweapons_finished - time);
1725 PREGIVE(e, strength_finished);
1726 PREGIVE(e, invincible_finished);
1727 PREGIVE(e, superweapons_finished);
1728 PREGIVE(e, ammo_nails);
1729 PREGIVE(e, ammo_cells);
1730 PREGIVE(e, ammo_plasma);
1731 PREGIVE(e, ammo_shells);
1732 PREGIVE(e, ammo_rockets);
1733 PREGIVE(e, ammo_fuel);
1734 PREGIVE(e, armorvalue);
1737 for(i = beginarg; i < endarg; ++i)
1741 if(cmd == "0" || stof(cmd))
1765 got += GiveBit(e, items, ITEM_JetpackRegen.m_itemid, op, val);
1766 got += GiveValue(e, strength_finished, op, val);
1767 got += GiveValue(e, invincible_finished, op, val);
1768 got += GiveValue(e, superweapons_finished, op, val);
1769 got += GiveBit(e, items, IT_UNLIMITED_AMMO, op, val);
1771 got += GiveBit(e, items, ITEM_Jetpack.m_itemid, op, val);
1772 got += GiveValue(e, health, op, val);
1773 got += GiveValue(e, armorvalue, op, val);
1775 FOREACH(Weapons, it != WEP_Null && !(it.spawnflags & WEP_FLAG_MUTATORBLOCKED), got += GiveWeapon(e, it.m_id, op, val));
1776 //case "allbuffs": // all buffs makes a player god, do not want!
1777 //FOREACH(Buffs, it != BUFF_Null, got += GiveBuff(e, it.m_itemid, op, val));
1779 got += GiveValue(e, ammo_cells, op, val);
1780 got += GiveValue(e, ammo_plasma, op, val);
1781 got += GiveValue(e, ammo_shells, op, val);
1782 got += GiveValue(e, ammo_nails, op, val);
1783 got += GiveValue(e, ammo_rockets, op, val);
1784 got += GiveValue(e, ammo_fuel, op, val);
1786 case "unlimited_ammo":
1787 got += GiveBit(e, items, IT_UNLIMITED_AMMO, op, val);
1789 case "unlimited_weapon_ammo":
1790 got += GiveBit(e, items, IT_UNLIMITED_WEAPON_AMMO, op, val);
1792 case "unlimited_superweapons":
1793 got += GiveBit(e, items, IT_UNLIMITED_SUPERWEAPONS, op, val);
1796 got += GiveBit(e, items, ITEM_Jetpack.m_itemid, op, val);
1799 got += GiveBit(e, items, ITEM_JetpackRegen.m_itemid, op, val);
1802 got += GiveValue(e, strength_finished, op, val);
1805 got += GiveValue(e, invincible_finished, op, val);
1807 case "superweapons":
1808 got += GiveValue(e, superweapons_finished, op, val);
1811 got += GiveValue(e, ammo_cells, op, val);
1814 got += GiveValue(e, ammo_plasma, op, val);
1817 got += GiveValue(e, ammo_shells, op, val);
1821 got += GiveValue(e, ammo_nails, op, val);
1824 got += GiveValue(e, ammo_rockets, op, val);
1827 got += GiveValue(e, health, op, val);
1830 got += GiveValue(e, armorvalue, op, val);
1833 got += GiveValue(e, ammo_fuel, op, val);
1836 FOREACH(Buffs, it != BUFF_Null && Buff_UndeprecateName(cmd) == it.m_name,
1838 got += GiveBuff(e, it, op, val);
1841 FOREACH(Weapons, it != WEP_Null && W_UndeprecateName(cmd) == it.netname, {
1842 got += GiveWeapon(e, it.m_id, op, val);
1851 POSTGIVE_BIT(e, items, ITEM_JetpackRegen.m_itemid, SND_ITEMPICKUP, SND_Null);
1852 POSTGIVE_BIT(e, items, IT_UNLIMITED_SUPERWEAPONS, SND_POWERUP, SND_POWEROFF);
1853 POSTGIVE_BIT(e, items, IT_UNLIMITED_WEAPON_AMMO, SND_POWERUP, SND_POWEROFF);
1854 POSTGIVE_BIT(e, items, ITEM_Jetpack.m_itemid, SND_ITEMPICKUP, SND_Null);
1855 FOREACH(Weapons, it != WEP_Null, {
1856 POSTGIVE_WEAPON(e, it, SND_WEAPONPICKUP, SND_Null);
1857 if(!(save_weapons & (it.m_wepset)))
1858 if(e.weapons & (it.m_wepset))
1861 POSTGIVE_VALUE(e, strength_finished, 1, SND_POWERUP, SND_POWEROFF);
1862 POSTGIVE_VALUE(e, invincible_finished, 1, SND_Shield, SND_POWEROFF);
1863 //POSTGIVE_VALUE(e, superweapons_finished, 1, SND_Null, SND_Null);
1864 POSTGIVE_VALUE(e, ammo_nails, 0, SND_ITEMPICKUP, SND_Null);
1865 POSTGIVE_VALUE(e, ammo_cells, 0, SND_ITEMPICKUP, SND_Null);
1866 POSTGIVE_VALUE(e, ammo_plasma, 0, SND_ITEMPICKUP, SND_Null);
1867 POSTGIVE_VALUE(e, ammo_shells, 0, SND_ITEMPICKUP, SND_Null);
1868 POSTGIVE_VALUE(e, ammo_rockets, 0, SND_ITEMPICKUP, SND_Null);
1869 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);
1870 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);
1871 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);
1873 if(e.superweapons_finished <= 0)
1874 if(e.weapons & WEPSET_SUPERWEAPONS)
1875 e.superweapons_finished = autocvar_g_balance_superweapons_time;
1877 if(e.strength_finished <= 0)
1878 e.strength_finished = 0;
1880 e.strength_finished += time;
1881 if(e.invincible_finished <= 0)
1882 e.invincible_finished = 0;
1884 e.invincible_finished += time;
1885 if(e.superweapons_finished <= 0)
1886 e.superweapons_finished = 0;
1888 e.superweapons_finished += time;
1890 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1892 .entity weaponentity = weaponentities[slot];
1893 if(e.(weaponentity).m_weapon != WEP_Null || slot == 0)
1894 if(!(e.weapons & WepSet_FromWeapon(e.(weaponentity).m_switchweapon)))
1895 _switchweapon |= BIT(slot);
1900 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1902 .entity weaponentity = weaponentities[slot];
1903 if(_switchweapon & BIT(slot))
1905 Weapon wep = w_getbestweapon(e, weaponentity);
1906 if(wep != e.(weaponentity).m_switchweapon)
1907 W_SwitchWeapon_Force(e, wep, weaponentity);