mirror of
https://github.com/s1lentq/ReGameDLL_CS.git
synced 2024-12-28 07:35:40 +03:00
11d6b086b4
* Change constant name (SHIELDREN -> SHIELDGREN) * Correct and separate constant names
220 lines
5.0 KiB
C++
220 lines
5.0 KiB
C++
#include "precompiled.h"
|
|
|
|
LINK_ENTITY_TO_CLASS(weapon_fiveseven, CFiveSeven, CCSFiveSeven)
|
|
|
|
void CFiveSeven::Spawn()
|
|
{
|
|
Precache();
|
|
|
|
m_iId = WEAPON_FIVESEVEN;
|
|
SET_MODEL(edict(), "models/w_fiveseven.mdl");
|
|
|
|
m_iDefaultAmmo = FIVESEVEN_DEFAULT_GIVE;
|
|
m_iWeaponState &= ~WPNSTATE_SHIELD_DRAWN;
|
|
m_flAccuracy = 0.92f;
|
|
|
|
#ifdef REGAMEDLL_API
|
|
CSPlayerWeapon()->m_flBaseDamage = FIVESEVEN_DAMAGE;
|
|
#endif
|
|
|
|
// Get ready to fall down
|
|
FallInit();
|
|
|
|
// extend
|
|
CBasePlayerWeapon::Spawn();
|
|
}
|
|
|
|
void CFiveSeven::Precache()
|
|
{
|
|
PRECACHE_MODEL("models/v_fiveseven.mdl");
|
|
PRECACHE_MODEL("models/w_fiveseven.mdl");
|
|
PRECACHE_MODEL("models/shield/v_shield_fiveseven.mdl");
|
|
|
|
PRECACHE_SOUND("weapons/fiveseven-1.wav");
|
|
PRECACHE_SOUND("weapons/fiveseven_clipout.wav");
|
|
PRECACHE_SOUND("weapons/fiveseven_clipin.wav");
|
|
PRECACHE_SOUND("weapons/fiveseven_sliderelease.wav");
|
|
PRECACHE_SOUND("weapons/fiveseven_slidepull.wav");
|
|
|
|
m_iShell = PRECACHE_MODEL("models/pshell.mdl");
|
|
m_usFireFiveSeven = PRECACHE_EVENT(1, "events/fiveseven.sc");
|
|
}
|
|
|
|
int CFiveSeven::GetItemInfo(ItemInfo *p)
|
|
{
|
|
p->pszName = STRING(pev->classname);
|
|
p->pszAmmo1 = "57mm";
|
|
p->iMaxAmmo1 = MAX_AMMO_57MM;
|
|
p->pszAmmo2 = nullptr;
|
|
p->iMaxAmmo2 = -1;
|
|
p->iMaxClip = FIVESEVEN_MAX_CLIP;
|
|
p->iSlot = 1;
|
|
p->iPosition = 6;
|
|
p->iId = m_iId = WEAPON_FIVESEVEN;
|
|
p->iFlags = 0;
|
|
p->iWeight = FIVESEVEN_WEIGHT;
|
|
|
|
return 1;
|
|
}
|
|
|
|
BOOL CFiveSeven::Deploy()
|
|
{
|
|
m_flAccuracy = 0.92f;
|
|
m_fMaxSpeed = FIVESEVEN_MAX_SPEED;
|
|
m_iWeaponState &= ~WPNSTATE_SHIELD_DRAWN;
|
|
m_pPlayer->m_bShieldDrawn = false;
|
|
|
|
if (m_pPlayer->HasShield())
|
|
return DefaultDeploy("models/shield/v_shield_fiveseven.mdl", "models/shield/p_shield_fiveseven.mdl", FIVESEVEN_DRAW, "shieldgun", UseDecrement() != FALSE);
|
|
else
|
|
return DefaultDeploy("models/v_fiveseven.mdl", "models/p_fiveseven.mdl", FIVESEVEN_DRAW, "onehanded", UseDecrement() != FALSE);
|
|
}
|
|
|
|
void CFiveSeven::PrimaryAttack()
|
|
{
|
|
if (!(m_pPlayer->pev->flags & FL_ONGROUND))
|
|
{
|
|
FiveSevenFire(1.5 * (1 - m_flAccuracy), 0.2, FALSE);
|
|
}
|
|
else if (m_pPlayer->pev->velocity.Length2D() > 0)
|
|
{
|
|
FiveSevenFire(0.255 * (1 - m_flAccuracy), 0.2, FALSE);
|
|
}
|
|
else if (m_pPlayer->pev->flags & FL_DUCKING)
|
|
{
|
|
FiveSevenFire(0.075 * (1 - m_flAccuracy), 0.2, FALSE);
|
|
}
|
|
else
|
|
{
|
|
FiveSevenFire(0.15 * (1 - m_flAccuracy), 0.2, FALSE);
|
|
}
|
|
}
|
|
|
|
void CFiveSeven::SecondaryAttack()
|
|
{
|
|
ShieldSecondaryFire(FIVESEVEN_SHIELD_UP, FIVESEVEN_SHIELD_DOWN);
|
|
}
|
|
|
|
void CFiveSeven::FiveSevenFire(float flSpread, float flCycleTime, BOOL fUseSemi)
|
|
{
|
|
Vector vecAiming, vecSrc, vecDir;
|
|
int flag;
|
|
|
|
flCycleTime -= 0.05;
|
|
|
|
if (++m_iShotsFired > 1)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (m_flLastFire != 0.0f)
|
|
{
|
|
m_flAccuracy -= (0.275f - (gpGlobals->time - m_flLastFire)) * 0.25f;
|
|
|
|
if (m_flAccuracy > 0.92f)
|
|
{
|
|
m_flAccuracy = 0.92f;
|
|
}
|
|
else if (m_flAccuracy < 0.725f)
|
|
{
|
|
m_flAccuracy = 0.725f;
|
|
}
|
|
}
|
|
|
|
m_flLastFire = gpGlobals->time;
|
|
|
|
if (m_iClip <= 0)
|
|
{
|
|
if (m_fFireOnEmpty)
|
|
{
|
|
PlayEmptySound();
|
|
m_flNextPrimaryAttack = GetNextAttackDelay(0.2);
|
|
}
|
|
|
|
if (TheBots)
|
|
{
|
|
TheBots->OnEvent(EVENT_WEAPON_FIRED_ON_EMPTY, m_pPlayer);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
m_iClip--;
|
|
m_pPlayer->pev->effects |= EF_MUZZLEFLASH;
|
|
SetPlayerShieldAnim();
|
|
|
|
m_pPlayer->SetAnimation(PLAYER_ATTACK1);
|
|
UTIL_MakeVectors(m_pPlayer->pev->v_angle + m_pPlayer->pev->punchangle);
|
|
|
|
m_pPlayer->m_iWeaponVolume = BIG_EXPLOSION_VOLUME;
|
|
m_pPlayer->m_iWeaponFlash = DIM_GUN_FLASH;
|
|
|
|
vecSrc = m_pPlayer->GetGunPosition();
|
|
vecAiming = gpGlobals->v_forward;
|
|
|
|
#ifdef REGAMEDLL_API
|
|
float flBaseDamage = CSPlayerWeapon()->m_flBaseDamage;
|
|
#else
|
|
float flBaseDamage = FIVESEVEN_DAMAGE;
|
|
#endif
|
|
vecDir = m_pPlayer->FireBullets3(vecSrc, vecAiming, flSpread, 4096, 1, BULLET_PLAYER_57MM, flBaseDamage, FIVESEVEN_RANGE_MODIFER, m_pPlayer->pev, false, m_pPlayer->random_seed);
|
|
|
|
#ifdef CLIENT_WEAPONS
|
|
flag = FEV_NOTHOST;
|
|
#else
|
|
flag = 0;
|
|
#endif
|
|
|
|
PLAYBACK_EVENT_FULL(flag, m_pPlayer->edict(), m_usFireFiveSeven, 0, (float *)&g_vecZero, (float *)&g_vecZero, vecDir.x, vecDir.y,
|
|
int(m_pPlayer->pev->punchangle.x * 100), int(m_pPlayer->pev->punchangle.y * 100), m_iClip == 0, FALSE);
|
|
|
|
m_flNextPrimaryAttack = m_flNextSecondaryAttack = GetNextAttackDelay(flCycleTime);
|
|
|
|
if (!m_iClip && m_pPlayer->m_rgAmmo[m_iPrimaryAmmoType] <= 0)
|
|
{
|
|
m_pPlayer->SetSuitUpdate("!HEV_AMO0", SUIT_SENTENCE, SUIT_REPEAT_OK);
|
|
}
|
|
|
|
m_flTimeWeaponIdle = UTIL_WeaponTimeBase() + 2.0f;
|
|
m_pPlayer->pev->punchangle.x -= 2.0f;
|
|
ResetPlayerShieldAnim();
|
|
}
|
|
|
|
void CFiveSeven::Reload()
|
|
{
|
|
if (m_pPlayer->ammo_57mm <= 0)
|
|
return;
|
|
|
|
if (DefaultReload(iMaxClip(), FIVESEVEN_RELOAD, FIVESEVEN_RELOAD_TIME))
|
|
{
|
|
m_pPlayer->SetAnimation(PLAYER_RELOAD);
|
|
m_flAccuracy = 0.92f;
|
|
}
|
|
}
|
|
|
|
void CFiveSeven::WeaponIdle()
|
|
{
|
|
ResetEmptySound();
|
|
m_pPlayer->GetAutoaimVector(AUTOAIM_10DEGREES);
|
|
|
|
if (m_flTimeWeaponIdle > UTIL_WeaponTimeBase())
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (m_pPlayer->HasShield())
|
|
{
|
|
m_flTimeWeaponIdle = UTIL_WeaponTimeBase() + 20.0f;
|
|
|
|
if (m_iWeaponState & WPNSTATE_SHIELD_DRAWN)
|
|
{
|
|
SendWeaponAnim(FIVESEVEN_SHIELD_IDLE_UP, UseDecrement() != FALSE);
|
|
}
|
|
}
|
|
else if (m_iClip)
|
|
{
|
|
m_flTimeWeaponIdle = UTIL_WeaponTimeBase() + 3.0625f;
|
|
SendWeaponAnim(FIVESEVEN_IDLE, UseDecrement() != FALSE);
|
|
}
|
|
}
|