![]() |
PeriDyno 1.0.0
|
#include <ComputeModule.h>
Public Member Functions | |
ComputeModule () | |
~ComputeModule () override | |
std::string | getModuleType () override |
![]() | |
Module (std::string name="default") | |
~Module (void) override | |
bool | initialize () |
void | update () |
void | setName (std::string name) |
std::string | getName () override |
virtual void | setParentNode (Node *node) |
Set the parent node. | |
Node * | getParentNode () |
SceneGraph * | getSceneGraph () |
bool | isInitialized () |
bool | attachField (FBase *field, std::string name, std::string desc, bool autoDestroy=true) override |
Attach a field to Base. | |
bool | isInputComplete () |
Check the completeness of input fields. | |
bool | isOutputCompete () |
DEF_VAR (bool, ForceUpdate, false, "") | |
void | setUpdateAlways (bool b) |
Set the update strategy for the module. | |
![]() | |
OBase () | |
~OBase () override | |
virtual std::string | caption () |
Return the caption. | |
virtual bool | captionVisible () |
Whether to hide the caption in the GUI. | |
virtual std::string | description () |
Return a description for the node or module, override this function to support user-defined description. | |
bool | addField (FBase *data) |
Add a field to Base FieldID will be set to the name of Field by default. | |
bool | addField (FieldID name, FBase *data) |
Add a field to Base. | |
bool | addFieldAlias (FieldID name, FBase *data) |
bool | addFieldAlias (FieldID name, FBase *data, FieldMap &fieldAlias) |
bool | findField (FBase *data) |
Find a field by its pointer. | |
bool | findFieldAlias (const FieldID name) |
Find a field by its name. | |
bool | findFieldAlias (const FieldID name, FieldMap &fieldAlias) |
Find a field in fieldAlias by its name This function is typically called by other functions. | |
bool | removeField (FBase *data) |
Remove a field by its pointer. | |
bool | removeFieldAlias (const FieldID name) |
Remove a field by its name. | |
bool | removeFieldAlias (const FieldID name, FieldMap &fieldAlias) |
FBase * | getField (const FieldID name) |
Return a field by its name. | |
std::vector< FBase * > & | getAllFields () |
template<typename T> | |
T * | getField (FieldID name) |
bool | isAllFieldsReady () |
Check the completeness of all required fields. | |
std::vector< FieldID > | getFieldAlias (FBase *data) |
int | getFieldAliasCount (FBase *data) |
void | setBlockCoord (float x, float y) |
float | bx () |
float | by () |
bool | findInputField (FBase *field) |
bool | addInputField (FBase *field) |
bool | removeInputField (FBase *field) |
std::vector< FBase * > & | getInputFields () |
bool | findOutputField (FBase *field) |
bool | addOutputField (FBase *field) |
bool | addToOutput (FBase *field) |
bool | removeOutputField (FBase *field) |
bool | removeFromOutput (FBase *field) |
std::vector< FBase * > & | getOutputFields () |
bool | findParameter (FBase *field) |
bool | addParameter (FBase *field) |
bool | removeParameter (FBase *field) |
std::vector< FBase * > & | getParameters () |
![]() | |
Object () | |
virtual | ~Object () |
ObjectId | objectId () |
Protected Member Functions | |
virtual void | compute ()=0 |
![]() | |
virtual bool | initializeImpl () |
virtual void | preprocess () |
virtual void | postprocess () |
virtual bool | validateInputs () |
virtual bool | validateOutputs () |
virtual bool | requireUpdate () |
virtual void | updateStarted () |
Two functions called at the beginning and end of update() used for debug. | |
virtual void | updateEnded () |
Private Member Functions | |
void | updateImpl () final |
Additional Inherited Members | |
![]() | |
typedef std::vector< FBase * > | FieldVector |
typedef std::map< FieldID, FBase * > | FieldMap |
![]() | |
static bool | registerClass (ClassInfo *ci) |
static Object * | createObject (std::string name) |
static std::map< std::string, ClassInfo * > * | getClassMap () |
static ObjectId | baseId () |
Base Id. | |
![]() | |
std::vector< FBase * > | fields_input |
std::vector< FBase * > | fields_output |
std::vector< FBase * > | fields_param |
Definition at line 6 of file ComputeModule.h.
dyno::ComputeModule::ComputeModule | ( | ) |
|
override |
Definition at line 9 of file ComputeModule.cpp.
|
protectedpure virtual |
Implemented in dyno::AddRealAndReal< TDataType >, dyno::BoundingBoxOfTextureMesh, dyno::CalculateBoundingBox< TDataType >, dyno::CalculateMaximum< TDataType >, dyno::CalculateMinimum< TDataType >, dyno::CalculateNorm< TDataType >, dyno::CalculateNorm< TDataType >, dyno::CalculateNormalSDF< TDataType >, dyno::CollisionDetectionBroadPhase< TDataType >, dyno::CollisionDetectionBroadPhase< TDataType >, dyno::CollistionDetectionBoundingBox< TDataType >, dyno::CollistionDetectionTriangleSet< TDataType >, dyno::ColorMapping< TDataType >, dyno::ColorMapping< TDataType >, dyno::ComputeParticleAnisotropy< TDataType >, dyno::ConstructTangentSpace, dyno::ContactsUnion< TDataType >, dyno::DivergenceFreeSphSolver< TDataType >, dyno::DivideRealAndReal< TDataType >, dyno::FastMarchingMethodGPU< TDataType >, dyno::FastSweepingMethod< TDataType >, dyno::FastSweepingMethodGPU< TDataType >, dyno::ImplicitISPH< TDataType >, dyno::ImplicitViscosity< TDataType >, dyno::InstanceTransform< TDataType >, dyno::IterativeDensitySolver< TDataType >, dyno::MultiplyRealAndReal< TDataType >, dyno::NeighborElementQuery< TDataType >, dyno::NeighborPointQuery< TDataType >, dyno::NeighborPointQuery< TDataType >, dyno::NeighborPointQuery< TDataType >, dyno::NeighborTriangleQuery< TDataType >, dyno::ParticleApproximation< TDataType >, dyno::ParticleIntegrator< TDataType >, dyno::PoissonPlane< TDataType >, dyno::SemiAnalyticalParticleShifting< TDataType >, dyno::SemiAnalyticalSummationDensity< TDataType >, dyno::SemiImplicitDensitySolver< TDataType >, dyno::SimpleVechicleDriver, dyno::SubtractRealAndReal< TDataType >, dyno::SummationDensity< TDataType >, dyno::SurfaceEnergyForce< TDataType >, and dyno::VariationalApproximateProjection< TDataType >.
|
inlineoverridevirtual |
Reimplemented from dyno::Module.
Reimplemented in dyno::Divide, dyno::Multiply, and dyno::Subtract.
Definition at line 12 of file ComputeModule.h.
|
finalprivatevirtual |
Reimplemented from dyno::Module.
Reimplemented in dyno::ParticleIntegrator< TDataType >.
Definition at line 13 of file ComputeModule.cpp.