]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/items/items.qc
d0353866ff9007e0fe5ac16c30fe0f9e60cbde8c
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / items / items.qc
1 #include "items.qh"
2
3 #include <common/constants.qh>
4 #include <common/deathtypes/all.qh>
5 #include <common/gamemodes/gamemode/cts/cts.qh>
6 #include <common/items/_mod.qh>
7 #include <common/mapobjects/subs.qh>
8 #include <common/mapobjects/triggers.qh>
9 #include <common/monsters/_mod.qh>
10 #include <common/mutators/mutator/buffs/buffs.qh>
11 #include <common/mutators/mutator/buffs/sv_buffs.qh>
12 #include <common/mutators/mutator/powerups/_mod.qh>
13 #include <common/mutators/mutator/status_effects/_mod.qh>
14 #include <common/net_linked.qh>
15 #include <common/notifications/all.qh>
16 #include <common/resources/resources.qh>
17 #include <common/util.qh>
18 #include <common/weapons/_all.qh>
19 #include <common/wepent.qh>
20 #include <lib/warpzone/common.qh>
21 #include <lib/warpzone/util_server.qh>
22 #include <server/bot/api.qh>
23 #include <server/command/vote.qh>
24 #include <server/damage.qh>
25 #include <server/mutators/_mod.qh>
26 #include <server/teamplay.qh>
27 #include <server/weapons/common.qh>
28 #include <server/weapons/selection.qh>
29 #include <server/weapons/weaponsystem.qh>
30 #include <server/world.qh>
31
32 bool ItemSend(entity this, entity to, int sf)
33 {
34         if(this.gravity)
35                 sf |= ISF_DROP;
36         else
37                 sf &= ~ISF_DROP;
38
39         WriteHeader(MSG_ENTITY, ENT_CLIENT_ITEM);
40         WriteByte(MSG_ENTITY, sf);
41
42         //WriteByte(MSG_ENTITY, this.cnt);
43         if(sf & ISF_LOCATION)
44         {
45                 WriteVector(MSG_ENTITY, this.origin);
46         }
47
48         if(sf & ISF_ANGLES)
49         {
50                 WriteAngleVector(MSG_ENTITY, this.angles);
51         }
52
53         // sets size on the client, unused on server
54         //if(sf & ISF_SIZE)
55
56         if(sf & ISF_STATUS)
57                 WriteByte(MSG_ENTITY, this.ItemStatus);
58
59         if(sf & ISF_MODEL)
60         {
61                 WriteShort(MSG_ENTITY, bound(0, this.fade_end, 32767));
62
63                 if(this.mdl == "")
64                         LOG_TRACE("^1WARNING!^7 this.mdl is unset for item ", this.classname, "expect a crash just about now");
65
66                 WriteString(MSG_ENTITY, this.mdl);
67                 WriteByte(MSG_ENTITY, bound(0, this.skin, 255));
68         }
69
70         if(sf & ISF_COLORMAP)
71         {
72                 WriteShort(MSG_ENTITY, this.colormap);
73                 WriteByte(MSG_ENTITY, this.glowmod.x * 255.0);
74                 WriteByte(MSG_ENTITY, this.glowmod.y * 255.0);
75                 WriteByte(MSG_ENTITY, this.glowmod.z * 255.0);
76         }
77
78         if(sf & ISF_DROP)
79         {
80                 WriteVector(MSG_ENTITY, this.velocity);
81         }
82
83         return true;
84 }
85
86 void ItemUpdate(entity this)
87 {
88         this.oldorigin = this.origin;
89         this.SendFlags |= ISF_LOCATION;
90 }
91
92 void UpdateItemAfterTeleport(entity this)
93 {
94         if(getSendEntity(this) == ItemSend)
95                 ItemUpdate(this);
96 }
97
98 bool have_pickup_item(entity this)
99 {
100         if (this.itemdef.spawnflags & ITEM_FLAG_MUTATORBLOCKED)
101                 return false;
102
103         if(this.itemdef.instanceOfPowerup)
104         {
105                 if(autocvar_g_powerups > 0)
106                         return true;
107                 if(autocvar_g_powerups == 0)
108                         return false;
109         }
110         else
111         {
112                 if(autocvar_g_pickup_items > 0)
113                         return true;
114                 if(autocvar_g_pickup_items == 0)
115                         return false;
116                 if(g_weaponarena)
117                         if(STAT(WEAPONS, this) || this.itemdef.instanceOfAmmo) // no item or ammo pickups in weaponarena
118                                 return false;
119         }
120         return true;
121 }
122
123 void Item_Show(entity e, int mode)
124 {
125         e.effects &= ~(EF_ADDITIVE | EF_STARDUST | EF_FULLBRIGHT | EF_NODEPTHTEST);
126         e.ItemStatus &= ~ITS_STAYWEP;
127         entity def = e.itemdef;
128         if (mode > 0)
129         {
130                 // make the item look normal, and be touchable
131                 e.model = e.mdl;
132                 e.solid = SOLID_TRIGGER;
133                 e.spawnshieldtime = 1;
134                 e.ItemStatus |= ITS_AVAILABLE;
135         }
136         else if (mode < 0)
137         {
138                 // hide the item completely
139                 e.model = string_null;
140                 e.solid = SOLID_NOT;
141                 e.spawnshieldtime = 1;
142                 e.ItemStatus &= ~ITS_AVAILABLE;
143         }
144         else
145         {
146                 bool nostay = def.instanceOfWeaponPickup ? !!(def.m_weapon.m_wepset & WEPSET_SUPERWEAPONS) : false // no weapon-stay on superweapons
147                         || e.team // weapon stay isn't supported for teamed weapons
148                         ;
149                 if(def.instanceOfWeaponPickup && !nostay && g_weapon_stay)
150                 {
151                         // make the item translucent and not touchable
152                         e.model = e.mdl;
153                         e.solid = SOLID_TRIGGER; // can STILL be picked up!
154                         e.effects |= EF_STARDUST;
155                         e.spawnshieldtime = 0; // field indicates whether picking it up may give you anything other than the weapon
156                         e.ItemStatus |= (ITS_AVAILABLE | ITS_STAYWEP);
157                 }
158                 else
159                 {
160                         e.solid = SOLID_NOT;
161                         e.spawnshieldtime = 1;
162                         e.ItemStatus &= ~ITS_AVAILABLE;
163                 }
164         }
165
166         if (def.m_glow)
167                 e.ItemStatus |= ITS_GLOW;
168
169         if (autocvar_g_nodepthtestitems)
170                 e.effects |= EF_NODEPTHTEST;
171
172         if (autocvar_g_fullbrightitems)
173                 e.ItemStatus |= ITS_ALLOWFB;
174         else
175                 e.ItemStatus &= ~ITS_ALLOWFB;
176
177         if (autocvar_sv_simple_items)
178                 e.ItemStatus |= ITS_ALLOWSI;
179
180         // relink entity (because solid may have changed)
181         setorigin(e, e.origin);
182         e.SendFlags |= ISF_STATUS;
183 }
184
185 void Item_Think(entity this)
186 {
187         if (Item_IsLoot(this))
188         {
189                 if (time < this.wait - IT_DESPAWNFX_TIME)
190                         this.nextthink = min(time + IT_UPDATE_INTERVAL, this.wait - IT_DESPAWNFX_TIME); // ensuring full time for effects
191                 else
192                 {
193                         // despawning soon, start effects
194                         this.ItemStatus |= ITS_EXPIRING;
195                         this.SendFlags |= ISF_STATUS;
196                         if (time < this.wait - IT_UPDATE_INTERVAL)
197                                 this.nextthink = time + IT_UPDATE_INTERVAL;
198                         else
199                         {
200                                 setthink(this, RemoveItem);
201                                 this.nextthink = this.wait;
202                         }
203                 }
204
205                 if (this.itemdef.instanceOfPowerup)
206                         powerups_DropItem_Think(this);
207
208                 // caution: kludge FIXME (with sv_legacy_bbox_expand)
209                 // this works around prediction errors caused by bbox discrepancy between SVQC and CSQC
210                 if (this.velocity == '0 0 0' && IS_ONGROUND(this))
211                         this.gravity = 0; // don't send ISF_DROP anymore
212
213                 // send slow updates even if the item didn't move
214                 // recovers prediction desyncs where server thinks item stopped, client thinks it didn't
215                 ItemUpdate(this);
216         }
217         else
218         {
219                 // bones_was_here: TODO: predict movers, enable client prediction of items with a groundentity,
220                 // and then send those less often too (and not all on the same frame)
221                 this.nextthink = time;
222
223                 if(this.origin != this.oldorigin)
224                         ItemUpdate(this);
225         }
226 }
227
228 bool Item_ItemsTime_SpectatorOnly(GameItem it);
229 bool Item_ItemsTime_Allow(GameItem it);
230 float Item_ItemsTime_UpdateTime(entity e, float t);
231 void Item_ItemsTime_SetTime(entity e, float t);
232 void Item_ItemsTime_SetTimesForAllPlayers();
233
234 void Item_Respawn(entity this)
235 {
236         Item_Show(this, 1);
237         sound(this, CH_TRIGGER, this.itemdef.m_respawnsound, VOL_BASE, ATTEN_NORM);     // play respawn sound
238
239         if (Item_ItemsTime_Allow(this.itemdef) || (STAT(WEAPONS, this) & WEPSET_SUPERWEAPONS))
240         {
241                 float t = Item_ItemsTime_UpdateTime(this, 0);
242                 Item_ItemsTime_SetTime(this, t);
243                 Item_ItemsTime_SetTimesForAllPlayers();
244         }
245
246         setthink(this, Item_Think);
247         this.nextthink = time;
248 }
249
250 void Item_RespawnCountdown(entity this)
251 {
252         if(this.item_respawncounter >= ITEM_RESPAWN_TICKS)
253         {
254                 if(this.waypointsprite_attached)
255                         WaypointSprite_Kill(this.waypointsprite_attached);
256                 Item_Respawn(this);
257         }
258         else
259         {
260                 this.nextthink = time + 1;
261                 this.item_respawncounter += 1;
262                 if(this.item_respawncounter == 1)
263                 {
264                         do {
265                                 {
266                                         entity wi = REGISTRY_GET(Weapons, this.weapon);
267                                         if (wi != WEP_Null) {
268                                                 entity wp = WaypointSprite_Spawn(WP_Weapon, 0, 0, this, '0 0 64', NULL, 0, this, waypointsprite_attached, true, RADARICON_Weapon);
269                                                 wp.wp_extra = wi.m_id;
270                                                 break;
271                                         }
272                                 }
273                                 {
274                                         entity ii = this.itemdef;
275                                         if (ii != NULL) {
276                                                 entity wp = WaypointSprite_Spawn(WP_Item, 0, 0, this, '0 0 64', NULL, 0, this, waypointsprite_attached, true, RADARICON_Item);
277                                                 wp.wp_extra = ii.m_id;
278                                                 break;
279                                         }
280                                 }
281                         } while (0);
282                         bool mutator_returnvalue = MUTATOR_CALLHOOK(Item_RespawnCountdown, this);
283                         if(this.waypointsprite_attached)
284                         {
285                                 GameItem def = this.itemdef;
286                                 if (Item_ItemsTime_SpectatorOnly(def) && !mutator_returnvalue)
287                                         WaypointSprite_UpdateRule(this.waypointsprite_attached, 0, SPRITERULE_SPECTATOR);
288                                 WaypointSprite_UpdateBuildFinished(this.waypointsprite_attached, time + ITEM_RESPAWN_TICKS);
289                         }
290                 }
291
292                 if(this.waypointsprite_attached)
293                 {
294                         FOREACH_CLIENT(IS_REAL_CLIENT(it), {
295                                 if(this.waypointsprite_attached.waypointsprite_visible_for_player(this.waypointsprite_attached, it, it))
296                                 {
297                                         msg_entity = it;
298                                         soundto(MSG_ONE, this, CH_TRIGGER, SND(ITEMRESPAWNCOUNTDOWN), VOL_BASE, ATTEN_NORM, 0); // play respawn sound
299                                 }
300                         });
301
302                         WaypointSprite_Ping(this.waypointsprite_attached);
303                         //WaypointSprite_UpdateHealth(this.waypointsprite_attached, this.item_respawncounter);
304                 }
305         }
306 }
307
308 void Item_RespawnThink(entity this)
309 {
310         this.nextthink = time;
311         if(this.origin != this.oldorigin)
312                 ItemUpdate(this);
313
314         if(time >= this.wait)
315                 Item_Respawn(this);
316 }
317
318 void Item_ScheduleRespawnIn(entity e, float t)
319 {
320         // if the respawn time is longer than 10 seconds, show a waypoint, otherwise, just respawn normally
321         if ((Item_ItemsTime_Allow(e.itemdef) || (STAT(WEAPONS, e) & WEPSET_SUPERWEAPONS) || MUTATOR_CALLHOOK(Item_ScheduleRespawn, e, t)) && (t - ITEM_RESPAWN_TICKS) > 0)
322         {
323                 setthink(e, Item_RespawnCountdown);
324                 e.nextthink = time + max(0, t - ITEM_RESPAWN_TICKS);
325                 e.scheduledrespawntime = e.nextthink + ITEM_RESPAWN_TICKS;
326                 e.item_respawncounter = 0;
327                 if(Item_ItemsTime_Allow(e.itemdef) || (STAT(WEAPONS, e) & WEPSET_SUPERWEAPONS))
328                 {
329                         t = Item_ItemsTime_UpdateTime(e, e.scheduledrespawntime);
330                         Item_ItemsTime_SetTime(e, t);
331                         Item_ItemsTime_SetTimesForAllPlayers();
332                 }
333         }
334         else
335         {
336                 setthink(e, Item_RespawnThink);
337                 e.nextthink = time;
338                 e.scheduledrespawntime = time + t;
339                 e.wait = time + t;
340
341                 if(Item_ItemsTime_Allow(e.itemdef) || (STAT(WEAPONS, e) & WEPSET_SUPERWEAPONS))
342                 {
343                         t = Item_ItemsTime_UpdateTime(e, e.scheduledrespawntime);
344                         Item_ItemsTime_SetTime(e, t);
345                         Item_ItemsTime_SetTimesForAllPlayers();
346                 }
347         }
348 }
349
350 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*");
351 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");
352 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");
353
354 /// Adjust respawn time according to the number of players.
355 float adjust_respawntime(float normal_respawntime) {
356         float r = autocvar_g_pickup_respawntime_scaling_reciprocal;
357         float o = autocvar_g_pickup_respawntime_scaling_offset;
358         float l = autocvar_g_pickup_respawntime_scaling_linear;
359
360         if (r == 0 && l == 1) {
361                 return normal_respawntime;
362         }
363
364         entity balance = TeamBalance_CheckAllowedTeams(NULL);
365         TeamBalance_GetTeamCounts(balance, NULL);
366         int players = 0;
367         for (int i = 1; i <= NUM_TEAMS; ++i)
368         {
369                 if (TeamBalance_IsTeamAllowed(balance, i))
370                 {
371                         players += TeamBalance_GetNumberOfPlayers(balance, i);
372                 }
373         }
374         TeamBalance_Destroy(balance);
375
376         if (players >= 2) {
377                 return normal_respawntime * (r / (players + o) + l);
378         } else {
379                 return normal_respawntime;
380         }
381 }
382
383 void Item_ScheduleRespawn(entity e)
384 {
385         if(e.respawntime > 0)
386         {
387                 Item_Show(e, 0);
388
389                 float adjusted_respawntime = adjust_respawntime(e.respawntime);
390                 //LOG_INFOF("item %s will respawn in %f", e.classname, adjusted_respawntime);
391
392                 // range: adjusted_respawntime - respawntimejitter .. adjusted_respawntime + respawntimejitter
393                 float respawn_in = adjusted_respawntime + crandom() * e.respawntimejitter;
394                 Item_ScheduleRespawnIn(e, respawn_in);
395         }
396         else // if respawntime is -1, this item does not respawn
397                 Item_Show(e, -1);
398 }
399
400 AUTOCVAR(g_pickup_respawntime_initial_random, int, 1,
401         "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");
402
403 void Item_ScheduleInitialRespawn(entity e)
404 {
405         Item_Show(e, 0);
406
407         float spawn_in;
408         if (autocvar_g_pickup_respawntime_initial_random == 0)
409         {
410                 // range: respawntime .. respawntime + respawntimejitter
411                 spawn_in = e.respawntime + random() * e.respawntimejitter;
412         }
413         else
414         {
415                 float rnd;
416                 if (autocvar_g_pickup_respawntime_initial_random == 1)
417                 {
418                         static float shared_random = 0;
419                         // NOTE this code works only if items are scheduled at the same time (normal case)
420                         // NOTE2 random() can't return exactly 1 so this check always work as intended
421                         if (!shared_random || floor(time) > shared_random)
422                                 shared_random = floor(time) + random();
423                         rnd = shared_random - floor(time);
424                 }
425                 else
426                         rnd = random();
427
428                 // range:
429                 // if respawntime >= ITEM_RESPAWN_TICKS: ITEM_RESPAWN_TICKS .. respawntime + respawntimejitter
430                 // else: 0 .. ITEM_RESPAWN_TICKS
431                 // this is to prevent powerups spawning unexpectedly without waypoints
432                 spawn_in = ITEM_RESPAWN_TICKS + rnd * (e.respawntime + e.respawntimejitter - ITEM_RESPAWN_TICKS);
433         }
434
435         Item_ScheduleRespawnIn(e, max(0, game_starttime - time) + ((e.respawntimestart) ? e.respawntimestart : spawn_in));
436 }
437
438 void GiveRandomWeapons(entity receiver, int num_weapons, string weapon_names,
439         entity ammo_entity)
440 {
441         if (num_weapons == 0)
442         {
443                 return;
444         }
445         int num_potential_weapons = tokenize_console(weapon_names);
446         for (int give_attempt = 0; give_attempt < num_weapons; ++give_attempt)
447         {
448                 RandomSelection_Init();
449                 for (int weapon_index = 0; weapon_index < num_potential_weapons;
450                         ++weapon_index)
451                 {
452                         string weapon = argv(weapon_index);
453                         FOREACH(Weapons, it != WEP_Null,
454                         {
455                                 // Finding a weapon which player doesn't have.
456                                 if (!(STAT(WEAPONS, receiver) & it.m_wepset) && (it.netname == weapon))
457                                 {
458                                         RandomSelection_AddEnt(it, 1, 1);
459                                         break;
460                                 }
461                         });
462                 }
463                 if (RandomSelection_chosen_ent == NULL)
464                 {
465                         return;
466                 }
467                 STAT(WEAPONS, receiver) |= RandomSelection_chosen_ent.m_wepset;
468                 if (RandomSelection_chosen_ent.ammo_type == RES_NONE)
469                 {
470                         continue;
471                 }
472                 if (GetResource(receiver,
473                         RandomSelection_chosen_ent.ammo_type) != 0)
474                 {
475                         continue;
476                 }
477                 GiveResource(receiver, RandomSelection_chosen_ent.ammo_type,
478                         GetResource(ammo_entity,
479                         RandomSelection_chosen_ent.ammo_type));
480         }
481 }
482
483 bool Item_GiveAmmoTo(entity item, entity player, Resource res_type, float ammomax)
484 {
485         float amount = GetResource(item, res_type);
486         if (amount == 0)
487         {
488                 return false;
489         }
490         float player_amount = GetResource(player, res_type);
491         if (item.spawnshieldtime)
492         {
493                 if ((player_amount >= ammomax) && (item.pickup_anyway <= 0))
494                         return false;
495         }
496         else if (g_weapon_stay == 2)
497         {
498                 ammomax = min(amount, ammomax);
499                 if(player_amount >= ammomax)
500                         return false;
501         }
502         else
503                 return false;
504         if (amount < 0)
505                 TakeResourceWithLimit(player, res_type, -amount, ammomax);
506         else
507                 GiveResourceWithLimit(player, res_type, amount, ammomax);
508         return true;
509 }
510
511 void Item_NotifyWeapon(entity player, int wep)
512 {
513         FOREACH_CLIENT(IS_REAL_CLIENT(it) && (it == player || (IS_SPEC(it) && it.enemy == player)), {
514                 msg_entity = it;
515                 WriteHeader(MSG_ONE, TE_CSQC_WEAPONPICKUP);
516                 WriteByte(MSG_ONE, wep);
517         });
518 }
519
520 bool Item_GiveTo(entity item, entity player)
521 {
522         // if nothing happens to player, just return without taking the item
523         int _switchweapon = 0;
524         // in case the player has autoswitch enabled do the following:
525         // if the player is using their best weapon before items are given, they
526         // probably want to switch to an even better weapon after items are given
527
528         if(CS_CVAR(player).cvar_cl_autoswitch)
529         {
530                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
531                 {
532                         .entity weaponentity = weaponentities[slot];
533                         if(player.(weaponentity).m_weapon != WEP_Null || slot == 0)
534                         {
535                                 if(player.(weaponentity).m_switchweapon == w_getbestweapon(player, weaponentity))
536                                         _switchweapon |= BIT(slot);
537
538                                 if(!(STAT(WEAPONS, player) & WepSet_FromWeapon(player.(weaponentity).m_switchweapon)))
539                                         _switchweapon |= BIT(slot);
540                         }
541                 }
542         }
543         bool pickedup = false;
544         pickedup |= Item_GiveAmmoTo(item, player, RES_HEALTH, item.max_health);
545         pickedup |= Item_GiveAmmoTo(item, player, RES_ARMOR, item.max_armorvalue);
546         pickedup |= Item_GiveAmmoTo(item, player, RES_SHELLS, g_pickup_shells_max);
547         pickedup |= Item_GiveAmmoTo(item, player, RES_BULLETS, g_pickup_nails_max);
548         pickedup |= Item_GiveAmmoTo(item, player, RES_ROCKETS, g_pickup_rockets_max);
549         pickedup |= Item_GiveAmmoTo(item, player, RES_CELLS, g_pickup_cells_max);
550         pickedup |= Item_GiveAmmoTo(item, player, RES_PLASMA, g_pickup_plasma_max);
551         pickedup |= Item_GiveAmmoTo(item, player, RES_FUEL, g_pickup_fuel_max);
552         if (item.itemdef.instanceOfWeaponPickup)
553         {
554                 WepSet w, wp;
555                 w = STAT(WEAPONS, item);
556                 wp = w & ~STAT(WEAPONS, player);
557
558                 if (wp || (item.spawnshieldtime && item.pickup_anyway > 0))
559                 {
560                         pickedup = true;
561                         FOREACH(Weapons, it != WEP_Null, {
562                                 if(w & (it.m_wepset))
563                                         Item_NotifyWeapon(player, it.m_id);
564
565                                 if(wp & (it.m_wepset))
566                                 {
567                                         for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
568                                         {
569                                                 .entity weaponentity = weaponentities[slot];
570                                                 if(player.(weaponentity).m_weapon != WEP_Null || slot == 0)
571                                                         W_DropEvent(wr_pickup, player, it.m_id, item, weaponentity);
572                                         }
573                                         W_GiveWeapon(player, it.m_id);
574                                 }
575                         });
576                 }
577         }
578
579         if (item.itemdef.instanceOfPowerup)
580         {
581                 if ((item.itemdef == ITEM_JetpackRegen) && !(player.items & IT_FUEL_REGEN))
582                         Send_Notification(NOTIF_ONE, player, MSG_CENTER, CENTER_ITEM_FUELREGEN_GOT);
583                 else if ((item.itemdef == ITEM_Jetpack) && !(player.items & IT_JETPACK))
584                         Send_Notification(NOTIF_ONE, player, MSG_CENTER, CENTER_ITEM_JETPACK_GOT);
585         }
586
587         int its;
588         if((its = (item.items - (item.items & player.items)) & IT_PICKUPMASK))
589         {
590                 pickedup = true;
591                 player.items |= its;
592                 // TODO: we probably want to show a message in the console, but not this one!
593                 //Send_Notification(NOTIF_ONE, player, MSG_INFO, INFO_ITEM_WEAPON_GOT, item.netname);
594         }
595
596         if (item.strength_finished)
597         {
598                 pickedup = true;
599                 float t = max(StatusEffects_gettime(STATUSEFFECT_Strength, player), time);
600                 if (autocvar_g_powerups_stack)
601                         t += item.strength_finished;
602                 else
603                         t = max(t, time + item.strength_finished);
604                 StatusEffects_apply(STATUSEFFECT_Strength, player, t, 0);
605         }
606         if (item.invincible_finished)
607         {
608                 pickedup = true;
609                 float t = max(StatusEffects_gettime(STATUSEFFECT_Shield, player), time);
610                 if (autocvar_g_powerups_stack)
611                         t += item.invincible_finished;
612                 else
613                         t = max(t, time + item.invincible_finished);
614                 StatusEffects_apply(STATUSEFFECT_Shield, player, t, 0);
615         }
616         if (item.speed_finished)
617         {
618                 pickedup = true;
619                 float t = max(StatusEffects_gettime(STATUSEFFECT_Speed, player), time);
620                 if (autocvar_g_powerups_stack)
621                         t += item.speed_finished;
622                 else
623                         t = max(t, time + item.speed_finished);
624                 StatusEffects_apply(STATUSEFFECT_Speed, player, t, 0);
625         }
626         if (item.invisibility_finished)
627         {
628                 pickedup = true;
629                 float t = max(StatusEffects_gettime(STATUSEFFECT_Invisibility, player), time);
630                 if (autocvar_g_powerups_stack)
631                         t += item.invisibility_finished;
632                 else
633                         t = max(t, time + item.invisibility_finished);
634                 StatusEffects_apply(STATUSEFFECT_Invisibility, player, t, 0);
635         }
636         if (item.superweapons_finished)
637         {
638                 pickedup = true;
639                 StatusEffects_apply(STATUSEFFECT_Superweapons, player, max(StatusEffects_gettime(STATUSEFFECT_Superweapons, player), time) + item.superweapons_finished, 0);
640         }
641
642         // always eat teamed entities
643         if(item.team)
644                 pickedup = true;
645
646         if (!pickedup)
647                 return false;
648
649         // crude hack to enforce switching weapons
650         if(g_cts && item.itemdef.instanceOfWeaponPickup && !CS_CVAR(player).cvar_cl_cts_noautoswitch)
651         {
652                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
653                 {
654                         .entity weaponentity = weaponentities[slot];
655                         if(player.(weaponentity).m_weapon != WEP_Null || slot == 0)
656                                 W_SwitchWeapon_Force(player, REGISTRY_GET(Weapons, item.weapon), weaponentity);
657                 }
658                 return true;
659         }
660
661         if(_switchweapon)
662         {
663                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
664                 {
665                         .entity weaponentity = weaponentities[slot];
666                         if(_switchweapon & BIT(slot))
667                         if(player.(weaponentity).m_switchweapon != w_getbestweapon(player, weaponentity))
668                                 W_SwitchWeapon_Force(player, w_getbestweapon(player, weaponentity), weaponentity);
669                 }
670         }
671
672         return true;
673 }
674
675 void Item_Touch(entity this, entity toucher)
676 {
677         // remove the item if it's currnetly in a NODROP brush or hits a NOIMPACT surface (such as sky)
678         if (Item_IsLoot(this))
679         {
680                 if (ITEM_TOUCH_NEEDKILL())
681                 {
682                         RemoveItem(this);
683                         return;
684                 }
685         }
686
687         if(!(toucher.flags & FL_PICKUPITEMS)
688         || STAT(FROZEN, toucher)
689         || IS_DEAD(toucher)
690         || (this.solid != SOLID_TRIGGER)
691         || (this.owner == toucher)
692         || (time < this.item_spawnshieldtime)
693         ) { return; }
694
695         switch (MUTATOR_CALLHOOK(ItemTouch, this, toucher))
696         {
697                 case MUT_ITEMTOUCH_RETURN: { return; }
698                 case MUT_ITEMTOUCH_PICKUP: { toucher = M_ARGV(1, entity); goto pickup; }
699         }
700
701         toucher = M_ARGV(1, entity);
702
703         if (Item_IsExpiring(this))
704         {
705                 this.strength_finished = max(0, this.strength_finished - time);
706                 this.invincible_finished = max(0, this.invincible_finished - time);
707                 this.speed_finished = max(0, this.speed_finished - time);
708                 this.invisibility_finished = max(0, this.invisibility_finished - time);
709                 this.superweapons_finished = max(0, this.superweapons_finished - time);
710         }
711         bool gave = ITEM_HANDLE(Pickup, this.itemdef, this, toucher);
712         if (!gave)
713         {
714                 if (Item_IsExpiring(this))
715                 {
716                         // undo what we did above
717                         this.strength_finished += time;
718                         this.invincible_finished += time;
719                         this.speed_finished += time;
720                         this.invisibility_finished += time;
721                         this.superweapons_finished += time;
722                 }
723                 return;
724         }
725
726 LABEL(pickup)
727
728         if(this.target && this.target != "" && this.target != "###item###") // defrag support
729                 SUB_UseTargets(this, toucher, NULL);
730
731         STAT(LAST_PICKUP, toucher) = time;
732
733         GameItem def = this.itemdef;
734         int ch = ((def.instanceOfPowerup && def.m_itemid != IT_RESOURCE) ? CH_TRIGGER_SINGLE : CH_TRIGGER);
735         _sound(toucher, ch, this.item_pickupsound, VOL_BASE, ATTEN_NORM);
736
737         MUTATOR_CALLHOOK(ItemTouched, this, toucher);
738         if (wasfreed(this))
739         {
740                 return;
741         }
742
743         if (Item_IsLoot(this))
744         {
745                 delete(this);
746                 return;
747         }
748         if (!this.spawnshieldtime)
749         {
750                 return;
751         }
752         entity e;
753         if (this.team)
754         {
755                 RandomSelection_Init();
756                 IL_EACH(g_items, it.team == this.team,
757                 {
758                         if (it.itemdef) // is a registered item
759                         {
760                                 Item_Show(it, -1);
761                                 it.scheduledrespawntime = 0;
762                                 RandomSelection_AddEnt(it, it.cnt, 0);
763                         }
764                 });
765                 e = RandomSelection_chosen_ent;
766                 Item_Show(e, 1); // reset its state so it is visible (extra sendflags doesn't matter, this happens anyway)
767         }
768         else
769                 e = this;
770         Item_ScheduleRespawn(e);
771 }
772
773 void Item_Reset(entity this)
774 {
775         Item_Show(this, !this.state);
776
777         if (Item_IsLoot(this))
778         {
779                 return;
780         }
781         setthink(this, Item_Think);
782         this.nextthink = time;
783         if (this.waypointsprite_attached)
784         {
785                 WaypointSprite_Kill(this.waypointsprite_attached);
786         }
787         if (this.itemdef.instanceOfPowerup || (STAT(WEAPONS, this) & WEPSET_SUPERWEAPONS)) // do not spawn powerups initially!
788         {
789                 Item_ScheduleInitialRespawn(this);
790         }
791 }
792
793 void Item_FindTeam(entity this)
794 {
795         if(!(this.effects & EF_NOGUNBOB)) // marker for item team search
796                 return;
797
798         LOG_TRACE("Initializing item team ", ftos(this.team));
799         RandomSelection_Init();
800         IL_EACH(g_items, it.team == this.team,
801         {
802                 if(it.itemdef) // is a registered item
803                         RandomSelection_AddEnt(it, it.cnt, 0);
804         });
805
806         entity e = RandomSelection_chosen_ent;
807         if (!e)
808                 return;
809
810         IL_EACH(g_items, it.team == this.team,
811         {
812                 if(it.itemdef) // is a registered item
813                 {
814                         if(it != e)
815                         {
816                                 Item_Show(it, -1); // make it non-spawned
817                                 if (it.waypointsprite_attached)
818                                         WaypointSprite_Kill(it.waypointsprite_attached);
819                                 it.nextthink = 0; // disable any scheduled powerup spawn
820                         }
821                         else
822                                 Item_Reset(it);
823
824                         // leave 'this' marked so Item_FindTeam() works when called again via this.reset
825                         if(it != this)
826                                 it.effects &= ~EF_NOGUNBOB;
827                 }
828         });
829 }
830
831 void Item_CopyFields(entity this, entity to)
832 {
833         setorigin(to, this.origin);
834         to.spawnflags = this.spawnflags;
835         to.noalign = Item_ShouldKeepPosition(this);
836         to.cnt = this.cnt;
837         to.team = this.team;
838         to.spawnfunc_checked = true;
839         // TODO: copy respawn times? this may not be desirable in some cases
840         //to.respawntime = this.respawntime;
841         //to.respawntimejitter = this.respawntimejitter;
842 }
843
844 // Savage: used for item garbage-collection
845 void RemoveItem(entity this)
846 {
847         if(wasfreed(this) || !this) { return; }
848         if(this.waypointsprite_attached)
849                 WaypointSprite_Kill(this.waypointsprite_attached);
850         delete(this);
851 }
852
853 // pickup evaluation functions
854 // these functions decide how desirable an item is to the bots
855
856 float generic_pickupevalfunc(entity player, entity item) {return item.bot_pickupbasevalue;}
857
858 float weapon_pickupevalfunc(entity player, entity item)
859 {
860         // See if I have it already
861         if(STAT(WEAPONS, player) & STAT(WEAPONS, item))
862         {
863                 // If I can pick it up
864                 if(!item.spawnshieldtime)
865                         return 0;
866                 return ammo_pickupevalfunc(player, item);
867         }
868
869         // reduce weapon value if bot already got a good arsenal
870         float c = 1;
871         int weapons_value = 0;
872         FOREACH(Weapons, it != WEP_Null && (STAT(WEAPONS, player) & it.m_wepset), {
873                 weapons_value += it.bot_pickupbasevalue;
874         });
875         c -= bound(0, weapons_value / 20000, 1) * 0.5;
876
877         return item.bot_pickupbasevalue * c;
878 }
879
880 float ammo_pickupevalfunc(entity player, entity item)
881 {
882         entity item_resource = NULL; // pointer to the resource that may be associated with the given item
883         entity wpn = NULL;
884         float c = 0;
885         float rating = 0;
886
887         // detect needed ammo
888         if(item.itemdef.instanceOfWeaponPickup)
889         {
890                 entity res = item.itemdef.m_weapon.ammo_type;
891                 entity ammo = (res != RES_NONE) ? GetAmmoItem(res) : NULL;
892                 if(!ammo)
893                         return 0;
894                 if(res != RES_NONE && GetResource(item, res))
895                         item_resource = res;
896
897                 wpn = item;
898                 rating = ammo.m_botvalue;
899         }
900         else
901         {
902                 FOREACH(Weapons, it != WEP_Null, {
903                         if(!(STAT(WEAPONS, player) & (it.m_wepset)))
904                                 continue;
905                         if(it.ammo_type == RES_NONE)
906                                 continue;
907
908                         if(GetResource(item, it.ammo_type))
909                         {
910                                 item_resource = it.ammo_type;
911                                 break;
912                         }
913                 });
914                 rating = item.bot_pickupbasevalue;
915         }
916
917         float noammorating = 0.5;
918
919         if(item_resource && (GetResource(player, item_resource) < GetResourceLimit(player, item_resource)))
920                 c = GetResource(item, item_resource) / max(noammorating, GetResource(player, item_resource));
921
922         rating *= min(c, 2);
923         if(wpn)
924                 rating += wpn.bot_pickupbasevalue * 0.1;
925         return rating;
926 }
927
928 float healtharmor_pickupevalfunc(entity player, entity item)
929 {
930         float c = 0;
931         float rating = item.bot_pickupbasevalue;
932
933         float itemarmor = GetResource(item, RES_ARMOR);
934         float itemhealth = GetResource(item, RES_HEALTH);
935
936         if(item.item_group)
937         {
938                 itemarmor *= min(4, item.item_group_count);
939                 itemhealth *= min(4, item.item_group_count);
940         }
941
942         if (itemarmor && (GetResource(player, RES_ARMOR) < item.max_armorvalue))
943                 c = itemarmor / max(1, GetResource(player, RES_ARMOR) * 2/3 + GetResource(player, RES_HEALTH) * 1/3);
944
945         if (itemhealth && (GetResource(player, RES_HEALTH) < item.max_health))
946                 c = itemhealth / max(1, GetResource(player, RES_HEALTH));
947
948         rating *= min(2, c);
949         return rating;
950 }
951
952 void Item_Damage(entity this, entity inflictor, entity attacker, float damage, int deathtype, .entity weaponentity, vector hitloc, vector force)
953 {
954         if(ITEM_DAMAGE_NEEDKILL(deathtype))
955                 RemoveItem(this);
956 }
957
958 void item_use(entity this, entity actor, entity trigger)
959 {
960         // use the touch function to handle collection
961         gettouch(this)(this, actor);
962 }
963
964 // if defaultrespawntime is 0 get respawntime from the item definition
965 // if defaultrespawntimejitter is 0 get respawntimejitter from the item definition
966 void _StartItem(entity this, entity def, float defaultrespawntime, float defaultrespawntimejitter)
967 {
968         string itemname = def.m_name;
969         float(entity player, entity item) pickupevalfunc = def.m_pickupevalfunc;
970         float pickupbasevalue = def.m_botvalue;
971
972         startitem_failed = false;
973
974         this.item_model_ent = def.m_model;
975         this.item_pickupsound_ent = def.m_sound;
976         if (!this.item_pickupsound)
977                 this.item_pickupsound = Sound_fixpath(this.item_pickupsound_ent);
978
979         if(def.m_iteminit)
980                 def.m_iteminit(def, this);
981
982         if(!this.pickup_anyway && def.m_pickupanyway)
983                 this.pickup_anyway = def.m_pickupanyway();
984
985         int itemid = def.m_itemid;
986         this.items = itemid;
987         int weaponid = def.instanceOfWeaponPickup ? def.m_weapon.m_id : 0;
988         this.weapon = weaponid;
989
990         // bones_was_here TODO: implement sv_cullentities_dist and replace g_items_maxdist with it
991         if(!this.fade_end)
992                 this.fade_end = autocvar_g_items_maxdist;
993
994         if(weaponid)
995                 STAT(WEAPONS, this) = WepSet_FromWeapon(REGISTRY_GET(Weapons, weaponid));
996
997         this.flags = FL_ITEM | def.m_itemflags;
998         IL_PUSH(g_items, this);
999
1000         if(MUTATOR_CALLHOOK(FilterItem, this)) // error means we do not want the item
1001         {
1002                 startitem_failed = true;
1003                 delete(this);
1004                 return;
1005         }
1006
1007         this.mdl = this.model ? this.model : strzone(this.item_model_ent.model_str());
1008         setmodel(this, MDL_Null); // precision set below
1009         // set item size before we spawn a waypoint or droptofloor or MoveOutOfSolid
1010         setsize (this, this.pos1 = def.m_mins, this.pos2 = def.m_maxs);
1011
1012         if (Item_IsLoot(this))
1013         {
1014                 this.reset = RemoveItem;
1015
1016                 set_movetype(this, MOVETYPE_TOSS);
1017                 this.gravity = 1;
1018
1019                 setthink(this, Item_Think);
1020                 this.nextthink = time + IT_UPDATE_INTERVAL;
1021                 this.wait = time + autocvar_g_items_dropped_lifetime;
1022
1023                 this.owner = NULL; // anyone can pick this up, including the player who threw it
1024                 this.item_spawnshieldtime = time + 0.5; // but not straight away
1025
1026                 this.takedamage = DAMAGE_YES;
1027                 this.event_damage = Item_Damage;
1028                 // enable this to have thrown items burn in lava
1029                 //this.damagedbycontents = true;
1030                 //IL_PUSH(g_damagedbycontents, this);
1031
1032                 if (Item_IsExpiring(this))
1033                 {
1034                         // if item is worthless after a timer, have it expire then
1035                         this.nextthink = max(this.strength_finished, this.invincible_finished, this.superweapons_finished);
1036                 }
1037
1038                 // don't drop if in a NODROP zone (such as lava)
1039                 traceline(this.origin, this.origin, MOVE_NORMAL, this);
1040                 if (trace_dpstartcontents & DPCONTENTS_NODROP)
1041                 {
1042                         startitem_failed = true;
1043                         delete(this);
1044                         return;
1045                 }
1046         }
1047         else
1048         {
1049                 this.reset = Item_Reset;
1050
1051                 // must be done after def.m_iteminit() as that may set ITEM_FLAG_MUTATORBLOCKED
1052                 if(!have_pickup_item(this))
1053                 {
1054                         startitem_failed = true;
1055                         delete(this);
1056                         return;
1057                 }
1058
1059                 // must be done before Item_Reset() and after MUTATORBLOCKED check (blocked items may have null func ptrs)
1060                 if(!this.respawntime) // both need to be set
1061                 {
1062                         this.respawntime = defaultrespawntime ? defaultrespawntime : def.m_respawntime();
1063                         this.respawntimejitter = defaultrespawntimejitter ? defaultrespawntimejitter : def.m_respawntimejitter();
1064                 }
1065
1066                 if(this.angles != '0 0 0')
1067                         this.SendFlags |= ISF_ANGLES;
1068
1069                 if(q3compat && !this.team)
1070                 {
1071                         string t = GetField_fullspawndata(this, "team");
1072                         // bones_was_here: this hack is cheaper than changing to a .string strcmp()
1073                         if(t) this.team = crc16(false, t);
1074                 }
1075
1076                 // it's a level item
1077                 if(this.spawnflags & 1)
1078                         this.noalign = 1;
1079                 if (this.noalign > 0)
1080                         set_movetype(this, MOVETYPE_NONE);
1081                 else
1082                         set_movetype(this, MOVETYPE_TOSS);
1083                 // do item filtering according to game mode and other things
1084                 if (this.noalign <= 0)
1085                 {
1086                         // first nudge it off the floor a little bit to avoid math errors
1087                         setorigin(this, this.origin + '0 0 1');
1088                         // note droptofloor returns false if stuck/or would fall too far
1089                         if (!this.noalign)
1090                                 droptofloor(this);
1091                         waypoint_spawnforitem(this);
1092                 }
1093
1094                 /*
1095                  * can't do it that way, as it would break maps
1096                  * TODO make a target_give like entity another way, that perhaps has
1097                  * the weapon name in a key
1098                 if(this.targetname)
1099                 {
1100                         // target_give not yet supported; maybe later
1101                         print("removed targeted ", this.classname, "\n");
1102                         startitem_failed = true;
1103                         delete(this);
1104                         return;
1105                 }
1106                 */
1107
1108                 if(this.targetname != "" && (this.spawnflags & 16))
1109                         this.use = item_use;
1110
1111                 if(autocvar_spawn_debug >= 2)
1112                 {
1113                         // why not flags & fl_item?
1114                         FOREACH_ENTITY_RADIUS(this.origin, 3, it.is_item, {
1115                                 LOG_TRACE("XXX Found duplicated item: ", itemname, vtos(this.origin));
1116                                 LOG_TRACE(" vs ", it.netname, vtos(it.origin));
1117                                 error("Mapper sucks.");
1118                         });
1119                         this.is_item = true;
1120                 }
1121
1122                 weaponsInMap |= WepSet_FromWeapon(REGISTRY_GET(Weapons, weaponid));
1123
1124                 if (        def.instanceOfPowerup
1125                         ||  def.instanceOfWeaponPickup
1126                         || (def.instanceOfHealth && def != ITEM_HealthSmall)
1127                         || (def.instanceOfArmor && def != ITEM_ArmorSmall)
1128                         || (itemid & (IT_KEY1 | IT_KEY2))
1129                 )
1130                 {
1131                         if(!this.target || this.target == "")
1132                                 this.target = "###item###"; // for finding the nearest item using findnearest
1133                 }
1134
1135                 Item_ItemsTime_SetTime(this, 0);
1136
1137                 this.glowmod = def.m_color;
1138         }
1139
1140         this.bot_pickup = true;
1141         this.bot_pickupevalfunc = pickupevalfunc;
1142         this.bot_pickupbasevalue = pickupbasevalue;
1143         this.netname = itemname;
1144         settouch(this, Item_Touch);
1145         //this.effects |= EF_LOWPRECISION;
1146
1147         // support skinned models for powerups
1148         if(!this.skin)
1149                 this.skin = def.m_skin;
1150
1151         if (!(this.spawnflags & 1024)) {
1152                 if(def.instanceOfPowerup)
1153                         this.ItemStatus |= ITS_ANIMATE1;
1154
1155                 if(GetResource(this, RES_ARMOR) || GetResource(this, RES_HEALTH))
1156                         this.ItemStatus |= ITS_ANIMATE2;
1157         }
1158
1159         if(def.instanceOfWeaponPickup)
1160         {
1161                 if (!Item_IsLoot(this)) // if dropped, colormap is already set up nicely
1162                         this.colormap = 1024; // color shirt=0 pants=0 grey
1163                 if (!(this.spawnflags & 1024))
1164                         this.ItemStatus |= ITS_ANIMATE1;
1165                 this.SendFlags |= ISF_COLORMAP;
1166         }
1167
1168         this.state = 0;
1169         if(this.team)
1170         {
1171                 if(!this.cnt)
1172                         this.cnt = 1; // item probability weight
1173
1174                 this.effects |= EF_NOGUNBOB; // marker for item team search
1175                 InitializeEntity(this, Item_FindTeam, INITPRIO_FINDTARGET);
1176                 this.reset = Item_FindTeam;
1177         }
1178         else
1179                 Item_Reset(this);
1180
1181         Net_LinkEntity(this, !(def.instanceOfPowerup || def.instanceOfHealth || def.instanceOfArmor), 0, ItemSend);
1182
1183         // call this hook after everything else has been done
1184         if (MUTATOR_CALLHOOK(Item_Spawn, this))
1185         {
1186                 startitem_failed = true;
1187                 delete(this);
1188                 return;
1189         }
1190
1191         // we should be sure this item will spawn before loading its assets
1192         // CSQC handles model precaching: it may not use this model (eg simple items) and may not have connected yet
1193         //precache_model(this.mdl);
1194         precache_sound(this.item_pickupsound);
1195
1196         setItemGroup(this);
1197 }
1198
1199 void StartItem(entity this, GameItem def)
1200 {
1201         def = def.m_spawnfunc_hookreplace(def, this);
1202
1203         this.classname = def.m_canonical_spawnfunc;
1204
1205         this.itemdef = def;
1206         _StartItem(this, this.itemdef, 0, 0);
1207 }
1208
1209 #define IS_SMALL(def) ((def.instanceOfHealth && def == ITEM_HealthSmall) || (def.instanceOfArmor && def == ITEM_ArmorSmall))
1210 int group_count = 1;
1211
1212 void setItemGroup(entity this)
1213 {
1214         if(!IS_SMALL(this.itemdef) || Item_IsLoot(this))
1215                 return;
1216
1217         FOREACH_ENTITY_RADIUS(this.origin, 120, (it != this) && IS_SMALL(it.itemdef),
1218         {
1219                 if(!this.item_group)
1220                 {
1221                         if(!it.item_group)
1222                         {
1223                                 it.item_group = group_count;
1224                                 group_count++;
1225                         }
1226                         this.item_group = it.item_group;
1227                 }
1228                 else // spawning item is already part of a item_group X
1229                 {
1230                         if(!it.item_group)
1231                                 it.item_group = this.item_group;
1232                         else if(it.item_group != this.item_group) // found an item near the spawning item that is part of a different item_group Y
1233                         {
1234                                 int grY = it.item_group;
1235                                 // move all items of item_group Y to item_group X
1236                                 IL_EACH(g_items, IS_SMALL(it.itemdef),
1237                                 {
1238                                         if(it.item_group == grY)
1239                                                 it.item_group = this.item_group;
1240                                 });
1241                         }
1242                 }
1243         });
1244 }
1245
1246 void setItemGroupCount()
1247 {
1248         for (int k = 1; k <= group_count; k++)
1249         {
1250                 int count = 0;
1251                 IL_EACH(g_items, IS_SMALL(it.itemdef) && it.item_group == k, { count++; });
1252                 if (count)
1253                         IL_EACH(g_items, IS_SMALL(it.itemdef) && it.item_group == k, { it.item_group_count = count; });
1254         }
1255 }
1256
1257 void target_items_use(entity this, entity actor, entity trigger)
1258 {
1259         if(Item_IsLoot(actor))
1260         {
1261                 EXACTTRIGGER_TOUCH(this, trigger);
1262                 delete(actor);
1263                 return;
1264         }
1265
1266         if (!IS_PLAYER(actor) || IS_DEAD(actor))
1267                 return;
1268
1269         if(trigger.solid == SOLID_TRIGGER)
1270         {
1271                 EXACTTRIGGER_TOUCH(this, trigger);
1272         }
1273
1274         IL_EACH(g_items, it.enemy == actor && Item_IsLoot(it),
1275         {
1276                 delete(it);
1277         });
1278
1279         if(GiveItems(actor, 0, tokenize_console(this.netname)))
1280                 centerprint(actor, this.message);
1281 }
1282
1283 spawnfunc(target_items)
1284 {
1285         this.use = target_items_use;
1286         if(!this.strength_finished)
1287                 this.strength_finished = autocvar_g_balance_powerup_strength_time;
1288         if(!this.invincible_finished)
1289                 this.invincible_finished = autocvar_g_balance_powerup_invincible_time;
1290         if(!this.speed_finished)
1291                 this.speed_finished = autocvar_g_balance_powerup_speed_time;
1292         if(!this.invisibility_finished)
1293                 this.invisibility_finished = autocvar_g_balance_powerup_invisibility_time;
1294         if(!this.superweapons_finished)
1295                 this.superweapons_finished = autocvar_g_balance_superweapons_time;
1296
1297         string str;
1298         int n = tokenize_console(this.netname);
1299         if(argv(0) == "give")
1300         {
1301                 str = substring(this.netname, argv_start_index(1), argv_end_index(-1) - argv_start_index(1));
1302         }
1303         else
1304         {
1305                 for(int j = 0; j < n; ++j)
1306                 {
1307                         // this is from a time when unlimited superweapons were handled together with ammo in some parts of the code
1308                         if     (argv(j) == "unlimited_ammo")         this.items |= IT_UNLIMITED_AMMO | IT_UNLIMITED_SUPERWEAPONS;
1309                         else if(argv(j) == "unlimited_weapon_ammo")  this.items |= IT_UNLIMITED_AMMO;
1310                         else if(argv(j) == "unlimited_superweapons") this.items |= IT_UNLIMITED_SUPERWEAPONS;
1311                         else if(argv(j) == "strength")               this.items |= ITEM_Strength.m_itemid;
1312                         else if(argv(j) == "invincible")             this.items |= ITEM_Shield.m_itemid;
1313                         else if(argv(j) == "speed")                  this.items |= ITEM_Speed.m_itemid;
1314                         else if(argv(j) == "invisibility")           this.items |= ITEM_Invisibility.m_itemid;
1315                         else if(argv(j) == "superweapons")           this.items |= IT_SUPERWEAPON;
1316                         else if(argv(j) == "jetpack")                this.items |= ITEM_Jetpack.m_itemid;
1317                         else if(argv(j) == "fuel_regen")             this.items |= ITEM_JetpackRegen.m_itemid;
1318                         else
1319                         {
1320                                 FOREACH(StatusEffect, it.instanceOfBuff,
1321                                 {
1322                                         string s = Buff_CompatName(argv(j));
1323                                         if(s == it.netname)
1324                                         {
1325                                                 this.buffdef = it;
1326                                                 if(!this.buffs_finished)
1327                                                         this.buffs_finished = it.m_time(it);
1328                                                 break;
1329                                         }
1330                                 });
1331                                 FOREACH(Weapons, it != WEP_Null, {
1332                                         string s = argv(j);
1333                                         if(s == it.netname || s == it.m_deprecated_netname)
1334                                         {
1335                                                 STAT(WEAPONS, this) |= (it.m_wepset);
1336                                                 if(this.spawnflags == 0 || this.spawnflags == 2)
1337                                                         it.wr_init(it);
1338                                                 break;
1339                                         }
1340                                 });
1341                         }
1342                 }
1343
1344                 string itemprefix, valueprefix;
1345                 if(this.spawnflags == 0)
1346                 {
1347                         itemprefix = "";
1348                         valueprefix = "";
1349                 }
1350                 else if(this.spawnflags == 1)
1351                 {
1352                         itemprefix = "max ";
1353                         valueprefix = "max ";
1354                 }
1355                 else if(this.spawnflags == 2)
1356                 {
1357                         itemprefix = "min ";
1358                         valueprefix = "min ";
1359                 }
1360                 else if(this.spawnflags == 4)
1361                 {
1362                         itemprefix = "minus ";
1363                         valueprefix = "max ";
1364                 }
1365                 else
1366                 {
1367                         error("invalid spawnflags");
1368                         itemprefix = valueprefix = string_null;
1369                 }
1370
1371                 str = "";
1372                 str = sprintf("%s %s%d %s", str, itemprefix, boolean(this.items & IT_UNLIMITED_AMMO), "unlimited_weapon_ammo");
1373                 str = sprintf("%s %s%d %s", str, itemprefix, boolean(this.items & IT_UNLIMITED_SUPERWEAPONS), "unlimited_superweapons");
1374                 str = sprintf("%s %s%d %s", str, valueprefix, this.strength_finished * boolean(this.items & ITEM_Strength.m_itemid), "strength");
1375                 str = sprintf("%s %s%d %s", str, valueprefix, this.invincible_finished * boolean(this.items & ITEM_Shield.m_itemid), "invincible");
1376                 str = sprintf("%s %s%d %s", str, valueprefix, this.invisibility_finished * boolean(this.items & ITEM_Invisibility.m_itemid), "invisibility");
1377                 str = sprintf("%s %s%d %s", str, valueprefix, this.speed_finished * boolean(this.items & ITEM_Speed.m_itemid), "speed");
1378                 str = sprintf("%s %s%d %s", str, valueprefix, this.superweapons_finished * boolean(this.items & IT_SUPERWEAPON), "superweapons");
1379                 str = sprintf("%s %s%d %s", str, itemprefix, boolean(this.items & ITEM_Jetpack.m_itemid), "jetpack");
1380                 str = sprintf("%s %s%d %s", str, itemprefix, boolean(this.items & ITEM_JetpackRegen.m_itemid), "fuel_regen");
1381                 float res;
1382                 res = GetResource(this, RES_SHELLS);  if(res != 0) str = sprintf("%s %s%d %s", str, valueprefix, max(0, res), "shells");
1383                 res = GetResource(this, RES_BULLETS); if(res != 0) str = sprintf("%s %s%d %s", str, valueprefix, max(0, res), "nails");
1384                 res = GetResource(this, RES_ROCKETS); if(res != 0) str = sprintf("%s %s%d %s", str, valueprefix, max(0, res), "rockets");
1385                 res = GetResource(this, RES_CELLS);   if(res != 0) str = sprintf("%s %s%d %s", str, valueprefix, max(0, res), "cells");
1386                 res = GetResource(this, RES_PLASMA);  if(res != 0) str = sprintf("%s %s%d %s", str, valueprefix, max(0, res), "plasma");
1387                 res = GetResource(this, RES_FUEL);    if(res != 0) str = sprintf("%s %s%d %s", str, valueprefix, max(0, res), "fuel");
1388                 res = GetResource(this, RES_HEALTH);  if(res != 0) str = sprintf("%s %s%d %s", str, valueprefix, max(0, res), "health");
1389                 res = GetResource(this, RES_ARMOR);   if(res != 0) str = sprintf("%s %s%d %s", str, valueprefix, max(0, res), "armor");
1390                 FOREACH(StatusEffect, it.instanceOfBuff, str = sprintf("%s %s%d %s", str, valueprefix, this.buffs_finished * boolean(this.buffdef == it), it.netname));
1391                 FOREACH(Weapons, it != WEP_Null, str = sprintf("%s %s%d %s", str, itemprefix, !!(STAT(WEAPONS, this) & (it.m_wepset)), it.netname));
1392         }
1393         this.netname = strzone(str);
1394
1395         n = tokenize_console(this.netname);
1396         for(int j = 0; j < n; ++j)
1397         {
1398                 string cmd = argv(j);
1399                 FOREACH(Weapons, it != WEP_Null && (cmd == it.netname || cmd == it.m_deprecated_netname), {
1400                         it.wr_init(it);
1401                         break;
1402                 });
1403         }
1404 }
1405
1406 float GiveWeapon(entity e, float wpn, float op, float val)
1407 {
1408         WepSet v0, v1;
1409         WepSet s = WepSet_FromWeapon(REGISTRY_GET(Weapons, wpn));
1410         v0 = (STAT(WEAPONS, e) & s);
1411         switch(op)
1412         {
1413                 case OP_SET:
1414                         if(val > 0)
1415                                 STAT(WEAPONS, e) |= s;
1416                         else
1417                                 STAT(WEAPONS, e) &= ~s;
1418                         break;
1419                 case OP_MIN:
1420                 case OP_PLUS:
1421                         if(val > 0)
1422                                 STAT(WEAPONS, e) |= s;
1423                         break;
1424                 case OP_MAX:
1425                         if(val <= 0)
1426                                 STAT(WEAPONS, e) &= ~s;
1427                         break;
1428                 case OP_MINUS:
1429                         if(val > 0)
1430                                 STAT(WEAPONS, e) &= ~s;
1431                         break;
1432         }
1433         v1 = (STAT(WEAPONS, e) & s);
1434         return (v0 != v1);
1435 }
1436
1437 bool GiveBuff(entity e, Buff thebuff, int op, int val)
1438 {
1439         bool had_buff = StatusEffects_active(thebuff, e);
1440         float new_buff_time = ((had_buff) ? StatusEffects_gettime(thebuff, e) : 0);
1441         switch (op)
1442         {
1443                 case OP_SET:
1444                         new_buff_time = val;
1445                         break;
1446                 case OP_MIN:
1447                         new_buff_time = max(new_buff_time, val);
1448                         break;
1449                 case OP_MAX:
1450                         new_buff_time = min(new_buff_time, val);
1451                         break;
1452                 case OP_PLUS:
1453                         new_buff_time += val;
1454                         break;
1455                 case OP_MINUS:
1456                         new_buff_time -= val;
1457                         break;
1458         }
1459         if(new_buff_time <= 0)
1460         {
1461                 if(had_buff) // only trigger removal mechanics if there is an effect to remove!
1462                         StatusEffects_remove(thebuff, e, STATUSEFFECT_REMOVE_NORMAL);
1463         }
1464         else
1465         {
1466                 buff_RemoveAll(e, STATUSEFFECT_REMOVE_CLEAR); // clear old buffs on the player first!
1467                 StatusEffects_apply(thebuff, e, new_buff_time, 0);
1468         }
1469         bool have_buff = StatusEffects_active(thebuff, e);
1470         return (had_buff != have_buff);
1471 }
1472
1473 void GiveSound(entity e, float v0, float v1, float t, Sound snd_incr, Sound snd_decr)
1474 {
1475         if(v1 == v0)
1476                 return;
1477         if(v1 <= v0 - t)
1478         {
1479                 if(snd_decr != NULL)
1480                         sound(e, CH_TRIGGER, snd_decr, VOL_BASE, ATTEN_NORM);
1481         }
1482         else if(v0 >= v0 + t)
1483         {
1484                 if(snd_incr != NULL)
1485                         sound(e, ((snd_incr == SND_POWERUP) ? CH_TRIGGER_SINGLE : CH_TRIGGER), snd_incr, VOL_BASE, ATTEN_NORM);
1486         }
1487 }
1488
1489 void GiveRot(entity e, float v0, float v1, .float rotfield, float rottime, .float regenfield, float regentime)
1490 {
1491         if(v0 < v1)
1492                 e.(rotfield) = max(e.(rotfield), time + rottime);
1493         else if(v0 > v1)
1494                 e.(regenfield) = max(e.(regenfield), time + regentime);
1495 }
1496 bool GiveResourceValue(entity e, Resource res_type, int op, int val)
1497 {
1498         int v0 = GetResource(e, res_type);
1499         float new_val = 0;
1500         switch (op)
1501         {
1502                 // min 100 cells = at least 100 cells
1503                 case OP_SET: new_val = val; break;
1504                 case OP_MIN: new_val = max(v0, val); break;
1505                 case OP_MAX: new_val = min(v0, val); break;
1506                 case OP_PLUS: new_val = v0 + val; break;
1507                 case OP_MINUS: new_val = v0 - val; break;
1508                 default: return false;
1509         }
1510
1511         return SetResourceExplicit(e, res_type, new_val);
1512 }
1513 bool GiveStatusEffect(entity e, StatusEffects this, int op, float val)
1514 {
1515         bool had_eff = StatusEffects_active(this, e);
1516         float new_eff_time = ((had_eff) ? StatusEffects_gettime(this, e) : 0);
1517         switch (op)
1518         {
1519                 case OP_SET:
1520                         new_eff_time = val;
1521                         break;
1522                 case OP_MIN:
1523                         new_eff_time = max(new_eff_time, val);
1524                         break;
1525                 case OP_MAX:
1526                         new_eff_time = min(new_eff_time, val);
1527                         break;
1528                 case OP_PLUS:
1529                         new_eff_time += val;
1530                         break;
1531                 case OP_MINUS:
1532                         new_eff_time -= val;
1533                         break;
1534         }
1535         if(new_eff_time <= 0)
1536         {
1537                 if(had_eff) // only trigger removal mechanics if there is an effect to remove!
1538                         StatusEffects_remove(this, e, STATUSEFFECT_REMOVE_NORMAL);
1539         }
1540         else
1541                 StatusEffects_apply(this, e, new_eff_time, 0);
1542         bool have_eff = StatusEffects_active(this, e);
1543         return (had_eff != have_eff);
1544 }
1545
1546 float GiveItems(entity e, float beginarg, float endarg)
1547 {
1548         float got, i, val, op;
1549         string cmd;
1550
1551         val = 999;
1552         op = OP_SET;
1553
1554         got = 0;
1555
1556         int _switchweapon = 0;
1557
1558         if(CS_CVAR(e).cvar_cl_autoswitch)
1559         {
1560                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1561                 {
1562                         .entity weaponentity = weaponentities[slot];
1563                         if(e.(weaponentity).m_weapon != WEP_Null || slot == 0)
1564                         if(e.(weaponentity).m_switchweapon == w_getbestweapon(e, weaponentity))
1565                                 _switchweapon |= BIT(slot);
1566                 }
1567         }
1568
1569         if(e.statuseffects)
1570         {
1571                 FOREACH(StatusEffect, true,
1572                 {
1573                         e.statuseffects.statuseffect_time[it.m_id] = max(0, e.statuseffects.statuseffect_time[it.m_id] - time);
1574                 });
1575         }
1576
1577         PREGIVE(e, items);
1578         PREGIVE_WEAPONS(e);
1579         PREGIVE_STATUSEFFECT(e, STATUSEFFECT_Strength);
1580         PREGIVE_STATUSEFFECT(e, STATUSEFFECT_Shield);
1581         PREGIVE_STATUSEFFECT(e, STATUSEFFECT_Speed);
1582         PREGIVE_STATUSEFFECT(e, STATUSEFFECT_Invisibility);
1583         //PREGIVE_STATUSEFFECT(e, STATUSEFFECT_Superweapons);
1584         PREGIVE_RESOURCE(e, RES_BULLETS);
1585         PREGIVE_RESOURCE(e, RES_CELLS);
1586         PREGIVE_RESOURCE(e, RES_PLASMA);
1587         PREGIVE_RESOURCE(e, RES_SHELLS);
1588         PREGIVE_RESOURCE(e, RES_ROCKETS);
1589         PREGIVE_RESOURCE(e, RES_FUEL);
1590         PREGIVE_RESOURCE(e, RES_ARMOR);
1591         PREGIVE_RESOURCE(e, RES_HEALTH);
1592
1593         for(i = beginarg; i < endarg; ++i)
1594         {
1595                 cmd = argv(i);
1596
1597                 if(cmd == "0" || stof(cmd))
1598                 {
1599                         val = stof(cmd);
1600                         continue;
1601                 }
1602                 switch(cmd)
1603                 {
1604                         case "no":
1605                                 op = OP_MAX;
1606                                 val = 0;
1607                                 continue;
1608                         case "max":
1609                                 op = OP_MAX;
1610                                 continue;
1611                         case "min":
1612                                 op = OP_MIN;
1613                                 continue;
1614                         case "plus":
1615                                 op = OP_PLUS;
1616                                 continue;
1617                         case "minus":
1618                                 op = OP_MINUS;
1619                                 continue;
1620                         case "ALL":
1621                                 got += GiveBit(e, items, ITEM_JetpackRegen.m_itemid, op, val);
1622                                 FOREACH(StatusEffect, it.instanceOfPowerups, got += GiveStatusEffect(e, it, op, val));
1623                                 got += GiveBit(e, items, IT_UNLIMITED_AMMO | IT_UNLIMITED_SUPERWEAPONS, op, val);
1624                         case "all":
1625                                 got += GiveBit(e, items, ITEM_Jetpack.m_itemid, op, val);
1626                                 got += GiveResourceValue(e, RES_HEALTH, op, val);
1627                                 got += GiveResourceValue(e, RES_ARMOR, op, val);
1628                         case "allweapons":
1629                                 FOREACH(Weapons, it != WEP_Null && !(it.spawnflags & (WEP_FLAG_MUTATORBLOCKED | WEP_FLAG_SPECIALATTACK)), got += GiveWeapon(e, it.m_id, op, val));
1630                         //case "allbuffs": // all buffs makes a player god, do not want!
1631                                 //FOREACH(StatusEffect, it.instanceOfBuff, got += GiveBuff(e, it, op, val));
1632                         case "allammo":
1633                                 got += GiveResourceValue(e, RES_CELLS, op, val);
1634                                 got += GiveResourceValue(e, RES_PLASMA, op, val);
1635                                 got += GiveResourceValue(e, RES_SHELLS, op, val);
1636                                 got += GiveResourceValue(e, RES_BULLETS, op, val);
1637                                 got += GiveResourceValue(e, RES_ROCKETS, op, val);
1638                                 got += GiveResourceValue(e, RES_FUEL, op, val);
1639                                 break;
1640                         case "unlimited_ammo":
1641                                 // this is from a time when unlimited superweapons were handled together with ammo in some parts of the code
1642                                 got += GiveBit(e, items, IT_UNLIMITED_AMMO | IT_UNLIMITED_SUPERWEAPONS, op, val);
1643                                 break;
1644                         case "unlimited_weapon_ammo":
1645                                 got += GiveBit(e, items, IT_UNLIMITED_AMMO, op, val);
1646                                 break;
1647                         case "unlimited_superweapons":
1648                                 got += GiveBit(e, items, IT_UNLIMITED_SUPERWEAPONS, op, val);
1649                                 break;
1650                         case "jetpack":
1651                                 got += GiveBit(e, items, ITEM_Jetpack.m_itemid, op, val);
1652                                 break;
1653                         case "fuel_regen":
1654                                 got += GiveBit(e, items, ITEM_JetpackRegen.m_itemid, op, val);
1655                                 break;
1656                         case "strength":
1657                                 got += GiveStatusEffect(e, STATUSEFFECT_Strength, op, val);
1658                                 break;
1659                         case "invincible":
1660                         case "shield":
1661                                 got += GiveStatusEffect(e, STATUSEFFECT_Shield, op, val);
1662                                 break;
1663                         case "speed":
1664                                 got += GiveStatusEffect(e, STATUSEFFECT_Speed, op, val);
1665                                 break;
1666                         case "invisibility":
1667                                 got += GiveStatusEffect(e, STATUSEFFECT_Invisibility, op, val);
1668                                 break;
1669                         case "superweapons":
1670                                 got += GiveStatusEffect(e, STATUSEFFECT_Superweapons, op, val);
1671                                 break;
1672                         case "cells":
1673                                 got += GiveResourceValue(e, RES_CELLS, op, val);
1674                                 break;
1675                         case "plasma":
1676                                 got += GiveResourceValue(e, RES_PLASMA, op, val);
1677                                 break;
1678                         case "shells":
1679                                 got += GiveResourceValue(e, RES_SHELLS, op, val);
1680                                 break;
1681                         case "nails":
1682                         case "bullets":
1683                                 got += GiveResourceValue(e, RES_BULLETS, op, val);
1684                                 break;
1685                         case "rockets":
1686                                 got += GiveResourceValue(e, RES_ROCKETS, op, val);
1687                                 break;
1688                         case "health":
1689                                 got += GiveResourceValue(e, RES_HEALTH, op, val);
1690                                 break;
1691                         case "armor":
1692                                 got += GiveResourceValue(e, RES_ARMOR, op, val);
1693                                 break;
1694                         case "fuel":
1695                                 got += GiveResourceValue(e, RES_FUEL, op, val);
1696                                 break;
1697                         default:
1698                                 FOREACH(StatusEffect, it.instanceOfBuff && buff_Available(it) && Buff_CompatName(cmd) == it.netname,
1699                                 {
1700                                         got += GiveBuff(e, it, op, val);
1701                                         break;
1702                                 });
1703                                 FOREACH(Weapons, it != WEP_Null && (cmd == it.netname || cmd == it.m_deprecated_netname), {
1704                     got += GiveWeapon(e, it.m_id, op, val);
1705                     break;
1706                                 });
1707                                 break;
1708                 }
1709                 val = 999;
1710                 op = OP_SET;
1711         }
1712
1713         POSTGIVE_BIT(e, items, ITEM_JetpackRegen.m_itemid, SND_ITEMPICKUP, SND_Null);
1714         POSTGIVE_BIT(e, items, IT_UNLIMITED_SUPERWEAPONS, SND_POWERUP, SND_POWEROFF);
1715         POSTGIVE_BIT(e, items, IT_UNLIMITED_AMMO, SND_POWERUP, SND_POWEROFF);
1716         POSTGIVE_BIT(e, items, ITEM_Jetpack.m_itemid, SND_ITEMPICKUP, SND_Null);
1717         FOREACH(Weapons, it != WEP_Null, {
1718                 POSTGIVE_WEAPON(e, it, SND_WEAPONPICKUP, SND_Null);
1719                 if(!(save_weapons & (it.m_wepset)))
1720                         if(STAT(WEAPONS, e) & (it.m_wepset))
1721                                 it.wr_init(it);
1722         });
1723         POSTGIVE_STATUSEFFECT(e, STATUSEFFECT_Strength, SND_POWERUP, SND_POWEROFF);
1724         POSTGIVE_STATUSEFFECT(e, STATUSEFFECT_Shield, SND_POWERUP, SND_POWEROFF);
1725         POSTGIVE_STATUSEFFECT(e, STATUSEFFECT_Speed, SND_POWERUP, SND_POWEROFF);
1726         POSTGIVE_STATUSEFFECT(e, STATUSEFFECT_Invisibility, SND_POWERUP, SND_POWEROFF);
1727         POSTGIVE_RESOURCE(e, RES_BULLETS, 0, SND_ITEMPICKUP, SND_Null);
1728         POSTGIVE_RESOURCE(e, RES_CELLS, 0, SND_ITEMPICKUP, SND_Null);
1729         POSTGIVE_RESOURCE(e, RES_PLASMA, 0, SND_ITEMPICKUP, SND_Null);
1730         POSTGIVE_RESOURCE(e, RES_SHELLS, 0, SND_ITEMPICKUP, SND_Null);
1731         POSTGIVE_RESOURCE(e, RES_ROCKETS, 0, SND_ITEMPICKUP, SND_Null);
1732         POSTGIVE_RES_ROT(e, RES_FUEL, 1, pauserotfuel_finished, autocvar_g_balance_pause_fuel_rot, pauseregen_finished, autocvar_g_balance_pause_fuel_regen, SND_ITEMPICKUP, SND_Null);
1733         POSTGIVE_RES_ROT(e, RES_ARMOR, 1, pauserotarmor_finished, autocvar_g_balance_pause_armor_rot, pauseregen_finished, autocvar_g_balance_pause_health_regen, SND_ARMOR25, SND_Null);
1734         POSTGIVE_RES_ROT(e, RES_HEALTH, 1, pauserothealth_finished, autocvar_g_balance_pause_health_rot, pauseregen_finished, autocvar_g_balance_pause_health_regen, SND_MEGAHEALTH, SND_Null);
1735
1736         if(!StatusEffects_active(STATUSEFFECT_Superweapons, e))
1737         {
1738                 if(!g_weaponarena && (STAT(WEAPONS, e) & WEPSET_SUPERWEAPONS))
1739                         StatusEffects_apply(STATUSEFFECT_Superweapons, e, autocvar_g_balance_superweapons_time, 0);
1740         }
1741
1742         if(e.statuseffects)
1743         {
1744                 FOREACH(StatusEffect, true,
1745                 {
1746                         if(e.statuseffects.statuseffect_time[it.m_id] <= 0)
1747                                 e.statuseffects.statuseffect_time[it.m_id] = 0;
1748                         else
1749                                 e.statuseffects.statuseffect_time[it.m_id] += time;
1750                 });
1751                         
1752                 StatusEffects_update(e);
1753         }
1754
1755         for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1756         {
1757                 .entity weaponentity = weaponentities[slot];
1758                 if(e.(weaponentity).m_weapon != WEP_Null || slot == 0)
1759                 if(!(STAT(WEAPONS, e) & WepSet_FromWeapon(e.(weaponentity).m_switchweapon)))
1760                         _switchweapon |= BIT(slot);
1761         }
1762
1763         if(_switchweapon)
1764         {
1765                 for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
1766                 {
1767                         .entity weaponentity = weaponentities[slot];
1768                         if(_switchweapon & BIT(slot))
1769                         {
1770                                 Weapon wep = w_getbestweapon(e, weaponentity);
1771                                 if(wep != e.(weaponentity).m_switchweapon)
1772                                         W_SwitchWeapon_Force(e, wep, weaponentity);
1773                         }
1774                 }
1775         }
1776
1777         return got;
1778 }