#include "spawning.qh" #include "weaponsystem.qh" #include "../resources.qh" #include #include #include #include .bool m_isreplaced; ///< Holds whether the weapon has been replaced. string W_Apply_Weaponreplace(string in) { string out = ""; FOREACH_WORD(in, true, { string replacement = ""; Weapon w = Weapons_fromstr(it); if (w) { replacement = w.weaponreplace; if (replacement == "") replacement = it; } if (replacement == "0") continue; out = cons(out, replacement); }); return out; } void weapon_defaultspawnfunc(entity this, Weapon e) { Weapon wpn = e; e = wpn = wpn.m_spawnfunc_hookreplace(wpn, this); this.classname = wpn.m_canonical_spawnfunc; if (!Item_IsLoot(this) && !this.m_isreplaced) { if (e.spawnflags & WEP_FLAG_MUTATORBLOCKED) { LOG_WARNF("Attempted to spawn a mutator-blocked weapon rejected: prvm_edict server %i", this); startitem_failed = true; return; } string s = W_Apply_Weaponreplace(e.netname); MUTATOR_CALLHOOK(SetWeaponreplace, this, e, s); s = M_ARGV(2, string); if (s == "") { delete(this); startitem_failed = true; return; } int t = tokenize_console(s); if (t >= 2) { this.team = --internalteam; for (int i = 1; i < t; ++i) { s = argv(i); FOREACH(Weapons, it != WEP_Null, { if(it.netname == s) { entity replacement = spawn(); copyentity(this, replacement); replacement.m_isreplaced = true; weapon_defaultspawnfunc(replacement, it); break; } }); } } if (t >= 1) // always the case! { s = argv(0); wpn = WEP_Null; FOREACH(Weapons, it != WEP_Null, { if(it.netname == s) { wpn = it; break; } }); } if (wpn == WEP_Null) { delete(this); startitem_failed = true; return; } } if (!Item_IsDefinitionAllowed(wpn.m_pickup)) { delete(this); startitem_failed = true; return; } if (!this.respawntime) { if (wpn.spawnflags & WEP_FLAG_SUPERWEAPON) { this.respawntime = g_pickup_respawntime_superweapon; this.respawntimejitter = g_pickup_respawntimejitter_superweapon; } else { this.respawntime = g_pickup_respawntime_weapon; this.respawntimejitter = g_pickup_respawntimejitter_weapon; } } if (wpn.spawnflags & WEP_FLAG_SUPERWEAPON) if (!this.superweapons_finished) this.superweapons_finished = autocvar_g_balance_superweapons_time; // if we don't already have ammo, give us some ammo if ((wpn.ammo_type != RESOURCE_NONE) && !GetResourceAmount(this, wpn.ammo_type)) { switch (wpn.ammo_type) { case RESOURCE_SHELLS: SetResourceAmount(this, wpn.ammo_type, cvar("g_pickup_shells_weapon")); break; case RESOURCE_BULLETS: SetResourceAmount(this, wpn.ammo_type, cvar("g_pickup_nails_weapon")); break; case RESOURCE_ROCKETS: SetResourceAmount(this, wpn.ammo_type, cvar("g_pickup_rockets_weapon")); break; case RESOURCE_CELLS: SetResourceAmount(this, wpn.ammo_type, cvar("g_pickup_cells_weapon")); break; case RESOURCE_PLASMA: SetResourceAmount(this, wpn.ammo_type, cvar("g_pickup_plasma_weapon")); break; case RESOURCE_FUEL: SetResourceAmount(this, wpn.ammo_type, cvar("g_pickup_fuel_weapon")); break; } } #if 0 // WEAPONTODO if (wpn.items) { for (int i = 0, j = 1; i < 24; ++i, j <<= 1) { if (wpn.items & j) { ammotype = Item_CounterField(j); if (!this.ammotype) this.ammotype = cvar(strcat("g_pickup_", Item_CounterFieldName(j), "_weapon")); } } } #endif // pickup anyway if (g_pickup_weapons_anyway) this.pickup_anyway = true; if(!this.owner) this.glowmod = wpn.wpcolor; GameItem def = wpn.m_pickup; _StartItem( this, this.itemdef = def, this.respawntime, // defaultrespawntime this.respawntimejitter // defaultrespawntimejitter ); #if 0 // WEAPONTODO if (this.modelindex) { // don't precache if this was removed wpn.wr_init(wpn); } #endif }