X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fweapons%2Fspawning.qc;h=17f2ddeeee2bb567271f1f689c8376494168a5a6;hb=f41f81f37e3ecf5a2d14f7bc7ffd7bbf09fff32e;hp=62b11ea45d62e47e3bc9c3d7244b05837e39c737;hpb=19e5fa4ee9a0bb59c1cec92a1b0501b14f8ccb63;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/weapons/spawning.qc b/qcsrc/server/weapons/spawning.qc index 62b11ea45..17f2ddeee 100644 --- a/qcsrc/server/weapons/spawning.qc +++ b/qcsrc/server/weapons/spawning.qc @@ -1,10 +1,14 @@ #include "spawning.qh" #include "weaponsystem.qh" +#include "../resources.qh" #include "../mutators/_mod.qh" #include +#include #include +.bool m_isreplaced; ///< Holds whether the weapon has been replaced. + string W_Apply_Weaponreplace(string in) { string out = ""; @@ -25,7 +29,9 @@ string W_Apply_Weaponreplace(string in) void weapon_defaultspawnfunc(entity this, Weapon e) { Weapon wpn = e; - if (this.classname != "droppedweapon" && this.classname != "replacedweapon") + 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) { @@ -55,7 +61,7 @@ void weapon_defaultspawnfunc(entity this, Weapon e) { entity replacement = spawn(); copyentity(this, replacement); - replacement.classname = "replacedweapon"; + replacement.m_isreplaced = true; weapon_defaultspawnfunc(replacement, it); break; } @@ -82,6 +88,13 @@ void weapon_defaultspawnfunc(entity this, Weapon e) } } + if (!Item_IsDefinitionAllowed(wpn.m_pickup)) + { + delete(this); + startitem_failed = true; + return; + } + if (!this.respawntime) { if (wpn.spawnflags & WEP_FLAG_SUPERWEAPON) @@ -101,16 +114,16 @@ void weapon_defaultspawnfunc(entity this, Weapon e) this.superweapons_finished = autocvar_g_balance_superweapons_time; // if we don't already have ammo, give us some ammo - if (!this.(wpn.ammo_field)) + if ((wpn.ammo_type != RESOURCE_NONE) && !GetResourceAmount(this, wpn.ammo_type)) { - switch (wpn.ammo_field) + switch (wpn.ammo_type) { - case ammo_shells: this.ammo_shells = cvar("g_pickup_shells_weapon"); break; - case ammo_nails: this.ammo_nails = cvar("g_pickup_nails_weapon"); break; - case ammo_rockets: this.ammo_rockets = cvar("g_pickup_rockets_weapon"); break; - case ammo_cells: this.ammo_cells = cvar("g_pickup_cells_weapon"); break; - case ammo_plasma: this.ammo_plasma = cvar("g_pickup_plasma_weapon"); break; - case ammo_fuel: this.ammo_fuel = cvar("g_pickup_fuel_weapon"); break; + 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; } }