184 lines
4.6 KiB
C++
184 lines
4.6 KiB
C++
/***
|
|
*
|
|
* Copyright (c) 1996-2002, Valve LLC. All rights reserved.
|
|
*
|
|
* This product contains software technology licensed from Id
|
|
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
|
|
* All Rights Reserved.
|
|
*
|
|
* Use, distribution, and modification of this source code and/or resulting
|
|
* object code is restricted to non-commercial enhancements to products from
|
|
* Valve LLC. All other use, distribution, or modification is prohibited
|
|
* without written permission from Valve LLC.
|
|
*
|
|
****/
|
|
|
|
#include "stdafx.h"
|
|
#include "cbase.h"
|
|
#include "player.h"
|
|
#include "weapons.h"
|
|
|
|
enum galil_e
|
|
{
|
|
GALIL_IDLE1,
|
|
GALIL_RELOAD,
|
|
GALIL_DRAW,
|
|
GALIL_SHOOT1,
|
|
GALIL_SHOOT2,
|
|
GALIL_SHOOT3
|
|
};
|
|
|
|
LINK_ENTITY_TO_CLASS(weapon_galil, CGalil);
|
|
|
|
void CGalil::Spawn(void)
|
|
{
|
|
pev->classname = MAKE_STRING("weapon_galil");
|
|
|
|
Precache();
|
|
m_iId = WEAPON_GALIL;
|
|
SET_MODEL(ENT(pev), "models/w_galil.mdl");
|
|
|
|
m_iDefaultAmmo = GALIL_DEFAULT_GIVE;
|
|
|
|
FallInit();
|
|
}
|
|
|
|
void CGalil::Precache(void)
|
|
{
|
|
PRECACHE_MODEL("models/v_galil.mdl");
|
|
PRECACHE_MODEL("models/w_galil.mdl");
|
|
|
|
PRECACHE_SOUND("weapons/galil-1.wav");
|
|
PRECACHE_SOUND("weapons/galil-2.wav");
|
|
PRECACHE_SOUND("weapons/galil_clipout.wav");
|
|
PRECACHE_SOUND("weapons/galil_clipin.wav");
|
|
PRECACHE_SOUND("weapons/galil_boltpull.wav");
|
|
|
|
m_iShell = PRECACHE_MODEL("models/rshell.mdl");
|
|
m_usFireGalil = PRECACHE_EVENT(1, "events/galil.sc");
|
|
}
|
|
|
|
int CGalil::GetItemInfo(ItemInfo *p)
|
|
{
|
|
p->pszName = STRING(pev->classname);
|
|
p->pszAmmo1 = "556Nato";
|
|
p->iMaxAmmo1 = _556NATO_MAX_CARRY;
|
|
p->pszAmmo2 = NULL;
|
|
p->iMaxAmmo2 = -1;
|
|
p->iMaxClip = GALIL_MAX_CLIP;
|
|
p->iSlot = 0;
|
|
p->iPosition = 17;
|
|
p->iId = m_iId = WEAPON_GALIL;
|
|
p->iFlags = 0;
|
|
p->iWeight = GALIL_WEIGHT;
|
|
|
|
return 1;
|
|
}
|
|
|
|
BOOL CGalil::Deploy(void)
|
|
{
|
|
m_flAccuracy = 0.2;
|
|
m_iShotsFired = 0;
|
|
iShellOn = 1;
|
|
|
|
return DefaultDeploy("models/v_galil.mdl", "models/p_galil.mdl", GALIL_DRAW, "ak47", UseDecrement() != FALSE);
|
|
}
|
|
|
|
void CGalil::PrimaryAttack(void)
|
|
{
|
|
if (m_pPlayer->pev->waterlevel == 3)
|
|
{
|
|
PlayEmptySound();
|
|
m_flNextPrimaryAttack = UTIL_WeaponTimeBase() + 0.15;
|
|
return;
|
|
}
|
|
|
|
if (!FBitSet(m_pPlayer->pev->flags, FL_ONGROUND))
|
|
GalilFire(0.04 + (0.3) * m_flAccuracy, 0.0875, FALSE);
|
|
else if (m_pPlayer->pev->velocity.Length2D() > 140)
|
|
GalilFire(0.04 + (0.07) * m_flAccuracy, 0.0875, FALSE);
|
|
else
|
|
GalilFire((0.0375) * m_flAccuracy, 0.0875, FALSE);
|
|
}
|
|
|
|
void CGalil::GalilFire(float flSpread, float flCycleTime, BOOL fUseAutoAim)
|
|
{
|
|
m_bDelayFire = true;
|
|
m_iShotsFired++;
|
|
m_flAccuracy = ((float)(m_iShotsFired * m_iShotsFired * m_iShotsFired) / 200.0) + 0.35;
|
|
|
|
if (m_flAccuracy > 1.25)
|
|
m_flAccuracy = 1.25;
|
|
|
|
if (m_iClip <= 0)
|
|
{
|
|
if (m_fFireOnEmpty)
|
|
{
|
|
PlayEmptySound();
|
|
m_flNextPrimaryAttack = UTIL_WeaponTimeBase() + 0.2;
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
m_iClip--;
|
|
m_pPlayer->pev->effects |= EF_MUZZLEFLASH;
|
|
m_pPlayer->SetAnimation(PLAYER_ATTACK1);
|
|
|
|
UTIL_MakeVectors(m_pPlayer->pev->v_angle + m_pPlayer->pev->punchangle);
|
|
Vector vecSrc = m_pPlayer->GetGunPosition();
|
|
Vector vecDir = m_pPlayer->FireBullets3(vecSrc, gpGlobals->v_forward, flSpread, 8192, 2, BULLET_PLAYER_556MM, 30, 0.98, m_pPlayer->pev, FALSE, m_pPlayer->random_seed);
|
|
|
|
int flags;
|
|
#ifdef CLIENT_WEAPONS
|
|
flags = FEV_NOTHOST;
|
|
#else
|
|
flags = 0;
|
|
#endif
|
|
|
|
PLAYBACK_EVENT_FULL(flags, m_pPlayer->edict(), m_usFireGalil, 0, (float *)&g_vecZero, (float *)&g_vecZero, vecDir.x, vecDir.y, (int)(m_pPlayer->pev->punchangle.x * 10000000), (int)(m_pPlayer->pev->punchangle.y * 10000000), FALSE, FALSE);
|
|
|
|
m_pPlayer->m_iWeaponVolume = NORMAL_GUN_VOLUME;
|
|
m_pPlayer->m_iWeaponFlash = BRIGHT_GUN_FLASH;
|
|
m_flNextPrimaryAttack = m_flNextSecondaryAttack = UTIL_WeaponTimeBase() + flCycleTime;
|
|
|
|
if (!m_iClip && m_pPlayer->m_rgAmmo[m_iPrimaryAmmoType] <= 0)
|
|
m_pPlayer->SetSuitUpdate("!HEV_AMO0", FALSE, 0);
|
|
|
|
m_flTimeWeaponIdle = UTIL_WeaponTimeBase() + 1.9;
|
|
|
|
if (m_pPlayer->pev->velocity.Length2D() > 0)
|
|
KickBack(1.0, 0.45, 0.28, 0.045, 3.75, 3.0, 7);
|
|
else if (!FBitSet(m_pPlayer->pev->flags, FL_ONGROUND))
|
|
KickBack(1.2, 0.5, 0.23, 0.15, 5.5, 3.5, 6);
|
|
else if (FBitSet(m_pPlayer->pev->flags, FL_DUCKING))
|
|
KickBack(0.6, 0.3, 0.2, 0.0125, 3.25, 2.0, 7);
|
|
else
|
|
KickBack(0.65, 0.35, 0.25, 0.015, 3.5, 2.25, 7);
|
|
}
|
|
|
|
void CGalil::Reload(void)
|
|
{
|
|
if (m_pPlayer->ammo_556nato <= 0)
|
|
return;
|
|
|
|
if (DefaultReload(GALIL_MAX_CLIP, GALIL_RELOAD, 2.45))
|
|
{
|
|
m_pPlayer->SetAnimation(PLAYER_RELOAD);
|
|
m_flAccuracy = 0.2;
|
|
m_iShotsFired = 0;
|
|
m_bDelayFire = false;
|
|
}
|
|
}
|
|
|
|
void CGalil::WeaponIdle(void)
|
|
{
|
|
ResetEmptySound();
|
|
m_pPlayer->GetAutoaimVector(AUTOAIM_10DEGREES);
|
|
|
|
if (m_flTimeWeaponIdle > UTIL_WeaponTimeBase())
|
|
return;
|
|
|
|
m_flTimeWeaponIdle = UTIL_WeaponTimeBase() + 20;
|
|
SendWeaponAnim(GALIL_IDLE1, UseDecrement() != FALSE);
|
|
} |