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.

181 lines
5.1 KiB

9 years ago
/***
*
* 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.
*
* This source code contains proprietary and confidential information of
* Valve LLC and its suppliers. Access to this code is restricted to
* persons who have executed a written SDK license with Valve. Any access,
* use or distribution of this code by or to any unlicensed person is illegal.
*
****/
//=========================================================
// Generic Monster - purely for scripted sequence work.
//=========================================================
#include "extdll.h"
#include "util.h"
#include "cbase.h"
#include "monsters.h"
#include "schedule.h"
// modif de Julien
extern int gmsgClientDecal;
9 years ago
// For holograms, make them not solid so the player can walk through them
#define SF_GENERICMONSTER_NOTSOLID 4
//=========================================================
// Monster's Anim Events Go Here
//=========================================================
class CGenericMonster : public CBaseMonster
{
public:
void Spawn( void );
void Precache( void );
void SetYawSpeed( void );
8 years ago
int Classify( void );
9 years ago
void HandleAnimEvent( MonsterEvent_t *pEvent );
8 years ago
int ISoundMask( void );
9 years ago
};
LINK_ENTITY_TO_CLASS( monster_generic, CGenericMonster )
9 years ago
//=========================================================
// Classify - indicates this monster's place in the
// relationship table.
//=========================================================
8 years ago
int CGenericMonster::Classify( void )
9 years ago
{
//modif de Julien
if ( pev->spawnflags & SF_GENERICMONSTER_NOTSOLID )
return CLASS_NONE;
8 years ago
return CLASS_PLAYER_ALLY;
9 years ago
}
//=========================================================
// SetYawSpeed - allows each sequence to have a different
// turn rate associated with it.
//=========================================================
8 years ago
void CGenericMonster::SetYawSpeed( void )
9 years ago
{
int ys;
8 years ago
switch( m_Activity )
9 years ago
{
case ACT_IDLE:
default:
ys = 90;
}
pev->yaw_speed = ys;
}
//=========================================================
// HandleAnimEvent - catches the monster-specific messages
// that occur when tagged animation frames are played.
//=========================================================
8 years ago
void CGenericMonster::HandleAnimEvent( MonsterEvent_t *pEvent )
9 years ago
{
switch( pEvent->event )
{
case 0:
default:
CBaseMonster::HandleAnimEvent( pEvent );
break;
// modif de Julien
case 1444:
Vector vecBout;
Vector vZero0(0,0,0); //Just init a couple of Vectors to shut down some weird compiler errors.
Vector vZero1(0,0,0);
GetAttachment( 1, vecBout, vZero0 ); //put vector outside
Vector vecDir;
GetAttachment( 0, vecDir, vZero1 ); //same
MESSAGE_BEGIN( MSG_ALL, gmsgClientDecal );
WRITE_COORD( vecBout.x ); // xyz source
WRITE_COORD( vecBout.y );
WRITE_COORD( vecBout.z );
WRITE_COORD( vecDir.x ); // xyz norme
WRITE_COORD( vecDir.y );
WRITE_COORD( vecDir.z );
WRITE_CHAR ( 'a' ); // type de texture
WRITE_BYTE ( 6 ); // 6 == outromuzzle
MESSAGE_END();
break;
9 years ago
}
}
//=========================================================
// ISoundMask - generic monster can't hear.
//=========================================================
8 years ago
int CGenericMonster::ISoundMask( void )
9 years ago
{
return 0;
9 years ago
}
//=========================================================
// Spawn
//=========================================================
8 years ago
void CGenericMonster::Spawn()
9 years ago
{
Precache();
8 years ago
SET_MODEL( ENT( pev ), STRING( pev->model ) );
9 years ago
/*
8 years ago
if( FStrEq( STRING( pev->model ), "models/player.mdl" ) )
UTIL_SetSize( pev, VEC_HUMAN_HULL_MIN, VEC_HUMAN_HULL_MAX );
9 years ago
else
8 years ago
UTIL_SetSize( pev, VEC_HULL_MIN, VEC_HULL_MAX);
9 years ago
*/
8 years ago
if( FStrEq( STRING( pev->model ), "models/player.mdl" ) || FStrEq( STRING( pev->model ), "models/holo.mdl" ) )
UTIL_SetSize( pev, VEC_HULL_MIN, VEC_HULL_MAX );
//modif de Julien
else if ( pev->spawnflags & SF_GENERICMONSTER_NOTSOLID )
UTIL_SetSize(pev, Vector(0,0,0),Vector(0,0,0) );
9 years ago
else
8 years ago
UTIL_SetSize( pev, VEC_HUMAN_HULL_MIN, VEC_HUMAN_HULL_MAX );
9 years ago
8 years ago
pev->solid = SOLID_SLIDEBOX;
pev->movetype = MOVETYPE_STEP;
m_bloodColor = BLOOD_COLOR_RED;
pev->health = 8;
m_flFieldOfView = 0.5;// indicates the width of this monster's forward view cone ( as a dotproduct result )
m_MonsterState = MONSTERSTATE_NONE;
9 years ago
// modif de Julien
if ( pev->spawnflags & SF_GENERICMONSTER_NOTSOLID )
{
pev->solid = SOLID_NOT;
pev->movetype = MOVETYPE_NOCLIP;
}
9 years ago
MonsterInit();
8 years ago
if( pev->spawnflags & SF_GENERICMONSTER_NOTSOLID )
9 years ago
{
pev->solid = SOLID_NOT;
pev->takedamage = DAMAGE_NO;
}
}
//=========================================================
// Precache - precaches all resources this monster needs
//=========================================================
8 years ago
void CGenericMonster::Precache()
9 years ago
{
PRECACHE_MODEL( STRING( pev->model ) );
PRECACHE_MODEL( "sprites/outro_muzzle.spr" );
8 years ago
}
9 years ago
//=========================================================
// AI Schedules Specific to this monster
//=========================================================