7 #define ITS_AVAILABLE 8
10 #define ITS_POWERUP 64
11 #define ISF_COLORMAP 16
19 var float autocvar_cl_animate_items = 1;
20 var float autocvar_cl_ghost_items = 0.45;
21 var vector autocvar_cl_ghost_items_color = '-1 -1 -1';
22 var float autocvar_cl_fullbright_items = 0;
23 var vector autocvar_cl_weapon_stay_color = '2 0.5 0.5';
24 var float autocvar_cl_weapon_stay_alpha = 0.75;
25 var float autocvar_cl_simple_items = 0;
26 var string autocvr_cl_simpleitems_postfix = "_simple";
34 Movetype_Physics_MatchServer(autocvar_cl_projectiles_sloppy);
35 if(self.move_flags & FL_ONGROUND)
36 { // For some reason move_avelocity gets set to '0 0 0' here ...
37 self.oldorigin = self.origin;
40 if(autocvar_cl_animate_items)
41 { // ... so reset it if animations are requested.
42 if(self.ItemStatus & ITS_ANIMATE1)
43 self.move_avelocity = '0 180 0';
45 if(self.ItemStatus & ITS_ANIMATE2)
46 self.move_avelocity = '0 -90 0';
50 else if (autocvar_cl_animate_items)
52 if(self.ItemStatus & ITS_ANIMATE1)
54 self.angles += self.move_avelocity * frametime;
55 setorigin(self, '0 0 10' + self.oldorigin + '0 0 8' * sin(time * 2));
58 if(self.ItemStatus & ITS_ANIMATE2)
60 self.angles += self.move_avelocity * frametime;
61 setorigin(self, '0 0 8' + self.oldorigin + '0 0 4' * sin(time * 3));
70 Movetype_Physics_MatchServer(autocvar_cl_projectiles_sloppy);
72 if(self.move_flags & FL_ONGROUND)
77 void ItemRead(float _IsNew)
79 float sf = ReadByte();
83 self.origin_x = ReadCoord();
84 self.origin_y = ReadCoord();
85 self.origin_z = ReadCoord();
86 setorigin(self, self.origin);
87 self.oldorigin = self.origin;
92 self.angles_x = ReadCoord();
93 self.angles_y = ReadCoord();
94 self.angles_z = ReadCoord();
95 self.move_angles = self.angles;
98 if(sf & ISF_STATUS) // need to read/write status frist so model can handle simple, fb etc.
100 self.ItemStatus = ReadByte();
102 if(self.ItemStatus & ITS_AVAILABLE)
105 self.colormod = self.glowmod = '1 1 1';
109 if (autocvar_cl_ghost_items_color)
111 self.alpha = autocvar_cl_ghost_items;
112 self.colormod = self.glowmod = autocvar_cl_ghost_items_color;
118 if(autocvar_cl_fullbright_items)
119 if(self.ItemStatus & ITS_ALLOWFB)
120 self.effects |= EF_FULLBRIGHT;
122 if(self.ItemStatus & ITS_STAYWEP)
124 self.colormod = self.glowmod = autocvar_cl_weapon_stay_color;
125 self.alpha = autocvar_cl_weapon_stay_alpha;
129 if(self.ItemStatus & ITS_POWERUP)
131 if(self.ItemStatus & ITS_AVAILABLE)
132 self.effects |= (EF_ADDITIVE | EF_FULLBRIGHT);
134 self.effects &~= (EF_ADDITIVE | EF_FULLBRIGHT);
140 self.drawmask = MASK_NORMAL;
141 self.movetype = MOVETYPE_NOCLIP;
142 self.draw = ItemDraw;
148 string _fn = ReadString();
150 if(autocvar_cl_simple_items && (self.ItemStatus & ITS_ALLOWSI))
152 string _fn2 = substring(_fn, 0 , strlen(_fn) -4);
153 self.draw = ItemDrawSimple;
157 if(fexists(sprintf("%s%s.md3", _fn2, autocvr_cl_simpleitems_postfix)))
158 self.mdl = strzone(sprintf("%s%s.md3", _fn2, autocvr_cl_simpleitems_postfix));
159 else if(fexists(sprintf("%s%s.dpm", _fn2, autocvr_cl_simpleitems_postfix)))
160 self.mdl = strzone(sprintf("%s%s.dpm", _fn2, autocvr_cl_simpleitems_postfix));
161 else if(fexists(sprintf("%s%s.iqm", _fn2, autocvr_cl_simpleitems_postfix)))
162 self.mdl = strzone(sprintf("%s%s.iqm", _fn2, autocvr_cl_simpleitems_postfix));
163 else if(fexists(sprintf("%s%s.obj", _fn2, autocvr_cl_simpleitems_postfix)))
164 self.mdl = strzone(sprintf("%s%s.obj", _fn2, autocvr_cl_simpleitems_postfix));
167 self.draw = ItemDraw;
168 dprint("Simple item requested for ", _fn, " but no model exsist for it\n");
172 if(self.draw != ItemDrawSimple)
173 self.mdl = strzone(_fn);
177 dprint("^1WARNING!^7 self.mdl is unset for item ", self.classname, " tell tZork aboute this!\n");
179 precache_model(self.mdl);
180 setmodel(self, self.mdl);
183 if(sf & ISF_COLORMAP)
184 self.colormap = ReadShort();
189 self.move_angles = '0 0 0';
190 self.move_movetype = MOVETYPE_TOSS;
191 self.move_velocity_x = ReadCoord();
192 self.move_velocity_y = ReadCoord();
193 self.move_velocity_z = ReadCoord();
194 self.velocity = self.move_velocity;
195 self.move_origin = self.oldorigin;
199 self.move_time = time;
200 self.spawntime = time;
203 self.move_time = max(self.move_time, time);
206 if(autocvar_cl_animate_items)
208 if(self.ItemStatus & ITS_ANIMATE1)
209 self.move_avelocity = '0 180 0';
211 if(self.ItemStatus & ITS_ANIMATE2)
212 self.move_avelocity = '0 -90 0';
219 float autocvar_sv_simple_items;
220 float ItemSend(entity to, float sf)
227 WriteByte(MSG_ENTITY, ENT_CLIENT_ITEM);
228 WriteByte(MSG_ENTITY, sf);
230 //WriteByte(MSG_ENTITY, self.cnt);
231 if(sf & ISF_LOCATION)
233 WriteCoord(MSG_ENTITY, self.origin_x);
234 WriteCoord(MSG_ENTITY, self.origin_y);
235 WriteCoord(MSG_ENTITY, self.origin_z);
240 WriteCoord(MSG_ENTITY, self.angles_x);
241 WriteCoord(MSG_ENTITY, self.angles_y);
242 WriteCoord(MSG_ENTITY, self.angles_z);
246 WriteByte(MSG_ENTITY, self.ItemStatus);
252 dprint("^1WARNING!^7 self.mdl is unset for item ", self.classname, "exspect a crash just aboute now\n");
254 WriteString(MSG_ENTITY, self.mdl);
258 if(sf & ISF_COLORMAP)
259 WriteShort(MSG_ENTITY, self.colormap);
263 WriteCoord(MSG_ENTITY, self.velocity_x);
264 WriteCoord(MSG_ENTITY, self.velocity_y);
265 WriteCoord(MSG_ENTITY, self.velocity_z);
272 float have_pickup_item(void)
274 if(self.flags & FL_POWERUP)
276 if(autocvar_g_powerups > 0)
278 if(autocvar_g_powerups == 0)
287 if(autocvar_g_pickup_items > 0)
289 if(autocvar_g_pickup_items == 0)
294 if(!WEPSET_EMPTY_E(self) || (self.items & IT_AMMO))
300 #define ITEM_RESPAWN_TICKS 10
302 #define ITEM_RESPAWNTIME(i) ((i).respawntime + crandom() * (i).respawntimejitter)
303 // range: respawntime - respawntimejitter .. respawntime + respawntimejitter
304 #define ITEM_RESPAWNTIME_INITIAL(i) (ITEM_RESPAWN_TICKS + random() * ((i).respawntime + (i).respawntimejitter - ITEM_RESPAWN_TICKS))
305 // range: 10 .. respawntime + respawntimejitter
307 floatfield Item_CounterField(float it)
311 case IT_SHELLS: return ammo_shells;
312 case IT_NAILS: return ammo_nails;
313 case IT_ROCKETS: return ammo_rockets;
314 case IT_CELLS: return ammo_cells;
315 case IT_FUEL: return ammo_fuel;
316 case IT_5HP: return health;
317 case IT_25HP: return health;
318 case IT_HEALTH: return health;
319 case IT_ARMOR_SHARD: return armorvalue;
320 case IT_ARMOR: return armorvalue;
321 // add more things here (health, armor)
322 default: error("requested item has no counter field");
325 // should never happen
330 string Item_CounterFieldName(float it)
334 case IT_SHELLS: return "shells";
335 case IT_NAILS: return "nails";
336 case IT_ROCKETS: return "rockets";
337 case IT_CELLS: return "cells";
338 case IT_FUEL: return "fuel";
340 // add more things here (health, armor)
341 default: error("requested item has no counter field name");
344 // should never happen
349 .float max_armorvalue;
350 .float pickup_anyway;
352 float Item_Customize()
354 if(self.spawnshieldtime)
356 if(!WEPSET_CONTAINS_ALL_EE(other, self))
358 self.colormod = '0 0 0';
359 self.glowmod = self.colormod;
360 self.alpha = 0.5 + 0.5 * g_ghost_items; // halfway more alpha
367 self.colormod = stov(autocvar_g_ghost_items_color);
368 self.glowmod = self.colormod;
369 self.alpha = g_ghost_items;
378 void Item_Show (entity e, float mode)
380 e.effects &~= EF_ADDITIVE | EF_STARDUST | EF_FULLBRIGHT | EF_NODEPTHTEST;
381 e.ItemStatus &~= ITS_STAYWEP;
384 // make the item look normal, and be touchable
386 e.solid = SOLID_TRIGGER;
387 e.spawnshieldtime = 1;
388 e.ItemStatus |= ITS_AVAILABLE;
392 // hide the item completely
393 e.model = string_null;
395 e.spawnshieldtime = 1;
396 e.ItemStatus &~= ITS_AVAILABLE;
398 else if((e.flags & FL_WEAPON) && !(e.flags & FL_NO_WEAPON_STAY) && g_weapon_stay)
400 // make the item translucent and not touchable
402 e.solid = SOLID_TRIGGER; // can STILL be picked up!
403 e.effects |= EF_STARDUST;
404 e.spawnshieldtime = 0; // field indicates whether picking it up may give you anything other than the weapon
405 e.ItemStatus |= (ITS_AVAILABLE | ITS_STAYWEP);
409 //setmodel(e, "null");
411 e.colormod = '0 0 0';
412 e.glowmod = e.colormod;
413 e.spawnshieldtime = 1;
414 e.ItemStatus &~= ITS_AVAILABLE;
417 if (e.items & IT_STRENGTH || e.items & IT_INVINCIBLE)
418 e.ItemStatus |= ITS_POWERUP;
420 if (autocvar_g_nodepthtestitems)
421 e.effects |= EF_NODEPTHTEST;
424 if (autocvar_g_fullbrightitems)
425 e.ItemStatus |= ITS_ALLOWFB;
427 if (autocvar_sv_simple_items)
428 e.ItemStatus |= ITS_ALLOWSI;
430 // relink entity (because solid may have changed)
431 setorigin(e, e.origin);
432 e.SendFlags |= ISF_STATUS;
435 void Item_Respawn (void)
439 if(self.items == IT_STRENGTH)
440 sound (self, CH_TRIGGER, "misc/strength_respawn.wav", VOL_BASE, ATTN_NORM); // play respawn sound
441 else if(self.items == IT_INVINCIBLE)
442 sound (self, CH_TRIGGER, "misc/shield_respawn.wav", VOL_BASE, ATTN_NORM); // play respawn sound
444 sound (self, CH_TRIGGER, "misc/itemrespawn.wav", VOL_BASE, ATTN_NORM); // play respawn sound
445 setorigin (self, self.origin);
447 //pointparticles(particleeffectnum("item_respawn"), self.origin + self.mins_z * '0 0 1' + '0 0 48', '0 0 0', 1);
448 pointparticles(particleeffectnum("item_respawn"), self.origin + 0.5 * (self.mins + self.maxs), '0 0 0', 1);
451 void Item_RespawnCountdown (void)
453 if(self.count >= ITEM_RESPAWN_TICKS)
455 if(self.waypointsprite_attached)
456 WaypointSprite_Kill(self.waypointsprite_attached);
461 self.nextthink = time + 1;
466 vector rgb = '1 0 1';
470 case IT_FUEL_REGEN: name = "item-fuelregen"; rgb = '1 0.5 0'; break;
471 case IT_JETPACK: name = "item-jetpack"; rgb = '0.5 0.5 0.5'; break;
472 case IT_STRENGTH: name = "item-strength"; rgb = '0 0 1'; break;
473 case IT_INVINCIBLE: name = "item-shield"; rgb = '1 0 1'; break;
477 MUTATOR_CALLHOOK(Item_RespawnCountdown);
480 if(self.flags & FL_WEAPON)
482 entity wi = get_weaponinfo(self.weapon);
491 WaypointSprite_Spawn(name, 0, 0, self, '0 0 64', world, 0, self, waypointsprite_attached, TRUE, RADARICON_POWERUP, rgb);
492 if(self.waypointsprite_attached)
493 WaypointSprite_UpdateBuildFinished(self.waypointsprite_attached, time + ITEM_RESPAWN_TICKS);
497 print("Unknown powerup-marked item is wanting to respawn\n");
498 localcmd(sprintf("prvm_edict server %d\n", num_for_edict(self)));
501 sound (self, CH_TRIGGER, "misc/itemrespawncountdown.wav", VOL_BASE, ATTN_NORM); // play respawn sound
502 if(self.waypointsprite_attached)
504 WaypointSprite_Ping(self.waypointsprite_attached);
505 //WaypointSprite_UpdateHealth(self.waypointsprite_attached, self.count);
510 void Item_ScheduleRespawnIn(entity e, float t)
512 if((e.flags & FL_POWERUP) || WEPSET_CONTAINS_ANY_EA(e, WEPBIT_SUPERWEAPONS))
514 e.think = Item_RespawnCountdown;
515 e.nextthink = time + max(0, t - ITEM_RESPAWN_TICKS);
520 e.think = Item_Respawn;
521 e.nextthink = time + t;
525 void Item_ScheduleRespawn(entity e)
527 if(e.respawntime > 0)
530 Item_ScheduleRespawnIn(e, ITEM_RESPAWNTIME(e));
532 else // if respawntime is -1, this item does not respawn
536 void Item_ScheduleInitialRespawn(entity e)
539 Item_ScheduleRespawnIn(e, game_starttime - time + ITEM_RESPAWNTIME_INITIAL(e));
542 float ITEM_MODE_NONE = 0;
543 float ITEM_MODE_HEALTH = 1;
544 float ITEM_MODE_ARMOR = 2;
545 float ITEM_MODE_FUEL = 3;
546 float Item_GiveAmmoTo(entity item, entity player, .float ammofield, float ammomax, float mode)
551 if (item.spawnshieldtime)
553 if ((player.ammofield < ammomax) || item.pickup_anyway)
555 player.ammofield = bound(player.ammofield, ammomax, player.ammofield + item.ammofield);
559 else if(g_weapon_stay == 2)
561 float mi = min(item.ammofield, ammomax);
562 if (player.ammofield < mi)
564 player.ammofield = mi;
575 player.pauserotfuel_finished = max(player.pauserotfuel_finished, time + autocvar_g_balance_pause_fuel_rot);
577 case ITEM_MODE_HEALTH:
578 player.pauserothealth_finished = max(player.pauserothealth_finished, time + autocvar_g_balance_pause_health_rot);
580 case ITEM_MODE_ARMOR:
581 player.pauserotarmor_finished = max(player.pauserotarmor_finished, time + autocvar_g_balance_pause_armor_rot);
589 float Item_GiveTo(entity item, entity player)
596 // if nothing happens to player, just return without taking the item
598 _switchweapon = FALSE;
599 // in case the player has autoswitch enabled do the following:
600 // if the player is using their best weapon before items are given, they
601 // probably want to switch to an even better weapon after items are given
602 if (player.autoswitch)
603 if (player.switchweapon == w_getbestweapon(player))
604 _switchweapon = TRUE;
606 if not(WEPSET_CONTAINS_EW(player, player.switchweapon))
607 _switchweapon = TRUE;
609 pickedup |= Item_GiveAmmoTo(item, player, ammo_fuel, g_pickup_fuel_max, ITEM_MODE_FUEL);
610 pickedup |= Item_GiveAmmoTo(item, player, ammo_shells, g_pickup_shells_max, ITEM_MODE_NONE);
611 pickedup |= Item_GiveAmmoTo(item, player, ammo_nails, g_pickup_nails_max, ITEM_MODE_NONE);
612 pickedup |= Item_GiveAmmoTo(item, player, ammo_rockets, g_pickup_rockets_max, ITEM_MODE_NONE);
613 pickedup |= Item_GiveAmmoTo(item, player, ammo_cells, g_pickup_cells_max, ITEM_MODE_NONE);
614 pickedup |= Item_GiveAmmoTo(item, player, health, item.max_health, ITEM_MODE_HEALTH);
615 pickedup |= Item_GiveAmmoTo(item, player, armorvalue, item.max_armorvalue, ITEM_MODE_ARMOR);
617 if (item.flags & FL_WEAPON)
619 WEPSET_DECLARE_A(it);
620 WEPSET_COPY_AE(it, item);
621 WEPSET_ANDNOT_AE(it, player);
623 if (!WEPSET_EMPTY_A(it) || (item.spawnshieldtime && item.pickup_anyway))
626 for(i = WEP_FIRST; i <= WEP_LAST; ++i)
627 if(WEPSET_CONTAINS_AW(it, i))
628 W_GiveWeapon(player, i);
632 if((it = (item.items - (item.items & player.items)) & IT_PICKUPMASK))
636 sprint (player, strcat("You got the ^2", item.netname, "\n"));
639 if (item.strength_finished)
642 player.strength_finished = max(player.strength_finished, time) + item.strength_finished;
644 if (item.invincible_finished)
647 player.invincible_finished = max(player.invincible_finished, time) + item.invincible_finished;
649 if (item.superweapons_finished)
652 player.superweapons_finished = max(player.superweapons_finished, time) + item.superweapons_finished;
657 // always eat teamed entities
665 if (player.switchweapon != w_getbestweapon(player))
666 W_SwitchWeapon_Force(player, w_getbestweapon(player));
671 void Item_Touch (void)
675 // remove the item if it's currnetly in a NODROP brush or hits a NOIMPACT surface (such as sky)
676 if(self.classname == "droppedweapon")
678 if (ITEM_TOUCH_NEEDKILL())
685 if (other.classname != "player")
689 if (self.solid != SOLID_TRIGGER)
691 if (self.owner == other)
693 if(MUTATOR_CALLHOOK(ItemTouch))
696 if (self.classname == "droppedweapon")
698 self.strength_finished = max(0, self.strength_finished - time);
699 self.invincible_finished = max(0, self.invincible_finished - time);
700 self.superweapons_finished = max(0, self.superweapons_finished - time);
703 if(!Item_GiveTo(self, other))
705 if (self.classname == "droppedweapon")
707 // undo what we did above
708 self.strength_finished += time;
709 self.invincible_finished += time;
710 self.superweapons_finished += time;
715 other.last_pickup = time;
717 pointparticles(particleeffectnum("item_pickup"), self.origin, '0 0 0', 1);
718 sound (other, CH_TRIGGER, self.item_pickupsound, VOL_BASE, ATTN_NORM);
720 if (self.classname == "droppedweapon")
722 else if not(self.spawnshieldtime)
728 RandomSelection_Init();
729 for(head = world; (head = findfloat(head, team, self.team)); )
731 if(head.flags & FL_ITEM)
734 RandomSelection_Add(head, 0, string_null, head.cnt, 0);
737 e = RandomSelection_chosen_ent;
742 Item_ScheduleRespawn(e);
748 Item_Show(self, !self.state);
749 setorigin (self, self.origin);
751 if(self.classname != "droppedweapon")
753 self.think = func_null;
756 if(self.waypointsprite_attached)
757 WaypointSprite_Kill(self.waypointsprite_attached);
759 if((self.flags & FL_POWERUP) | WEPSET_CONTAINS_ANY_EA(self, WEPBIT_SUPERWEAPONS)) // do not spawn powerups initially!
760 Item_ScheduleInitialRespawn(self);
768 if(self.effects & EF_NODRAW)
770 // marker for item team search
771 dprint("Initializing item team ", ftos(self.team), "\n");
772 RandomSelection_Init();
773 for(head = world; (head = findfloat(head, team, self.team)); ) if(head.flags & FL_ITEM)
774 RandomSelection_Add(head, 0, string_null, head.cnt, 0);
775 e = RandomSelection_chosen_ent;
779 for(head = world; (head = findfloat(head, team, self.team)); ) if(head.flags & FL_ITEM)
783 // make it a non-spawned item
785 head.state = 1; // state 1 = initially hidden item
787 head.effects &~= EF_NODRAW;
794 // Savage: used for item garbage-collection
795 // TODO: perhaps nice special effect?
796 void RemoveItem(void)
801 // pickup evaluation functions
802 // these functions decide how desirable an item is to the bots
804 float generic_pickupevalfunc(entity player, entity item) {return item.bot_pickupbasevalue;}
806 float weapon_pickupevalfunc(entity player, entity item)
808 float c, j, position;
810 // See if I have it already
811 if(!WEPSET_CONTAINS_ALL_EE(player, item))
813 // If I can pick it up
814 if(!item.spawnshieldtime)
816 else if(player.ammo_cells || player.ammo_shells || player.ammo_nails || player.ammo_rockets)
818 // Skilled bots will grab more
819 c = bound(0, skill / 10, 1) * 0.5;
827 // If custom weapon priorities for bots is enabled rate most wanted weapons higher
828 if( bot_custom_weapon && c )
830 // Find the highest position on any range
832 for(j = 0; j < WEP_LAST ; ++j){
834 bot_weapons_far[j] == item.weapon ||
835 bot_weapons_mid[j] == item.weapon ||
836 bot_weapons_close[j] == item.weapon
847 position = WEP_LAST - position;
848 // item.bot_pickupbasevalue is overwritten here
849 return (BOT_PICKUP_RATING_LOW + ( (BOT_PICKUP_RATING_HIGH - BOT_PICKUP_RATING_LOW) * (position / WEP_LAST ))) * c;
853 return item.bot_pickupbasevalue * c;
856 float commodity_pickupevalfunc(entity player, entity item)
859 float need_shells = FALSE, need_nails = FALSE, need_rockets = FALSE, need_cells = FALSE, need_fuel = FALSE;
863 // Detect needed ammo
864 for(i = WEP_FIRST; i <= WEP_LAST ; ++i)
866 wi = get_weaponinfo(i);
868 if not(WEPSET_CONTAINS_EW(player, i))
871 if(wi.items & IT_SHELLS)
873 else if(wi.items & IT_NAILS)
875 else if(wi.items & IT_ROCKETS)
877 else if(wi.items & IT_CELLS)
879 else if(wi.items & IT_FUEL)
883 // TODO: figure out if the player even has the weapon this ammo is for?
884 // may not affect strategy much though...
885 // find out how much more ammo/armor/health the player can hold
887 if (item.ammo_shells)
888 if (player.ammo_shells < g_pickup_shells_max)
889 c = c + max(0, 1 - player.ammo_shells / g_pickup_shells_max);
892 if (player.ammo_nails < g_pickup_nails_max)
893 c = c + max(0, 1 - player.ammo_nails / g_pickup_nails_max);
895 if (item.ammo_rockets)
896 if (player.ammo_rockets < g_pickup_rockets_max)
897 c = c + max(0, 1 - player.ammo_rockets / g_pickup_rockets_max);
900 if (player.ammo_cells < g_pickup_cells_max)
901 c = c + max(0, 1 - player.ammo_cells / g_pickup_cells_max);
904 if (player.ammo_fuel < g_pickup_fuel_max)
905 c = c + max(0, 1 - player.ammo_fuel / g_pickup_fuel_max);
907 if (player.armorvalue < item.max_armorvalue)
908 c = c + max(0, 1 - player.armorvalue / item.max_armorvalue);
910 if (player.health < item.max_health)
911 c = c + max(0, 1 - player.health / item.max_health);
913 return item.bot_pickupbasevalue * c;
916 void Item_Damage(entity inflictor, entity attacker, float damage, float deathtype, vector hitloc, vector force)
918 if(ITEM_DAMAGE_NEEDKILL(deathtype))
923 void StartItem (string itemmodel, string pickupsound, float defaultrespawntime, float defaultrespawntimejitter, string itemname, float itemid, float weaponid, float itemflags, float(entity player, entity item) pickupevalfunc, float pickupbasevalue)
925 startitem_failed = FALSE;
928 self.model = itemmodel;
932 error(strcat("^1Tried to spawn ", itemname, " with no model!\n"));
936 if(self.item_pickupsound == "")
937 self.item_pickupsound = pickupsound;
939 if(!self.respawntime) // both need to be set
941 self.respawntime = defaultrespawntime;
942 self.respawntimejitter = defaultrespawntimejitter;
946 self.weapon = weaponid;
949 WEPSET_COPY_EW(self, weaponid);
951 self.flags = FL_ITEM | itemflags;
953 if(MUTATOR_CALLHOOK(FilterItem)) // error means we do not want the item
955 startitem_failed = TRUE;
960 // is it a dropped weapon?
961 if (self.classname == "droppedweapon")
963 self.reset = SUB_Remove;
964 // it's a dropped weapon
965 self.movetype = MOVETYPE_TOSS;
967 // Savage: remove thrown items after a certain period of time ("garbage collection")
968 self.think = RemoveItem;
969 self.nextthink = time + 20;
971 self.takedamage = DAMAGE_YES;
972 self.event_damage = Item_Damage;
974 if(self.strength_finished || self.invincible_finished || self.superweapons_finished)
977 if(WEPSET_CONTAINS_ALL_AE(WEPBIT_SUPERWEAPONS, self)) // only superweapons
978 if(self.ammo_nails == 0)
979 if(self.ammo_cells == 0)
980 if(self.ammo_rockets == 0)
981 if(self.ammo_shells == 0)
982 if(self.ammo_fuel == 0)
984 if(self.armorvalue == 0)
987 // if item is worthless after a timer, have it expire then
988 self.nextthink = max(self.strength_finished, self.invincible_finished, self.superweapons_finished);
991 // don't drop if in a NODROP zone (such as lava)
992 traceline(self.origin, self.origin, MOVE_NORMAL, self);
993 if (trace_dpstartcontents & DPCONTENTS_NODROP)
995 startitem_failed = TRUE;
1002 if(!have_pickup_item())
1004 startitem_failed = TRUE;
1009 if(self.angles != '0 0 0')
1010 self.SendFlags |= ISF_ANGLES;
1012 self.reset = Item_Reset;
1013 // it's a level item
1014 if(self.spawnflags & 1)
1017 self.movetype = MOVETYPE_NONE;
1019 self.movetype = MOVETYPE_TOSS;
1020 // do item filtering according to game mode and other things
1023 // first nudge it off the floor a little bit to avoid math errors
1024 setorigin(self, self.origin + '0 0 1');
1025 // set item size before we spawn a spawnfunc_waypoint
1026 if((itemflags & FL_POWERUP) || self.health || self.armorvalue)
1027 setsize (self, '-16 -16 0', '16 16 48');
1029 setsize (self, '-16 -16 0', '16 16 32');
1030 // note droptofloor returns FALSE if stuck/or would fall too far
1032 waypoint_spawnforitem(self);
1036 * can't do it that way, as it would break maps
1037 * TODO make a target_give like entity another way, that perhaps has
1038 * the weapon name in a key
1041 // target_give not yet supported; maybe later
1042 print("removed targeted ", self.classname, "\n");
1043 startitem_failed = TRUE;
1049 if(autocvar_spawn_debug >= 2)
1052 for(otheritem = findradius(self.origin, 3); otheritem; otheritem = otheritem.chain)
1054 // why not flags & fl_item?
1055 if(otheritem.is_item)
1057 dprint("XXX Found duplicated item: ", itemname, vtos(self.origin));
1058 dprint(" vs ", otheritem.netname, vtos(otheritem.origin), "\n");
1059 error("Mapper sucks.");
1062 self.is_item = TRUE;
1065 WEPSET_OR_AW(weaponsInMap, weaponid);
1067 precache_model (self.model);
1068 precache_sound (self.item_pickupsound);
1070 precache_sound ("misc/itemrespawncountdown.wav");
1071 if(itemid == IT_STRENGTH)
1072 precache_sound ("misc/strength_respawn.wav");
1073 else if(itemid == IT_INVINCIBLE)
1074 precache_sound ("misc/shield_respawn.wav");
1076 precache_sound ("misc/itemrespawn.wav");
1078 if((itemflags & (FL_POWERUP | FL_WEAPON)) || (itemid & (IT_HEALTH | IT_ARMOR | IT_KEY1 | IT_KEY2)))
1079 self.target = "###item###"; // for finding the nearest item using find()
1082 self.bot_pickup = TRUE;
1083 self.bot_pickupevalfunc = pickupevalfunc;
1084 self.bot_pickupbasevalue = pickupbasevalue;
1085 self.mdl = self.model;
1086 self.netname = itemname;
1087 self.touch = Item_Touch;
1088 setmodel(self, "null"); // precision set below
1089 //self.effects |= EF_LOWPRECISION;
1091 if((itemflags & FL_POWERUP) || self.health || self.armorvalue)
1093 self.pos1 = '-16 -16 0';
1094 self.pos2 = '16 16 48';
1098 self.pos1 = '-16 -16 0';
1099 self.pos2 = '16 16 32';
1101 setsize (self, self.pos1, self.pos2);
1103 if(itemflags & FL_POWERUP)
1104 self.ItemStatus |= ITS_ANIMATE1;
1106 if(self.armorvalue || self.health)
1107 self.ItemStatus |= ITS_ANIMATE2;
1109 if(itemflags & FL_WEAPON)
1111 if (self.classname != "droppedweapon") // if dropped, colormap is already set up nicely
1112 self.colormap = 1024; // color shirt=0 pants=0 grey
1116 self.ItemStatus |= ITS_ANIMATE1;
1117 self.ItemStatus |= ISF_COLORMAP;
1121 if(self.team) // broken, no idea why.
1124 self.cnt = 1; // item probability weight
1126 self.effects |= EF_NODRAW; // marker for item team search
1127 InitializeEntity(self, Item_FindTeam, INITPRIO_FINDTARGET);
1132 Net_LinkEntity(self, FALSE, 0, ItemSend);
1134 // call this hook after everything else has been done
1135 if(MUTATOR_CALLHOOK(Item_Spawn))
1137 startitem_failed = TRUE;
1143 float weaponswapping;
1146 void weapon_defaultspawnfunc(float wpn)
1150 var .float ammofield;
1156 if(self.classname != "droppedweapon" && self.classname != "replacedweapon")
1158 e = get_weaponinfo(wpn);
1160 if(e.spawnflags & WEP_FLAG_MUTATORBLOCKED)
1162 print("Attempted to spawn a mutator-blocked weapon; these guns will in the future require a mutator\n");
1164 objerror("Attempted to spawn a mutator-blocked weapon rejected");
1165 startitem_failed = TRUE;
1170 s = W_Apply_Weaponreplace(e.netname);
1173 MUTATOR_CALLHOOK(SetWeaponreplace);
1178 startitem_failed = TRUE;
1181 t = tokenize_console(s);
1184 self.team = --internalteam;
1186 for(i = 1; i < t; ++i)
1189 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
1191 e = get_weaponinfo(j);
1195 copyentity(oldself, self);
1196 self.classname = "replacedweapon";
1197 weapon_defaultspawnfunc(j);
1203 print("The weapon replace list for ", oldself.classname, " contains an unknown weapon ", s, ". Skipped.\n");
1208 if(t >= 1) // always the case!
1212 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
1214 e = get_weaponinfo(j);
1223 print("The weapon replace list for ", self.classname, " contains an unknown weapon ", s, ". Skipped.\n");
1229 startitem_failed = TRUE;
1234 e = get_weaponinfo(wpn);
1236 if(!self.respawntime)
1238 if(WEPSET_CONTAINS_ANY_EA(e, WEPBIT_SUPERWEAPONS))
1240 self.respawntime = g_pickup_respawntime_superweapon;
1241 self.respawntimejitter = g_pickup_respawntimejitter_superweapon;
1245 self.respawntime = g_pickup_respawntime_weapon;
1246 self.respawntimejitter = g_pickup_respawntimejitter_weapon;
1250 if(WEPSET_CONTAINS_ANY_EA(e, WEPBIT_SUPERWEAPONS))
1251 if(!self.superweapons_finished)
1252 self.superweapons_finished = autocvar_g_balance_superweapons_time;
1256 for(i = 0, j = 1; i < 24; ++i, j *= 2)
1260 ammofield = Item_CounterField(j);
1262 self.ammofield = cvar(strcat("g_pickup_", Item_CounterFieldName(j), "_weapon"));
1268 if(g_pickup_weapons_anyway)
1269 self.pickup_anyway = TRUE;
1273 // no weapon-stay on superweapons
1274 if(WEPSET_CONTAINS_ANY_EA(e, WEPBIT_SUPERWEAPONS))
1275 f |= FL_NO_WEAPON_STAY;
1277 // weapon stay isn't supported for teamed weapons
1279 f |= FL_NO_WEAPON_STAY;
1281 StartItem(e.model, "weapons/weaponpickup.wav", self.respawntime, self.respawntimejitter, e.message, 0, e.weapon, f, weapon_pickupevalfunc, e.bot_pickupbasevalue);
1282 if (self.modelindex) // don't precache if self was removed
1283 weapon_action(e.weapon, WR_PRECACHE);
1286 void spawnfunc_weapon_shotgun (void);
1287 void spawnfunc_weapon_uzi (void) {
1288 if(autocvar_sv_q3acompat_machineshotgunswap)
1289 if(self.classname != "droppedweapon")
1291 weapon_defaultspawnfunc(WEP_SHOTGUN);
1294 weapon_defaultspawnfunc(WEP_UZI);
1297 void spawnfunc_weapon_shotgun (void) {
1298 if(autocvar_sv_q3acompat_machineshotgunswap)
1299 if(self.classname != "droppedweapon")
1301 weapon_defaultspawnfunc(WEP_UZI);
1304 weapon_defaultspawnfunc(WEP_SHOTGUN);
1307 void spawnfunc_weapon_nex (void)
1309 weapon_defaultspawnfunc(WEP_NEX);
1312 void spawnfunc_weapon_minstanex (void)
1314 weapon_defaultspawnfunc(WEP_MINSTANEX);
1317 void spawnfunc_weapon_rocketlauncher (void)
1319 weapon_defaultspawnfunc(WEP_ROCKET_LAUNCHER);
1322 void spawnfunc_item_rockets (void) {
1323 if(!self.ammo_rockets)
1324 self.ammo_rockets = g_pickup_rockets;
1325 if(!self.pickup_anyway)
1326 self.pickup_anyway = g_pickup_ammo_anyway;
1327 StartItem ("models/items/a_rockets.md3", "misc/itempickup.wav", g_pickup_respawntime_ammo, g_pickup_respawntimejitter_ammo, "rockets", IT_ROCKETS, 0, 0, commodity_pickupevalfunc, 3000);
1330 void spawnfunc_item_shells (void);
1331 void spawnfunc_item_bullets (void) {
1333 if(autocvar_sv_q3acompat_machineshotgunswap)
1334 if(self.classname != "droppedweapon")
1336 weaponswapping = TRUE;
1337 spawnfunc_item_shells();
1338 weaponswapping = FALSE;
1342 if(!self.ammo_nails)
1343 self.ammo_nails = g_pickup_nails;
1344 if(!self.pickup_anyway)
1345 self.pickup_anyway = g_pickup_ammo_anyway;
1346 StartItem ("models/items/a_bullets.mdl", "misc/itempickup.wav", g_pickup_respawntime_ammo, g_pickup_respawntimejitter_ammo, "bullets", IT_NAILS, 0, 0, commodity_pickupevalfunc, 2000);
1349 void spawnfunc_item_cells (void) {
1350 if(!self.ammo_cells)
1351 self.ammo_cells = g_pickup_cells;
1352 if(!self.pickup_anyway)
1353 self.pickup_anyway = g_pickup_ammo_anyway;
1354 StartItem ("models/items/a_cells.md3", "misc/itempickup.wav", g_pickup_respawntime_ammo, g_pickup_respawntimejitter_ammo, "cells", IT_CELLS, 0, 0, commodity_pickupevalfunc, 2000);
1357 void spawnfunc_item_shells (void) {
1359 if(autocvar_sv_q3acompat_machineshotgunswap)
1360 if(self.classname != "droppedweapon")
1362 weaponswapping = TRUE;
1363 spawnfunc_item_bullets();
1364 weaponswapping = FALSE;
1368 if(!self.ammo_shells)
1369 self.ammo_shells = g_pickup_shells;
1370 if(!self.pickup_anyway)
1371 self.pickup_anyway = g_pickup_ammo_anyway;
1372 StartItem ("models/items/a_shells.md3", "misc/itempickup.wav", g_pickup_respawntime_ammo, g_pickup_respawntimejitter_ammo, "shells", IT_SHELLS, 0, 0, commodity_pickupevalfunc, 500);
1375 void spawnfunc_item_armor_small (void) {
1376 if(!self.armorvalue)
1377 self.armorvalue = g_pickup_armorsmall;
1378 if(!self.max_armorvalue)
1379 self.max_armorvalue = g_pickup_armorsmall_max;
1380 if(!self.pickup_anyway)
1381 self.pickup_anyway = g_pickup_armorsmall_anyway;
1382 StartItem ("models/items/item_armor_small.md3", "misc/armor1.wav", g_pickup_respawntime_short, g_pickup_respawntimejitter_short, "5 Armor", IT_ARMOR_SHARD, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_LOW);
1385 void spawnfunc_item_armor_medium (void) {
1386 if(!self.armorvalue)
1387 self.armorvalue = g_pickup_armormedium;
1388 if(!self.max_armorvalue)
1389 self.max_armorvalue = g_pickup_armormedium_max;
1390 if(!self.pickup_anyway)
1391 self.pickup_anyway = g_pickup_armormedium_anyway;
1392 StartItem ("models/items/item_armor_medium.md3", "misc/armor10.wav", g_pickup_respawntime_medium, g_pickup_respawntimejitter_medium, "25 Armor", IT_ARMOR, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_MID);
1395 void spawnfunc_item_armor_big (void) {
1396 if(!self.armorvalue)
1397 self.armorvalue = g_pickup_armorbig;
1398 if(!self.max_armorvalue)
1399 self.max_armorvalue = g_pickup_armorbig_max;
1400 if(!self.pickup_anyway)
1401 self.pickup_anyway = g_pickup_armorbig_anyway;
1402 StartItem ("models/items/item_armor_big.md3", "misc/armor17_5.wav", g_pickup_respawntime_long, g_pickup_respawntimejitter_long, "50 Armor", IT_ARMOR, 0, 0, commodity_pickupevalfunc, 20000);
1405 void spawnfunc_item_armor_large (void) {
1406 if(!self.armorvalue)
1407 self.armorvalue = g_pickup_armorlarge;
1408 if(!self.max_armorvalue)
1409 self.max_armorvalue = g_pickup_armorlarge_max;
1410 if(!self.pickup_anyway)
1411 self.pickup_anyway = g_pickup_armorlarge_anyway;
1412 StartItem ("models/items/item_armor_large.md3", "misc/armor25.wav", g_pickup_respawntime_long, g_pickup_respawntimejitter_long, "100 Armor", IT_ARMOR, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_HIGH);
1415 void spawnfunc_item_health_small (void) {
1416 if(!self.max_health)
1417 self.max_health = g_pickup_healthsmall_max;
1419 self.health = g_pickup_healthsmall;
1420 if(!self.pickup_anyway)
1421 self.pickup_anyway = g_pickup_healthsmall_anyway;
1422 StartItem ("models/items/g_h1.md3", "misc/minihealth.wav", g_pickup_respawntime_short, g_pickup_respawntimejitter_short, "5 Health", IT_5HP, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_LOW);
1425 void spawnfunc_item_health_medium (void) {
1426 if(!self.max_health)
1427 self.max_health = g_pickup_healthmedium_max;
1429 self.health = g_pickup_healthmedium;
1430 if(!self.pickup_anyway)
1431 self.pickup_anyway = g_pickup_healthmedium_anyway;
1432 StartItem ("models/items/g_h25.md3", "misc/mediumhealth.wav", g_pickup_respawntime_short, g_pickup_respawntimejitter_short, "25 Health", IT_25HP, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_MID);
1435 void spawnfunc_item_health_large (void) {
1436 if(!self.max_health)
1437 self.max_health = g_pickup_healthlarge_max;
1439 self.health = g_pickup_healthlarge;
1440 if(!self.pickup_anyway)
1441 self.pickup_anyway = g_pickup_healthlarge_anyway;
1442 StartItem ("models/items/g_h50.md3", "misc/mediumhealth.wav", g_pickup_respawntime_medium, g_pickup_respawntimejitter_medium, "50 Health", IT_25HP, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_MID);
1445 void spawnfunc_item_health_mega (void) {
1446 if(!self.max_health)
1447 self.max_health = g_pickup_healthmega_max;
1449 self.health = g_pickup_healthmega;
1450 if(!self.pickup_anyway)
1451 self.pickup_anyway = g_pickup_healthmega_anyway;
1452 StartItem ("models/items/g_h100.md3", "misc/megahealth.wav", g_pickup_respawntime_long, g_pickup_respawntimejitter_long, "100 Health", IT_HEALTH, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_HIGH);
1455 // support old misnamed entities
1456 void spawnfunc_item_armor1() { spawnfunc_item_armor_small(); } // FIXME: in Quake this is green armor, in Xonotic maps it is an armor shard
1457 void spawnfunc_item_armor25() { spawnfunc_item_armor_large(); }
1458 void spawnfunc_item_health1() { spawnfunc_item_health_small(); }
1459 void spawnfunc_item_health25() { spawnfunc_item_health_medium(); }
1460 void spawnfunc_item_health100() { spawnfunc_item_health_mega(); }
1462 void spawnfunc_item_strength (void) {
1463 precache_sound("weapons/strength_fire.wav");
1464 if(!self.strength_finished)
1465 self.strength_finished = autocvar_g_balance_powerup_strength_time;
1466 StartItem ("models/items/g_strength.md3", "misc/powerup.wav", g_pickup_respawntime_powerup, g_pickup_respawntimejitter_powerup, "Strength Powerup", IT_STRENGTH, 0, FL_POWERUP, generic_pickupevalfunc, 100000);
1469 void spawnfunc_item_invincible (void) {
1470 if(!self.invincible_finished)
1471 self.invincible_finished = autocvar_g_balance_powerup_invincible_time;
1472 StartItem ("models/items/g_invincible.md3", "misc/powerup_shield.wav", g_pickup_respawntime_powerup, g_pickup_respawntimejitter_powerup, "Shield", IT_INVINCIBLE, 0, FL_POWERUP, generic_pickupevalfunc, 100000);
1476 void spawnfunc_item_quad (void) {self.classname = "item_strength";spawnfunc_item_strength();}
1478 float GiveItems(entity e, float beginarg, float endarg);
1479 void target_items_use (void)
1481 if(activator.classname == "droppedweapon")
1488 if(activator.classname != "player")
1490 if(activator.deadflag != DEAD_NO)
1495 for(e = world; (e = find(e, classname, "droppedweapon")); )
1496 if(e.enemy == activator)
1499 if(GiveItems(activator, 0, tokenize_console(self.netname)))
1500 centerprint(activator, self.message);
1503 void spawnfunc_target_items (void)
1508 self.use = target_items_use;
1509 if(!self.strength_finished)
1510 self.strength_finished = autocvar_g_balance_powerup_strength_time;
1511 if(!self.invincible_finished)
1512 self.invincible_finished = autocvar_g_balance_powerup_invincible_time;
1513 if(!self.superweapons_finished)
1514 self.superweapons_finished = autocvar_g_balance_superweapons_time;
1516 precache_sound("misc/itempickup.wav");
1517 precache_sound("misc/megahealth.wav");
1518 precache_sound("misc/armor25.wav");
1519 precache_sound("misc/powerup.wav");
1520 precache_sound("misc/poweroff.wav");
1521 precache_sound("weapons/weaponpickup.wav");
1523 n = tokenize_console(self.netname);
1524 if(argv(0) == "give")
1526 self.netname = substring(self.netname, argv_start_index(1), argv_end_index(-1) - argv_start_index(1));
1530 for(i = 0; i < n; ++i)
1532 if (argv(i) == "unlimited_ammo") self.items |= IT_UNLIMITED_AMMO;
1533 else if(argv(i) == "unlimited_weapon_ammo") self.items |= IT_UNLIMITED_WEAPON_AMMO;
1534 else if(argv(i) == "unlimited_superweapons") self.items |= IT_UNLIMITED_SUPERWEAPONS;
1535 else if(argv(i) == "strength") self.items |= IT_STRENGTH;
1536 else if(argv(i) == "invincible") self.items |= IT_INVINCIBLE;
1537 else if(argv(i) == "superweapons") self.items |= IT_SUPERWEAPON;
1538 else if(argv(i) == "jetpack") self.items |= IT_JETPACK;
1539 else if(argv(i) == "fuel_regen") self.items |= IT_FUEL_REGEN;
1542 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
1544 e = get_weaponinfo(j);
1545 if(argv(i) == e.netname)
1547 WEPSET_OR_EW(self, j);
1548 if(self.spawnflags == 0 || self.spawnflags == 2)
1549 weapon_action(e.weapon, WR_PRECACHE);
1554 print("target_items: invalid item ", argv(i), "\n");
1558 string itemprefix, valueprefix;
1559 if(self.spawnflags == 0)
1564 else if(self.spawnflags == 1)
1566 itemprefix = "max ";
1567 valueprefix = "max ";
1569 else if(self.spawnflags == 2)
1571 itemprefix = "min ";
1572 valueprefix = "min ";
1574 else if(self.spawnflags == 4)
1576 itemprefix = "minus ";
1577 valueprefix = "max ";
1581 error("invalid spawnflags");
1583 itemprefix = string_null;
1584 valueprefix = string_null;
1589 self.netname = sprintf("%s %s%d %s", self.netname, itemprefix, !!(self.items & IT_UNLIMITED_WEAPON_AMMO), "unlimited_weapon_ammo");
1590 self.netname = sprintf("%s %s%d %s", self.netname, itemprefix, !!(self.items & IT_UNLIMITED_SUPERWEAPONS), "unlimited_superweapons");
1591 self.netname = sprintf("%s %s%d %s", self.netname, valueprefix, self.strength_finished * !!(self.items & IT_STRENGTH), "strength");
1592 self.netname = sprintf("%s %s%d %s", self.netname, valueprefix, self.invincible_finished * !!(self.items & IT_INVINCIBLE), "invincible");
1593 self.netname = sprintf("%s %s%d %s", self.netname, valueprefix, self.superweapons_finished * !!(self.items & IT_SUPERWEAPON), "superweapons");
1594 self.netname = sprintf("%s %s%d %s", self.netname, itemprefix, !!(self.items & IT_JETPACK), "jetpack");
1595 self.netname = sprintf("%s %s%d %s", self.netname, itemprefix, !!(self.items & IT_FUEL_REGEN), "fuel_regen");
1596 if(self.ammo_shells != 0) self.netname = sprintf("%s %s%d %s", self.netname, valueprefix, max(0, self.ammo_shells), "shells");
1597 if(self.ammo_nails != 0) self.netname = sprintf("%s %s%d %s", self.netname, valueprefix, max(0, self.ammo_nails), "nails");
1598 if(self.ammo_rockets != 0) self.netname = sprintf("%s %s%d %s", self.netname, valueprefix, max(0, self.ammo_rockets), "rockets");
1599 if(self.ammo_cells != 0) self.netname = sprintf("%s %s%d %s", self.netname, valueprefix, max(0, self.ammo_cells), "cells");
1600 if(self.ammo_fuel != 0) self.netname = sprintf("%s %s%d %s", self.netname, valueprefix, max(0, self.ammo_fuel), "fuel");
1601 if(self.health != 0) self.netname = sprintf("%s %s%d %s", self.netname, valueprefix, max(0, self.health), "health");
1602 if(self.armorvalue != 0) self.netname = sprintf("%s %s%d %s", self.netname, valueprefix, max(0, self.health), "armor");
1603 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
1605 e = get_weaponinfo(j);
1607 self.netname = sprintf("%s %s%d %s", self.netname, itemprefix, WEPSET_CONTAINS_EW(self, j), e.netname);
1610 self.netname = strzone(self.netname);
1611 //print(self.netname, "\n");
1613 n = tokenize_console(self.netname);
1614 for(i = 0; i < n; ++i)
1616 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
1618 e = get_weaponinfo(j);
1619 if(argv(i) == e.netname)
1621 weapon_action(e.weapon, WR_PRECACHE);
1628 void spawnfunc_item_fuel(void)
1631 self.ammo_fuel = g_pickup_fuel;
1632 if(!self.pickup_anyway)
1633 self.pickup_anyway = g_pickup_ammo_anyway;
1634 StartItem ("models/items/g_fuel.md3", "misc/itempickup.wav", g_pickup_respawntime_ammo, g_pickup_respawntimejitter_ammo, "Fuel", IT_FUEL, 0, 0, commodity_pickupevalfunc, BOT_PICKUP_RATING_LOW);
1637 void spawnfunc_item_fuel_regen(void)
1639 if(start_items & IT_FUEL_REGEN)
1641 spawnfunc_item_fuel();
1644 StartItem ("models/items/g_fuelregen.md3", "misc/itempickup.wav", g_pickup_respawntime_powerup, g_pickup_respawntimejitter_powerup, "Fuel regenerator", IT_FUEL_REGEN, 0, FL_POWERUP, commodity_pickupevalfunc, BOT_PICKUP_RATING_LOW);
1647 void spawnfunc_item_jetpack(void)
1649 if(g_grappling_hook)
1650 return; // sorry, but these two can't coexist (same button); spawn fuel instead
1652 self.ammo_fuel = g_pickup_fuel_jetpack;
1653 if(start_items & IT_JETPACK)
1655 spawnfunc_item_fuel();
1658 StartItem ("models/items/g_jetpack.md3", "misc/itempickup.wav", g_pickup_respawntime_powerup, g_pickup_respawntimejitter_powerup, "Jet pack", IT_JETPACK, 0, FL_POWERUP, commodity_pickupevalfunc, BOT_PICKUP_RATING_LOW);
1668 float GiveWeapon(entity e, float wpn, float op, float val)
1671 v0 = WEPSET_CONTAINS_EW(e, wpn);
1676 WEPSET_OR_EW(e, wpn);
1678 WEPSET_ANDNOT_EW(e, wpn);
1683 WEPSET_OR_EW(e, wpn);
1687 WEPSET_ANDNOT_EW(e, wpn);
1691 WEPSET_ANDNOT_EW(e, wpn);
1694 v1 = WEPSET_CONTAINS_EW(e, wpn);
1698 float GiveBit(entity e, .float fld, float bit, float op, float val)
1728 float GiveValue(entity e, .float fld, float op, float val)
1738 e.fld = max(e.fld, val); // min 100 cells = at least 100 cells
1741 e.fld = min(e.fld, val);
1754 void GiveSound(entity e, float v0, float v1, float t, string snd_incr, string snd_decr)
1761 sound (e, CH_TRIGGER, snd_decr, VOL_BASE, ATTN_NORM);
1763 else if(v0 >= v0 + t)
1766 sound (e, CH_TRIGGER, snd_incr, VOL_BASE, ATTN_NORM);
1770 void GiveRot(entity e, float v0, float v1, .float rotfield, float rottime, .float regenfield, float regentime)
1773 e.rotfield = max(e.rotfield, time + rottime);
1775 e.regenfield = max(e.regenfield, time + regentime);
1778 #define PREGIVE_WEAPONS(e) WEPSET_DECLARE_A(save_weapons); WEPSET_COPY_AE(save_weapons, e)
1779 #define PREGIVE(e,f) float save_##f; save_##f = (e).f
1780 #define POSTGIVE_WEAPON(e,b,snd_incr,snd_decr) GiveSound((e), WEPSET_CONTAINS_AW(save_weapons, b), WEPSET_CONTAINS_EW(e, b), 0, snd_incr, snd_decr)
1781 #define POSTGIVE_BIT(e,f,b,snd_incr,snd_decr) GiveSound((e), save_##f & (b), (e).f & (b), 0, snd_incr, snd_decr)
1782 #define POSTGIVE_VALUE(e,f,t,snd_incr,snd_decr) GiveSound((e), save_##f, (e).f, t, snd_incr, snd_decr)
1783 #define POSTGIVE_VALUE_ROT(e,f,t,rotfield,rottime,regenfield,regentime,snd_incr,snd_decr) GiveRot((e), save_##f, (e).f, rotfield, rottime, regenfield, regentime); GiveSound((e), save_##f, (e).f, t, snd_incr, snd_decr)
1785 float GiveItems(entity e, float beginarg, float endarg)
1787 float got, i, j, val, op;
1788 float _switchweapon;
1797 _switchweapon = FALSE;
1799 if (e.switchweapon == w_getbestweapon(e))
1800 _switchweapon = TRUE;
1802 e.strength_finished = max(0, e.strength_finished - time);
1803 e.invincible_finished = max(0, e.invincible_finished - time);
1804 e.superweapons_finished = max(0, e.superweapons_finished - time);
1808 PREGIVE(e, strength_finished);
1809 PREGIVE(e, invincible_finished);
1810 PREGIVE(e, superweapons_finished);
1811 PREGIVE(e, ammo_nails);
1812 PREGIVE(e, ammo_cells);
1813 PREGIVE(e, ammo_shells);
1814 PREGIVE(e, ammo_rockets);
1815 PREGIVE(e, ammo_fuel);
1816 PREGIVE(e, armorvalue);
1819 for(i = beginarg; i < endarg; ++i)
1823 if(cmd == "0" || stof(cmd))
1847 got += GiveBit(e, items, IT_FUEL_REGEN, op, val);
1848 got += GiveValue(e, strength_finished, op, val);
1849 got += GiveValue(e, invincible_finished, op, val);
1850 got += GiveValue(e, superweapons_finished, op, val);
1851 got += GiveBit(e, items, IT_UNLIMITED_AMMO, op, val);
1853 got += GiveBit(e, items, IT_JETPACK, op, val);
1854 got += GiveValue(e, health, op, val);
1855 got += GiveValue(e, armorvalue, op, val);
1857 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
1859 wi = get_weaponinfo(j);
1861 if not(wi.spawnflags & WEP_FLAG_MUTATORBLOCKED)
1862 got += GiveWeapon(e, j, op, val);
1865 got += GiveValue(e, ammo_cells, op, val);
1866 got += GiveValue(e, ammo_shells, op, val);
1867 got += GiveValue(e, ammo_nails, op, val);
1868 got += GiveValue(e, ammo_rockets, op, val);
1869 got += GiveValue(e, ammo_fuel, op, val);
1871 case "unlimited_ammo":
1872 got += GiveBit(e, items, IT_UNLIMITED_AMMO, op, val);
1874 case "unlimited_weapon_ammo":
1875 got += GiveBit(e, items, IT_UNLIMITED_WEAPON_AMMO, op, val);
1877 case "unlimited_superweapons":
1878 got += GiveBit(e, items, IT_UNLIMITED_SUPERWEAPONS, op, val);
1881 got += GiveBit(e, items, IT_JETPACK, op, val);
1884 got += GiveBit(e, items, IT_FUEL_REGEN, op, val);
1887 got += GiveValue(e, strength_finished, op, val);
1890 got += GiveValue(e, invincible_finished, op, val);
1892 case "superweapons":
1893 got += GiveValue(e, superweapons_finished, op, val);
1896 got += GiveValue(e, ammo_cells, op, val);
1899 got += GiveValue(e, ammo_shells, op, val);
1903 got += GiveValue(e, ammo_nails, op, val);
1906 got += GiveValue(e, ammo_rockets, op, val);
1909 got += GiveValue(e, health, op, val);
1912 got += GiveValue(e, armorvalue, op, val);
1915 got += GiveValue(e, ammo_fuel, op, val);
1918 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
1920 wi = get_weaponinfo(j);
1921 if(cmd == wi.netname)
1923 got += GiveWeapon(e, j, op, val);
1928 print("give: invalid item ", cmd, "\n");
1935 POSTGIVE_BIT(e, items, IT_FUEL_REGEN, "misc/itempickup.wav", string_null);
1936 POSTGIVE_BIT(e, items, IT_UNLIMITED_SUPERWEAPONS, "misc/powerup.wav", "misc/poweroff.wav");
1937 POSTGIVE_BIT(e, items, IT_UNLIMITED_WEAPON_AMMO, "misc/powerup.wav", "misc/poweroff.wav");
1938 POSTGIVE_BIT(e, items, IT_JETPACK, "misc/itempickup.wav", string_null);
1939 for(j = WEP_FIRST; j <= WEP_LAST; ++j)
1941 wi = get_weaponinfo(j);
1944 POSTGIVE_WEAPON(e, j, "weapons/weaponpickup.wav", string_null);
1945 if not(WEPSET_CONTAINS_AW(save_weapons, j))
1946 if(WEPSET_CONTAINS_EW(e, j))
1947 weapon_action(wi.weapon, WR_PRECACHE);
1950 POSTGIVE_VALUE(e, strength_finished, 1, "misc/powerup.wav", "misc/poweroff.wav");
1951 POSTGIVE_VALUE(e, invincible_finished, 1, "misc/powerup_shield.wav", "misc/poweroff.wav");
1952 POSTGIVE_VALUE(e, ammo_nails, 0, "misc/itempickup.wav", string_null);
1953 POSTGIVE_VALUE(e, ammo_cells, 0, "misc/itempickup.wav", string_null);
1954 POSTGIVE_VALUE(e, ammo_shells, 0, "misc/itempickup.wav", string_null);
1955 POSTGIVE_VALUE(e, ammo_rockets, 0, "misc/itempickup.wav", string_null);
1956 POSTGIVE_VALUE_ROT(e, ammo_fuel, 1, pauserotfuel_finished, autocvar_g_balance_pause_fuel_rot, pauseregen_finished, autocvar_g_balance_pause_fuel_regen, "misc/itempickup.wav", string_null);
1957 POSTGIVE_VALUE_ROT(e, armorvalue, 1, pauserotarmor_finished, autocvar_g_balance_pause_armor_rot, pauseregen_finished, autocvar_g_balance_pause_health_regen, "misc/armor25.wav", string_null);
1958 POSTGIVE_VALUE_ROT(e, health, 1, pauserothealth_finished, autocvar_g_balance_pause_health_rot, pauseregen_finished, autocvar_g_balance_pause_health_regen, "misc/megahealth.wav", string_null);
1960 if(e.superweapons_finished <= 0)
1961 if(WEPSET_CONTAINS_ANY_EA(self, WEPBIT_SUPERWEAPONS))
1962 e.superweapons_finished = autocvar_g_balance_superweapons_time;
1964 if(e.strength_finished <= 0)
1965 e.strength_finished = 0;
1967 e.strength_finished += time;
1968 if(e.invincible_finished <= 0)
1969 e.invincible_finished = 0;
1971 e.invincible_finished += time;
1972 if(e.superweapons_finished <= 0)
1973 e.superweapons_finished = 0;
1975 e.superweapons_finished += time;
1977 if not(WEPSET_CONTAINS_EW(e, e.switchweapon))
1978 _switchweapon = TRUE;
1980 W_SwitchWeapon_Force(e, w_getbestweapon(e));