OpenClonk
C4ValueProviderAbsRDir Class Reference

#include <C4MeshAnimation.h>

Inheritance diagram for C4ValueProviderAbsRDir:
[legend]
Collaboration diagram for C4ValueProviderAbsRDir:
[legend]

Public Member Functions

 C4ValueProviderAbsRDir ()
 
 C4ValueProviderAbsRDir (C4Object *object, C4Real begin, C4Real end, C4Real min_rdir, C4Real max_rdir)
 
bool Execute () override
 
void CompileFunc (StdCompiler *pComp) override
 
void DenumeratePointers () override
 
void ClearPointers (C4Object *pObj) override
 

Static Public Member Functions

static const IDBaseLookup (const char *name)
 
static const IDBaseLookup (const std::type_info &type)
 

Public Attributes

C4Real Value
 

Detailed Description

Definition at line 233 of file C4MeshAnimation.h.

Constructor & Destructor Documentation

◆ C4ValueProviderAbsRDir() [1/2]

C4ValueProviderAbsRDir::C4ValueProviderAbsRDir ( )
inline

Definition at line 236 of file C4MeshAnimation.h.

236 : Object(nullptr), Begin(Fix0), End(Fix0), MinRDir(Fix0), MaxRDir(Fix0) {}
const C4Real Fix0
Definition: C4Real.h:312

◆ C4ValueProviderAbsRDir() [2/2]

C4ValueProviderAbsRDir::C4ValueProviderAbsRDir ( C4Object object,
C4Real  begin,
C4Real  end,
C4Real  min_rdir,
C4Real  max_rdir 
)

Definition at line 537 of file C4MeshAnimation.cpp.

537  :
538  Object(object), Begin(begin), End(end), MinRDir(min_rdir), MaxRDir(max_rdir)
539 {
540  Execute();
541 }

References Execute().

Here is the call graph for this function:

Member Function Documentation

◆ ClearPointers()

void C4ValueProviderAbsRDir::ClearPointers ( C4Object pObj)
inlineoverridevirtual

Reimplemented from StdMeshInstance::SerializableValueProvider.

Definition at line 242 of file C4MeshAnimation.h.

242 { if(Object == pObj) Object = nullptr; }

◆ CompileFunc()

void C4ValueProviderAbsRDir::CompileFunc ( StdCompiler pComp)
overridevirtual

Reimplemented from StdMeshInstance::SerializableValueProvider.

Definition at line 554 of file C4MeshAnimation.cpp.

555 {
557  pComp->Separator();
558  pComp->Value(Object);
559  pComp->Separator();
560  pComp->Value(Begin);
561  pComp->Separator();
562  pComp->Value(End);
563  pComp->Separator();
564  pComp->Value(MaxRDir);
565 }
void CompileFunc(C4Real &rValue, StdCompiler *pComp)
Definition: C4Real.cpp:9033
virtual bool Separator(Sep eSep=SEP_SEP)
Definition: StdCompiler.h:119
void Value(const T &rStruct)
Definition: StdCompiler.h:161

References CompileFunc(), StdCompiler::Separator(), and StdCompiler::Value().

Here is the call graph for this function:

◆ DenumeratePointers()

void C4ValueProviderAbsRDir::DenumeratePointers ( )
inlineoverridevirtual

Reimplemented from StdMeshInstance::SerializableValueProvider.

Definition at line 241 of file C4MeshAnimation.h.

241 { Object.DenumeratePointers(); }
void DenumeratePointers()
Definition: C4ObjectPtr.cpp:49

References C4ObjectPtr::DenumeratePointers().

Here is the call graph for this function:

◆ Execute()

bool C4ValueProviderAbsRDir::Execute ( )
overridevirtual

Implements StdMeshInstanceValueProvider.

Definition at line 543 of file C4MeshAnimation.cpp.

544 {
545  // Object might have been removed
546  if(!Object) return false;
547 
548  C4Real val = (Abs(Object->rdir) - MinRDir) / (MaxRDir - MinRDir);
549 
550  Value = Begin + (End - Begin) * Clamp<C4Real>(val, itofix(0), itofix(1));
551  return true;
552 }
C4Fixed itofix(int32_t x)
Definition: C4Real.h:261
T Abs(T val)
Definition: Standard.h:42
Definition: C4Real.h:59
C4Real rdir
Definition: C4Object.h:124

References Abs(), itofix(), C4Object::rdir, and StdMeshInstanceValueProvider::Value.

Referenced by C4ValueProviderAbsRDir().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Lookup() [1/2]

static const IDBase* StdMeshInstance::SerializableValueProvider::Lookup ( const char *  name)
inlinestaticinherited

Definition at line 460 of file StdMesh.h.

461  {
462  if(!IDs) return nullptr;
463  for(auto & ID : *IDs)
464  if(strcmp(ID->name, name) == 0)
465  return ID;
466  return nullptr;
467  }

References StdMeshInstance::SerializableValueProvider::IDBase::name.

◆ Lookup() [2/2]

static const IDBase* StdMeshInstance::SerializableValueProvider::Lookup ( const std::type_info &  type)
inlinestaticinherited

Definition at line 469 of file StdMesh.h.

470  {
471  if(!IDs) return nullptr;
472  for(auto & ID : *IDs)
473  if(ID->type == type)
474  return ID;
475  return nullptr;
476  }

References StdMeshInstance::SerializableValueProvider::IDBase::type.

Member Data Documentation

◆ Value


The documentation for this class was generated from the following files: