aboutsummaryrefslogtreecommitdiff
path: root/sp/src/game/client/c_te_footprint.cpp
diff options
context:
space:
mode:
authorJørgen P. Tjernø <[email protected]>2013-12-02 19:31:46 -0800
committerJørgen P. Tjernø <[email protected]>2013-12-02 19:46:31 -0800
commitf56bb35301836e56582a575a75864392a0177875 (patch)
treede61ddd39de3e7df52759711950b4c288592f0dc /sp/src/game/client/c_te_footprint.cpp
parentMark some more files as text. (diff)
downloadsource-sdk-2013-f56bb35301836e56582a575a75864392a0177875.tar.xz
source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.zip
Fix line endings. WHAMMY.
Diffstat (limited to 'sp/src/game/client/c_te_footprint.cpp')
-rw-r--r--sp/src/game/client/c_te_footprint.cpp218
1 files changed, 109 insertions, 109 deletions
diff --git a/sp/src/game/client/c_te_footprint.cpp b/sp/src/game/client/c_te_footprint.cpp
index 8a149542..50bbc314 100644
--- a/sp/src/game/client/c_te_footprint.cpp
+++ b/sp/src/game/client/c_te_footprint.cpp
@@ -1,110 +1,110 @@
-//========= Copyright Valve Corporation, All rights reserved. ============//
-//
-// Purpose:
-//
-// $Workfile: $
-// $Date: $
-// $NoKeywords: $
-//=============================================================================//
-#include "cbase.h"
-#include "c_basetempentity.h"
-#include "iefx.h"
-#include "fx.h"
-#include "tier0/vprof.h"
-
-
-// memdbgon must be the last include file in a .cpp file!!!
-#include "tier0/memdbgon.h"
-
-//-----------------------------------------------------------------------------
-// Purpose: Footprint Decal TE
-//-----------------------------------------------------------------------------
-
-class C_TEFootprintDecal : public C_BaseTempEntity
-{
-public:
- DECLARE_CLASS( C_TEFootprintDecal, C_BaseTempEntity );
- DECLARE_CLIENTCLASS();
-
- C_TEFootprintDecal( void );
- virtual ~C_TEFootprintDecal( void );
-
- virtual void PostDataUpdate( DataUpdateType_t updateType );
-
- virtual void Precache( void );
-
-public:
- Vector m_vecOrigin;
- Vector m_vecDirection;
- Vector m_vecStart;
- int m_nEntity;
- int m_nIndex;
- char m_chMaterialType;
-};
-
-IMPLEMENT_CLIENTCLASS_EVENT_DT(C_TEFootprintDecal, DT_TEFootprintDecal, CTEFootprintDecal)
- RecvPropVector( RECVINFO(m_vecOrigin)),
- RecvPropVector( RECVINFO(m_vecDirection)),
- RecvPropInt( RECVINFO(m_nEntity)),
- RecvPropInt( RECVINFO(m_nIndex)),
- RecvPropInt( RECVINFO(m_chMaterialType)),
-END_RECV_TABLE()
-
-
-//-----------------------------------------------------------------------------
-// Constructor, destructor
-//-----------------------------------------------------------------------------
-
-C_TEFootprintDecal::C_TEFootprintDecal( void )
-{
- m_vecOrigin.Init();
- m_vecStart.Init();
- m_nEntity = 0;
- m_nIndex = 0;
- m_chMaterialType = 'C';
-}
-
-C_TEFootprintDecal::~C_TEFootprintDecal( void )
-{
-}
-
-//-----------------------------------------------------------------------------
-// Purpose:
-//-----------------------------------------------------------------------------
-
-void C_TEFootprintDecal::Precache( void )
-{
-}
-
-//-----------------------------------------------------------------------------
-// Do stuff when data changes
-//-----------------------------------------------------------------------------
-
-void C_TEFootprintDecal::PostDataUpdate( DataUpdateType_t updateType )
-{
- VPROF( "C_TEFootprintDecal::PostDataUpdate" );
-
- // FIXME: Make this choose the decal based on material type
- if ( r_decals.GetInt() )
- {
- C_BaseEntity *ent = cl_entitylist->GetEnt( m_nEntity );
- if ( ent )
- {
- effects->DecalShoot( m_nIndex,
- m_nEntity, ent->GetModel(), ent->GetAbsOrigin(), ent->GetAbsAngles(), m_vecOrigin, &m_vecDirection, 0 );
- }
- }
-}
-
-void TE_FootprintDecal( IRecipientFilter& filter, float delay, const Vector *origin, const Vector* right,
- int entity, int index, unsigned char materialType )
-{
- if ( r_decals.GetInt() )
- {
- C_BaseEntity *ent = cl_entitylist->GetEnt( entity );
- if ( ent )
- {
- effects->DecalShoot( index, entity, ent->GetModel(), ent->GetAbsOrigin(), ent->GetAbsAngles(), *origin, right, 0 );
- }
- }
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $Workfile: $
+// $Date: $
+// $NoKeywords: $
+//=============================================================================//
+#include "cbase.h"
+#include "c_basetempentity.h"
+#include "iefx.h"
+#include "fx.h"
+#include "tier0/vprof.h"
+
+
+// memdbgon must be the last include file in a .cpp file!!!
+#include "tier0/memdbgon.h"
+
+//-----------------------------------------------------------------------------
+// Purpose: Footprint Decal TE
+//-----------------------------------------------------------------------------
+
+class C_TEFootprintDecal : public C_BaseTempEntity
+{
+public:
+ DECLARE_CLASS( C_TEFootprintDecal, C_BaseTempEntity );
+ DECLARE_CLIENTCLASS();
+
+ C_TEFootprintDecal( void );
+ virtual ~C_TEFootprintDecal( void );
+
+ virtual void PostDataUpdate( DataUpdateType_t updateType );
+
+ virtual void Precache( void );
+
+public:
+ Vector m_vecOrigin;
+ Vector m_vecDirection;
+ Vector m_vecStart;
+ int m_nEntity;
+ int m_nIndex;
+ char m_chMaterialType;
+};
+
+IMPLEMENT_CLIENTCLASS_EVENT_DT(C_TEFootprintDecal, DT_TEFootprintDecal, CTEFootprintDecal)
+ RecvPropVector( RECVINFO(m_vecOrigin)),
+ RecvPropVector( RECVINFO(m_vecDirection)),
+ RecvPropInt( RECVINFO(m_nEntity)),
+ RecvPropInt( RECVINFO(m_nIndex)),
+ RecvPropInt( RECVINFO(m_chMaterialType)),
+END_RECV_TABLE()
+
+
+//-----------------------------------------------------------------------------
+// Constructor, destructor
+//-----------------------------------------------------------------------------
+
+C_TEFootprintDecal::C_TEFootprintDecal( void )
+{
+ m_vecOrigin.Init();
+ m_vecStart.Init();
+ m_nEntity = 0;
+ m_nIndex = 0;
+ m_chMaterialType = 'C';
+}
+
+C_TEFootprintDecal::~C_TEFootprintDecal( void )
+{
+}
+
+//-----------------------------------------------------------------------------
+// Purpose:
+//-----------------------------------------------------------------------------
+
+void C_TEFootprintDecal::Precache( void )
+{
+}
+
+//-----------------------------------------------------------------------------
+// Do stuff when data changes
+//-----------------------------------------------------------------------------
+
+void C_TEFootprintDecal::PostDataUpdate( DataUpdateType_t updateType )
+{
+ VPROF( "C_TEFootprintDecal::PostDataUpdate" );
+
+ // FIXME: Make this choose the decal based on material type
+ if ( r_decals.GetInt() )
+ {
+ C_BaseEntity *ent = cl_entitylist->GetEnt( m_nEntity );
+ if ( ent )
+ {
+ effects->DecalShoot( m_nIndex,
+ m_nEntity, ent->GetModel(), ent->GetAbsOrigin(), ent->GetAbsAngles(), m_vecOrigin, &m_vecDirection, 0 );
+ }
+ }
+}
+
+void TE_FootprintDecal( IRecipientFilter& filter, float delay, const Vector *origin, const Vector* right,
+ int entity, int index, unsigned char materialType )
+{
+ if ( r_decals.GetInt() )
+ {
+ C_BaseEntity *ent = cl_entitylist->GetEnt( entity );
+ if ( ent )
+ {
+ effects->DecalShoot( index, entity, ent->GetModel(), ent->GetAbsOrigin(), ent->GetAbsAngles(), *origin, right, 0 );
+ }
+ }
} \ No newline at end of file