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