aboutsummaryrefslogtreecommitdiff
path: root/mp/src/public/vcollide_parse.h
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/vcollide_parse.h
downloadsource-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.tar.xz
source-sdk-2013-39ed87570bdb2f86969d4be821c94b722dc71179.zip
First version of the SOurce SDK 2013
Diffstat (limited to 'mp/src/public/vcollide_parse.h')
-rw-r--r--mp/src/public/vcollide_parse.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/mp/src/public/vcollide_parse.h b/mp/src/public/vcollide_parse.h
new file mode 100644
index 00000000..2c712263
--- /dev/null
+++ b/mp/src/public/vcollide_parse.h
@@ -0,0 +1,68 @@
+//========= Copyright Valve Corporation, All rights reserved. ============//
+//
+// Purpose:
+//
+// $NoKeywords: $
+//=============================================================================//
+
+#ifndef VCOLLIDE_PARSE_H
+#define VCOLLIDE_PARSE_H
+#ifdef _WIN32
+#pragma once
+#endif
+
+#include "vphysics_interface.h"
+
+struct solid_t
+{
+ int index;
+ char name[512];
+ char parent[512];
+ char surfaceprop[512];
+ Vector massCenterOverride;
+ objectparams_t params;
+};
+
+struct fluid_t
+{
+ int index;
+ char surfaceprop[512];
+
+ fluidparams_t params;
+
+ fluid_t() {}
+ fluid_t( fluid_t const& src ) : params(src.params)
+ {
+ index = src.index;
+ }
+};
+
+//-----------------------------------------------------------------------------
+// Purpose: Pass this into the parser to handle the keys that vphysics does not
+// parse.
+//-----------------------------------------------------------------------------
+class IVPhysicsKeyHandler
+{
+public:
+ virtual void ParseKeyValue( void *pData, const char *pKey, const char *pValue ) = 0;
+ virtual void SetDefaults( void *pData ) = 0;
+};
+
+
+class IVPhysicsKeyParser
+{
+public:
+ virtual ~IVPhysicsKeyParser() {}
+
+ virtual const char *GetCurrentBlockName( void ) = 0;
+ virtual bool Finished( void ) = 0;
+ virtual void ParseSolid( solid_t *pSolid, IVPhysicsKeyHandler *unknownKeyHandler ) = 0;
+ virtual void ParseFluid( fluid_t *pFluid, IVPhysicsKeyHandler *unknownKeyHandler ) = 0;
+ virtual void ParseRagdollConstraint( constraint_ragdollparams_t *pConstraint, IVPhysicsKeyHandler *unknownKeyHandler ) = 0;
+ virtual void ParseSurfaceTable( int *table, IVPhysicsKeyHandler *unknownKeyHandler ) = 0;
+ virtual void ParseCustom( void *pCustom, IVPhysicsKeyHandler *unknownKeyHandler ) = 0;
+ virtual void ParseVehicle( vehicleparams_t *pVehicle, IVPhysicsKeyHandler *unknownKeyHandler ) = 0;
+ virtual void SkipBlock( void ) = 0;
+};
+
+#endif // VCOLLIDE_PARSE_H