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