Moves relevant monster item code to a shared function.
set g_overkill_filter_armormega 0
set g_overkill_blaster_keepdamage 0 "allow secondary fire to hurt players"
set g_overkill_blaster_keepforce 0 "allow secondary fire to push players"
+set g_overkill_loot_player "armor_small" "on player death a random loot item from this space-separated list is dropped, \"random\" drops any allowed normal item, \"\" disables loot items"
+set g_overkill_loot_player_time 5 "lifetime of loot items, <= 0 disables loot items"
+set g_overkill_loot_monster "armor_small" "on monster death a random loot item from this space-separated list is dropped, \"random\" drops any allowed normal item, \"\" disables loot items"
+set g_overkill_loot_monster_time 5 "lifetime of loot items, <= 0 disables loot items"
// =========
MUTATOR_CALLHOOK(MonsterDropItem, this, itemlist, attacker);
itemlist = M_ARGV(1, string);
- if(itemlist == "")
- return;
-
- RandomSelection_Init();
- FOREACH_WORD(itemlist, true,
- {
- string item = it;
-
- FOREACH(Weapons, it != WEP_Null && !(it.spawnflags & WEP_FLAG_MUTATORBLOCKED),
- {
- if(it.netname == item || (item == "random" && (it.spawnflags & WEP_FLAG_NORMAL) && !(it.spawnflags & WEP_FLAG_HIDDEN) && !(it.spawnflags & WEP_FLAG_SUPERWEAPON)))
- RandomSelection_AddEnt(it, 1, 1);
- });
- FOREACH(Items, Item_IsDefinitionAllowed(it),
- {
- if(it.netname == item || (item == "random" && (it.spawnflags & ITEM_FLAG_NORMAL) && !it.instanceOfPowerup))
- RandomSelection_AddEnt(it, 1, 1);
- });
- });
-
- if(!RandomSelection_chosen_ent)
+ entity loot_itemdef = Item_RandomFromList(itemlist);
+ if (!loot_itemdef)
return;
entity e = spawn();
e.monster_item = true;
ITEM_SET_LOOT(e, true);
e.colormap = this.colormap;
- e.itemdef = RandomSelection_chosen_ent;
+ e.itemdef = loot_itemdef;
setorigin(e, CENTER_OR_VIEWOFS(this));
e.velocity = randomvec() * 175 + '0 0 325';
e.lifetime = max(0, autocvar_g_monsters_drop_time);
bool autocvar_g_overkill_itemwaypoints = true;
bool autocvar_g_overkill_blaster_keepforce = false;
bool autocvar_g_overkill_blaster_keepdamage = false;
+string autocvar_g_overkill_loot_player = "armor_small";
+float autocvar_g_overkill_loot_player_time = 5;
+string autocvar_g_overkill_loot_monster = "armor_small";
+float autocvar_g_overkill_loot_monster_time = 5;
.Weapon ok_lastwep[MAX_WEAPONSLOTS];
}
}
-void ok_DropItem(entity this, entity attacker, entity e)
+void ok_DropItem(entity this, entity attacker, string itemlist, float itemlifetime)
{
+ if (itemlifetime <= 0)
+ return;
+
+ entity loot_itemdef = Item_RandomFromList(itemlist);
+ if (!loot_itemdef)
+ return;
+
+ entity e = spawn();
e.ok_item = true;
- e.itemdef = ITEM_ArmorSmall;
+ e.itemdef = loot_itemdef;
e.origin = this.origin + '0 0 32';
e.velocity = '0 0 200' + normalize(attacker.origin - this.origin) * 500;
- e.lifetime = 5;
+ e.lifetime = itemlifetime;
+ Item_Initialise(e);
}
MUTATOR_HOOKFUNCTION(ok, PlayerDies)
entity frag_target = M_ARGV(2, entity);
entity attacker = ((IS_PLAYER(frag_attacker)) ? frag_attacker : frag_target);
- entity item = spawn();
- ok_DropItem(frag_target, attacker, item);
- Item_Initialise(item);
+ ok_DropItem(frag_target, attacker, autocvar_g_overkill_loot_player, autocvar_g_overkill_loot_player_time);
for(int slot = 0; slot < MAX_WEAPONSLOTS; ++slot)
{
entity mon = M_ARGV(0, entity);
entity frag_attacker = M_ARGV(2, entity);
- entity item = spawn();
- ok_DropItem(mon, frag_attacker, item);
- Item_Initialise(item);
+ ok_DropItem(mon, frag_attacker, autocvar_g_overkill_loot_monster, autocvar_g_overkill_loot_monster_time);
M_ARGV(1, string) = ""; // item drops handled
}
return true;
}
+/// Takes a space-separated list of netnames,
+/// returns the itemdef of one of them (or NULL if none are available).
+entity Item_RandomFromList(string itemlist)
+{
+ if(itemlist == "")
+ return NULL;
+
+ RandomSelection_Init();
+ FOREACH_WORD(itemlist, true,
+ {
+ string item = it;
+
+ FOREACH(Weapons, it != WEP_Null && !(it.spawnflags & WEP_FLAG_MUTATORBLOCKED),
+ {
+ if(it.netname == item || (item == "random" && (it.spawnflags & WEP_FLAG_NORMAL) && !(it.spawnflags & WEP_FLAG_HIDDEN) && !(it.spawnflags & WEP_FLAG_SUPERWEAPON)))
+ RandomSelection_AddEnt(it, 1, 1);
+ });
+ FOREACH(Items, Item_IsDefinitionAllowed(it),
+ {
+ if(it.netname == item || (item == "random" && (it.spawnflags & ITEM_FLAG_NORMAL) && !it.instanceOfPowerup))
+ RandomSelection_AddEnt(it, 1, 1);
+ });
+ });
+ return RandomSelection_chosen_ent;
+}
+
// Compatibility spawn functions
/// permanent items only: noalign means the item is suspended (won't drop to floor)
bool Item_Initialise(entity item);
+/// Takes a space-separated list of netnames,
+/// returns the itemdef of one of them (or NULL if none are available).
+entity Item_RandomFromList(string itemlist);
+
/// \brief Returns whether the item is loot.
/// \param[in] item Item to check.
/// \return True if the item is loot, false otherwise.