Authoring a Model Entity/Code: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
m (Boxden777 moved page Authoring a Model Entity/en/Code to Authoring a Model Entity/Code over redirect)
 
(10 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<span style="color:green;">//===== Copyright © 1996-2005, Valve Corporation, All rights reserved. ========
<syntaxhighlight lang="cpp">
//
//===== Copyright © 1996-2005, Valve Corporation, All rights reserved. ========
// Purpose: Simple model entity that randomly moves and changes direction
//
// when activated.
// Purpose: Simple model entity that randomly moves and changes direction
//
// when activated.
//=============================================================================</span>
//
//=============================================================================
<span style="color:blue;">#include</span> <span style="color:brown;">"cbase.h"</span>
 
#include "cbase.h"
<span style="color:blue;">class</span> CMyModelEntity : <span style="color:blue;">public</span> CBaseAnimating
 
{
class CMyModelEntity : public CBaseAnimating
<span style="color:blue;">public</span>:
{
DECLARE_CLASS( CMyModelEntity, CBaseAnimating );
public:
DECLARE_DATADESC();
DECLARE_CLASS( CMyModelEntity, CBaseAnimating );
DECLARE_DATADESC();
<span style="color:blue;">void</span> Spawn( <span style="color:blue;">void</span> );
 
<span style="color:blue;">void</span> Precache( <span style="color:blue;">void</span> );
CMyModelEntity()
{
<span style="color:blue;">void</span> MoveThink( <span style="color:blue;">void</span> );
m_bActive = false;
}
<span style="color:green;">// Input function</span>
 
<span style="color:blue;">void</span> InputToggle( inputdata_t &inputData );
void Spawn( void );
void Precache( void );
<span style="color:blue;">private</span>:
 
void MoveThink( void );
<span style="color:blue;">bool</span> m_bActive;
 
<span style="color:blue;">float</span> m_flNextChangeTime;
// Input function
};
void InputToggle( inputdata_t &inputData );
 
LINK_ENTITY_TO_CLASS( my_model_entity, CMyModelEntity );
private:
 
<span style="color:green;">// Start of our data description for the class</span>
bool m_bActive;
BEGIN_DATADESC( CMyModelEntity )
float m_flNextChangeTime;
};
<span style="color:green;">// Save/restore our active state</span>
 
DEFINE_FIELD( m_bActive, FIELD_BOOLEAN ),
LINK_ENTITY_TO_CLASS( my_model_entity, CMyModelEntity );
DEFINE_FIELD( m_flNextChangeTime, FIELD_TIME ),
 
// Start of our data description for the class
// Links our input name from Hammer to our input member function</span>
BEGIN_DATADESC( CMyModelEntity )
DEFINE_INPUTFUNC( FIELD_VOID, "Toggle", InputToggle ),
// Save/restore our active state
<span style="color:green;">// Declare our think function</span>
DEFINE_FIELD( m_bActive, FIELD_BOOLEAN ),
DEFINE_THINKFUNC( MoveThink ),
DEFINE_FIELD( m_flNextChangeTime, FIELD_TIME ),
 
END_DATADESC()
// Links our input name from Hammer to our input member function
DEFINE_INPUTFUNC( FIELD_VOID, "Toggle", InputToggle ),
<span style="color:green;">// Name of our entity's model</span>
 
<span style="color:blue;">#define</span> ENTITY_MODEL <span style="color:brown;">"models/gibs/airboat_broken_engine.mdl"</span>
// Declare our think function
DEFINE_THINKFUNC( MoveThink ),
<span style="color:green;">//-----------------------------------------------------------------------------
 
// Purpose: Precache assets used by the entity
END_DATADESC()
//-----------------------------------------------------------------------------</span>
 
<span style="color:blue;">void</span> CMyModelEntity::Precache( <span style="color:blue;">void</span> )
// Name of our entity's model
{
#define ENTITY_MODEL "models/gibs/airboat_broken_engine.mdl"
PrecacheModel( ENTITY_MODEL );
 
}
//-----------------------------------------------------------------------------
// Purpose: Precache assets used by the entity
<span style="color:green;">//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// Purpose: Sets up the entity's initial state
void CMyModelEntity::Precache( void )
//-----------------------------------------------------------------------------</span>
{
<span style="color:blue;">void</span> CMyModelEntity::Spawn( <span style="color:blue;">void</span> )
PrecacheModel( ENTITY_MODEL );
{
 
Precache();
BaseClass::Precache();
}
SetModel( ENTITY_MODEL );
 
SetSolid( SOLID_BBOX );
//-----------------------------------------------------------------------------
UTIL_SetSize( <span style="color:blue;">this</span>, -Vector(20,20,20), Vector(20,20,20) );
// Purpose: Sets up the entity's initial state
//-----------------------------------------------------------------------------
m_bActive = <span style="color:blue;">false</span>;
void CMyModelEntity::Spawn( void )
}
{
Precache();
<span style="color:green;">//-----------------------------------------------------------------------------
 
// Purpose: Think function to randomly move the entity
SetModel( ENTITY_MODEL );
//-----------------------------------------------------------------------------</span>
SetSolid( SOLID_BBOX );
<span style="color:blue;">void</span> CMyModelEntity::MoveThink( <span style="color:blue;">void</span> )
UTIL_SetSize( this, -Vector(20,20,20), Vector(20,20,20) );
{
}
<span style="color:green;">// See if we should change direction again</span>
 
<span style="color:blue;">if</span> ( m_flNextChangeTime < gpGlobals->curtime )
//-----------------------------------------------------------------------------
{
// Purpose: Think function to randomly move the entity
<span style="color:green;">// Randomly take a new direction and speed</span>
//-----------------------------------------------------------------------------
Vector vecNewVelocity = RandomVector( -64.0f, 64.0f );
void CMyModelEntity::MoveThink( void )
SetAbsVelocity( vecNewVelocity );
{
// See if we should change direction again
<span style="color:green;">// Randomly change it again within one to three seconds</span>
if ( m_flNextChangeTime < gpGlobals->curtime )
m_flNextChangeTime = gpGlobals->curtime + random->RandomFloat( 1.0f, 3.0f );
{
}
// Randomly take a new direction and speed
Vector vecNewVelocity = RandomVector( -64.0f, 64.0f );
<span style="color:green;">// Snap our facing to where we're heading</span>
SetAbsVelocity( vecNewVelocity );
Vector velFacing = GetAbsVelocity();
 
QAngle angFacing;
// Randomly change it again within one to three seconds
VectorAngles( velFacing, angFacing );
m_flNextChangeTime = gpGlobals->curtime + random->RandomFloat( 1.0f, 3.0f );
  SetAbsAngles( angFacing );
}
 
<span style="color:green;">// Think every 20Hz</span>
// Snap our facing to where we're heading
SetNextThink( gpGlobals->curtime + 0.05f );
Vector velFacing = GetAbsVelocity();
}
QAngle angFacing;
VectorAngles( velFacing, angFacing );
<span style="color:green;">//-----------------------------------------------------------------------------
SetAbsAngles( angFacing );
// Purpose: Toggle the movement of the entity
 
//-----------------------------------------------------------------------------</span>
// Think every 20Hz
<span style="color:blue;">void</span> CMyModelEntity::InputToggle( inputdata_t &inputData )
SetNextThink( gpGlobals->curtime + 0.05f );
{
}
<span style="color:green;">// Toggle our active state</span>
 
<span style="color:blue;">if</span> ( !m_bActive )
//-----------------------------------------------------------------------------
{
// Purpose: Toggle the movement of the entity
<span style="color:green;">// Start thinking</span>
//-----------------------------------------------------------------------------
SetThink( &CMyModelEntity::MoveThink );
void CMyModelEntity::InputToggle( inputdata_t &inputData )
{
SetNextThink( gpGlobals->curtime + 0.05f );
// Toggle our active state
if ( !m_bActive )
<span style="color:green;">// Start flying</span>
{
SetMoveType( MOVETYPE_FLY );
// Start thinking
SetThink( &CMyModelEntity::MoveThink );
<span style="color:green;">// Set our next time for changing our speed and direction</span>
 
m_flNextChangeTime = gpGlobals->curtime;
SetNextThink( gpGlobals->curtime + 0.05f );
m_bActive = <span style="color:blue;">true</span>;
}
// Start moving
<span style="color:blue;">else</span>
SetMoveType( MOVETYPE_FLY );
{
 
<span style="color:green;">// Stop thinking</span>
// Force MoveThink() to choose a new speed and direction immediately
SetThink( NULL );
m_flNextChangeTime = gpGlobals->curtime;
 
<span style="color:green;">// Stop moving</span>
// Update m_bActive to reflect our new state
SetAbsVelocity( vec3_origin );
m_bActive = true;
  SetMoveType( MOVETYPE_NONE );
}
else
m_bActive = <span style="color:blue;">false</span>;
{
}
// Stop thinking
}
SetThink( NULL );
// Stop moving
SetAbsVelocity( vec3_origin );
SetMoveType( MOVETYPE_NONE );
m_bActive = false;
}
}
</syntaxhighlight>


== See also ==
== See also ==
*[[Authoring a Model Entity]]
* [[Authoring a Model Entity]]
 
[[Category:Programming]]

Latest revision as of 07:58, 25 June 2023

//===== Copyright © 1996-2005, Valve Corporation, All rights reserved. ========
//
// Purpose: Simple model entity that randomly moves and changes direction
//			when activated.
//
//=============================================================================

#include "cbase.h"

class CMyModelEntity : public CBaseAnimating
{
public:
	DECLARE_CLASS( CMyModelEntity, CBaseAnimating );
	DECLARE_DATADESC();

	CMyModelEntity()
	{
		m_bActive = false;
	}

	void Spawn( void );
	void Precache( void );

	void MoveThink( void );

	// Input function
	void InputToggle( inputdata_t &inputData );

private:

	bool	m_bActive;
	float	m_flNextChangeTime;
};

LINK_ENTITY_TO_CLASS( my_model_entity, CMyModelEntity );

// Start of our data description for the class
BEGIN_DATADESC( CMyModelEntity )
	
	// Save/restore our active state
	DEFINE_FIELD( m_bActive, FIELD_BOOLEAN ),
	DEFINE_FIELD( m_flNextChangeTime, FIELD_TIME ),

	// Links our input name from Hammer to our input member function
	DEFINE_INPUTFUNC( FIELD_VOID, "Toggle", InputToggle ),

	// Declare our think function
	DEFINE_THINKFUNC( MoveThink ),

END_DATADESC()

// Name of our entity's model
#define	ENTITY_MODEL	"models/gibs/airboat_broken_engine.mdl"

//-----------------------------------------------------------------------------
// Purpose: Precache assets used by the entity
//-----------------------------------------------------------------------------
void CMyModelEntity::Precache( void )
{
	PrecacheModel( ENTITY_MODEL );

	BaseClass::Precache();
}

//-----------------------------------------------------------------------------
// Purpose: Sets up the entity's initial state
//-----------------------------------------------------------------------------
void CMyModelEntity::Spawn( void )
{
	Precache();

	SetModel( ENTITY_MODEL );
	SetSolid( SOLID_BBOX );
	UTIL_SetSize( this, -Vector(20,20,20), Vector(20,20,20) );
}

//-----------------------------------------------------------------------------
// Purpose: Think function to randomly move the entity
//-----------------------------------------------------------------------------
void CMyModelEntity::MoveThink( void )
{
	// See if we should change direction again
	if ( m_flNextChangeTime < gpGlobals->curtime )
	{
		// Randomly take a new direction and speed
		Vector vecNewVelocity = RandomVector( -64.0f, 64.0f );
		SetAbsVelocity( vecNewVelocity );

		// Randomly change it again within one to three seconds
		m_flNextChangeTime = gpGlobals->curtime + random->RandomFloat( 1.0f, 3.0f );
	}

	// Snap our facing to where we're heading
	Vector velFacing = GetAbsVelocity();
	QAngle angFacing;
	VectorAngles( velFacing, angFacing );
 	SetAbsAngles( angFacing );

	// Think every 20Hz
	SetNextThink( gpGlobals->curtime + 0.05f );
}

//-----------------------------------------------------------------------------
// Purpose: Toggle the movement of the entity
//-----------------------------------------------------------------------------
void CMyModelEntity::InputToggle( inputdata_t &inputData )
{
	// Toggle our active state
	if ( !m_bActive )
	{
		// Start thinking
		SetThink( &CMyModelEntity::MoveThink );

		SetNextThink( gpGlobals->curtime + 0.05f );
		
		// Start moving
		SetMoveType( MOVETYPE_FLY );

		// Force MoveThink() to choose a new speed and direction immediately
		m_flNextChangeTime = gpGlobals->curtime;

		// Update m_bActive to reflect our new state
		m_bActive = true;
	}
	else
	{
		// Stop thinking
		SetThink( NULL );
		
		// Stop moving
		SetAbsVelocity( vec3_origin );
 		SetMoveType( MOVETYPE_NONE );
		
		m_bActive = false;
	}
}

See also