return false;
}
-int GetAmmoConsumptionQ3(string netname)
-// Returns ammo consumed per shot by the primary/default fire mode
-// Returns 0 if the netname has no ammo cvar
+/// Returns ammo consumed per shot by the primary/default fire mode.
+/// Return value is undefined if entity isn't a weapon that uses ammo.
+int GetAmmoConsumptionQ3(entity wpn)
{
- switch (netname)
+ switch (wpn)
{
- case "arc": return autocvar_g_balance_arc_beam_ammo;
- case "devastator": return autocvar_g_balance_devastator_ammo;
- case "machinegun": return autocvar_g_balance_machinegun_sustained_ammo;
- case "minelayer": return autocvar_g_balance_minelayer_ammo;
- case "seeker": return autocvar_g_balance_seeker_tag_ammo;
- default: return cvar(strcat("g_balance_", netname, "_primary_ammo"));
+ case WEP_ARC: return WEP_CVAR(WEP_ARC, beam_ammo);
+ case WEP_DEVASTATOR: return WEP_CVAR(WEP_DEVASTATOR, ammo);
+ case WEP_MACHINEGUN: return WEP_CVAR(WEP_MACHINEGUN, sustained_ammo);
+ case WEP_MINE_LAYER: return WEP_CVAR(WEP_MINE_LAYER, ammo);
+ case WEP_SEEKER: return WEP_CVAR(WEP_SEEKER, tag_ammo);
+ default: return WEP_CVAR_PRI(wpn, ammo);
}
}
bool autocvar_sv_q3compat_changehitbox;
bool DoesQ3ARemoveThisEntity(entity this);
-int GetAmmoConsumptionQ3(string netname);
+int GetAmmoConsumptionQ3(entity wpn);
.int fragsfilter_cnt;
#define SPAWNFUNC_Q3AMMO(ammo_classname, xonwep) \
spawnfunc(ammo_classname) \
{ \
- if(this.count && xonwep.ammo_type) \
- SetResource(this, xonwep.ammo_type, this.count * GetAmmoConsumptionQ3(xonwep.netname)); \
+ if(this.count && xonwep.ammo_type != RES_NONE) \
+ SetResource(this, xonwep.ammo_type, this.count * GetAmmoConsumptionQ3(xonwep)); \
SPAWNFUNC_BODY(GetAmmoItem(xonwep.ammo_type)) \
}
{
int ammo = 0;
if (q3compat && this.count > 0)
- ammo = this.count * GetAmmoConsumptionQ3(wpn.netname);
+ ammo = this.count * GetAmmoConsumptionQ3(wpn);
// WEAPONTODO: magazines of MG, rifle and OK weapons are unaccounted for
else
{