Portable Half-Life SDK. GoldSource and Xash3D. Crossplatform.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

134 lines
3.0 KiB

/***
*
* Copyright (c) 1996-2001, 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 "extdll.h"
#include "util.h"
#include "cbase.h"
#include "monsters.h"
#include "effects.h"
//=========================================================
// CPitwormGibShooter
//=========================================================
class CPitwormGibShooter : public CGibShooter
{
public:
void Precache(void);
virtual CGib *CreateGib(void);
};
LINK_ENTITY_TO_CLASS(pitworm_gibshooter, CPitwormGibShooter);
//---------------------------------------------------------
// Purpose:
//---------------------------------------------------------
void CPitwormGibShooter::Precache(void)
{
m_iGibModelIndex = PRECACHE_MODEL("models/pit_worm_gibs.mdl");
}
//---------------------------------------------------------
// Purpose:
//---------------------------------------------------------
CGib *CPitwormGibShooter::CreateGib(void)
{
if (CVAR_GET_FLOAT("violence_hgibs") == 0)
return NULL;
CGib *pGib = GetClassPtr((CGib *)NULL);
pGib->Spawn("models/pit_worm_gibs.mdl");
pGib->m_bloodColor = BLOOD_COLOR_RED;
if (pev->body <= 1)
{
ALERT(at_aiconsole, "PitwormGibShooter Body is <= 1!\n");
}
pGib->pev->body = RANDOM_LONG(1, pev->body - 1);// avoid throwing random amounts of the 0th gib. (skull).
return pGib;
}
//=========================================================
// CSpriteTrain
//=========================================================
class CSpriteTrain : public CSprite
{
public:
void Spawn( void );
void Precache( void );
void KeyValue(KeyValueData* pkvd);
virtual int Save(CSave &save);
virtual int Restore(CRestore &restore);
static TYPEDESCRIPTION m_SaveData[];
int m_iModelIndex;
int m_iSpeed;
float m_flScale;
};
LINK_ENTITY_TO_CLASS(env_spritetrain, CSpriteTrain);
TYPEDESCRIPTION CSpriteTrain::m_SaveData[] =
{
DEFINE_FIELD(CSpriteTrain, m_iModelIndex, FIELD_INTEGER),
DEFINE_FIELD(CSpriteTrain, m_iSpeed, FIELD_INTEGER),
DEFINE_FIELD(CSpriteTrain, m_flScale, FIELD_FLOAT),
};
IMPLEMENT_SAVERESTORE(CSpriteTrain, CSprite);
void CSpriteTrain::KeyValue(KeyValueData *pkvd)
{
if (FStrEq(pkvd->szKeyName, "model"))
{
m_iModelIndex = PRECACHE_MODEL(pkvd->szValue);
pkvd->fHandled = TRUE;
}
else if (FStrEq(pkvd->szKeyName, "scale"))
{
pev->scale = (float)atof(pkvd->szValue);
pkvd->fHandled = TRUE;
}
else if (FStrEq(pkvd->szKeyName, "speed"))
{
pev->speed = (int)atoi(pkvd->szValue);
pkvd->fHandled = TRUE;
}
else
CSprite::KeyValue(pkvd);
}
void CSpriteTrain::Spawn(void)
{
CSprite::Spawn();
}
void CSpriteTrain::Precache(void)
{
CSprite::Precache();
}