aboutsummaryrefslogtreecommitdiff
path: root/mp/src/public/tools/bonelist.cpp
diff options
context:
space:
mode:
authorJoe Ludwig <[email protected]>2013-06-26 15:22:04 -0700
committerJoe Ludwig <[email protected]>2013-06-26 15:22:04 -0700
commit39ed87570bdb2f86969d4be821c94b722dc71179 (patch)
treeabc53757f75f40c80278e87650ea92808274aa59 /mp/src/public/tools/bonelist.cpp
downloadsource-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.tar.xz
source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.zip
First version of the SOurce SDK 2013
Diffstat (limited to 'mp/src/public/tools/bonelist.cpp')
-rw-r--r--mp/src/public/tools/bonelist.cpp72
1 files changed, 72 insertions, 0 deletions
diff --git a/mp/src/public/tools/bonelist.cpp b/mp/src/public/tools/bonelist.cpp
new file mode 100644
index 00000000..9e8999e0
--- /dev/null
+++ b/mp/src/public/tools/bonelist.cpp
@@ -0,0 +1,72 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+//=============================================================================
+
+#include "cbase.h"
+#include "bonelist.h"
+
+// memdbgon must be the last include file in a .cpp file!!!
+#include "tier0/memdbgon.h"
+
+CBoneList::CBoneList()
+{
+ m_bShouldDelete = false;
+ m_nBones = 0;
+ Q_memset( m_vecPos, 0, sizeof( m_vecPos ) );
+ Q_memset( m_quatRot, 0, sizeof( m_quatRot ) );
+}
+
+void CBoneList::Release()
+{
+ if (m_bShouldDelete )
+ {
+ delete this;
+ }
+ else
+ {
+ Warning( "Called Release() on CBoneList not allocated via Alloc() method\n" );
+ }
+}
+
+CBoneList *CBoneList::Alloc()
+{
+ CBoneList *newList = new CBoneList;
+ Assert( newList );
+ if ( newList )
+ {
+ newList->m_bShouldDelete = true;
+ }
+ return newList;
+}
+
+CFlexList::CFlexList()
+{
+ m_bShouldDelete = false;
+ m_nNumFlexes = 0;
+ Q_memset( m_flexWeights, 0, sizeof( m_flexWeights ) );
+}
+
+void CFlexList::Release()
+{
+ if (m_bShouldDelete )
+ {
+ delete this;
+ }
+ else
+ {
+ Warning( "Called Release() on CFlexList not allocated via Alloc() method\n" );
+ }
+}
+
+CFlexList *CFlexList::Alloc()
+{
+ CFlexList *newList = new CFlexList;
+ Assert( newList );
+ if ( newList )
+ {
+ newList->m_bShouldDelete = true;
+ }
+ return newList;
+} \ No newline at end of file