HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
GAS_BuildCollisionMask.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  * NAME: GAS_BuildCollisionMask.h ( GAS Library, C++)
7  *
8  * COMMENTS:
9  */
10 
11 #ifndef __GAS_BuildCollisionMask__
12 #define __GAS_BuildCollisionMask__
13 
14 #include "GAS_API.h"
15 
17 #include <GU/GU_Detail.h>
18 
19 #include "GAS_SubSolver.h"
20 #include "GAS_Utils.h"
21 
22 class GU_Detail;
23 class SIM_VectorField;
24 class SIM_IndexField;
25 
27 {
28 public:
29  GET_DATA_FUNC_S(GAS_NAME_FIELD, FieldName);
30  GET_DATA_FUNC_S(GAS_NAME_STENCIL, StencilName);
31  GET_DATA_FUNC_S(GAS_NAME_COLLISION, CollisionName);
32  GET_DATA_FUNC_S(GAS_NAME_COLLISIONVELOCITY, CollisionVelocityName);
33  GET_DATA_FUNC_S(GAS_NAME_INDEX, IndexFieldName);
34  GETSET_DATA_FUNCS_B("usepointvelocity", UsePointVelocity);
35  GETSET_DATA_FUNCS_B("usevolumevelocity", UseSDFVelocity);
36  GETSET_DATA_FUNCS_B("allownonsdf", AllowNonSDF);
37 
38  GET_DATA_FUNC_B("usebandwidth", UseBandwidth);
39  GET_DATA_FUNC_F("bandwidth", Bandwidth);
40  GET_DATA_FUNC_B("clamptobandwidth", ClampToBandwidth);
41 
42  GET_DATA_FUNC_V3("wind", WindVelocity);
43 
44  GET_DATA_FUNC_F("particlebandwidth", ParticleBandwidth);
47 protected:
48  explicit GAS_BuildCollisionMask(const SIM_DataFactory *factory);
49  ~GAS_BuildCollisionMask() override;
50 
51  /// Builds the collision mask for all collider affectors.
52  bool solveGasSubclass(SIM_Engine &engine,
53  SIM_Object *obj,
54  SIM_Time time,
55  SIM_Time timestep) override;
56 
57  void buildCollisionMask(SIM_Object *obj,
58  SIM_ScalarField *collisionmask,
59  SIM_VectorField *collisionvel,
61  const SIM_ScalarField *stencil,
62  SIM_Time time,
63  fpreal velscale,
64  const UT_Vector3& wind);
65 
66 private:
67  static const SIM_DopDescription *getDopDescription();
68 
72  "Gas BuildCollisionMask",
73  getDopDescription());
74 };
75 
76 #endif
#define DECLARE_STANDARD_GETCASTTOTYPE()
Definition: SIM_DataUtils.h:50
#define GET_DATA_FUNC_V3(DataName, FuncName)
#define GETSET_DATA_FUNCS_B(DataName, FuncName)
GT_API const UT_StringHolder time
#define GAS_NAME_USETIMESTEP
Definition: GAS_Utils.h:39
#define GAS_API
Definition: GAS_API.h:10
#define GAS_NAME_COLLISION
Definition: GAS_Utils.h:21
virtual bool solveGasSubclass(SIM_Engine &engine, SIM_Object *obj, SIM_Time time, SIM_Time timestep)=0
This class holds a three dimensional scalar field.
#define DECLARE_DATAFACTORY(DataClass, SuperClass, Description, DopParms)
Definition: SIM_DataUtils.h:63
#define GAS_NAME_FIELD
Definition: GAS_Utils.h:27
#define GAS_NAME_COLLISIONVELOCITY
Definition: GAS_Utils.h:23
fpreal64 fpreal
Definition: SYS_Types.h:277
#define GET_DATA_FUNC_B(DataName, FuncName)
GLuint index
Definition: glcorearb.h:786
#define GET_DATA_FUNC_F(DataName, FuncName)
This class holds a three dimensional scalar field.
#define GAS_NAME_TIMESCALE
Definition: GAS_Utils.h:40
GLint GLfloat GLint stencil
Definition: glcorearb.h:1278
This class holds a three dimensional vector field.
#define GET_DATA_FUNC_S(DataName, FuncName)
#define GAS_NAME_STENCIL
Definition: GAS_Utils.h:19
#define GAS_NAME_INDEX
Definition: GAS_Utils.h:31