![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2003 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: gndFlwEntDesc.h,v $ $Revision: 1.12 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00011 00014 00015 #ifndef DtGroundFollowEntityDescriptor_H_ 00016 #define DtGroundFollowEntityDescriptor_H_ 00017 00018 00019 #include "vrfobjparam/compDesc.h" 00020 #include "vrfutil/rwReal.h" 00021 #include "vrfobjparam/gndMoveToDesc.h" 00022 class DtReaderWriterRegistry; 00023 00031 #include "vrfobjparam/vrfobjparamDefines.h" 00032 class DT_DLL_vrfobjparam DtGroundFollowEntityDescriptor : public DtGroundMoveToDescriptor 00033 { 00034 public: 00036 DtGroundFollowEntityDescriptor(const DtString& name, DtReaderWriterRegistry * 00037 parentRegistry = 0); 00038 00040 DtGroundFollowEntityDescriptor(const DtGroundFollowEntityDescriptor & orig, 00041 DtReaderWriterRegistry * parentRegistry = 0); 00042 00044 DtGroundFollowEntityDescriptor & operator=(const 00045 DtGroundFollowEntityDescriptor & orig); 00046 00048 virtual ~DtGroundFollowEntityDescriptor(); 00049 00052 virtual DtString type() const; 00053 00056 virtual DtReal nearCatchUpFactor() const; 00057 virtual void setNearCatchUpFactor(DtReal nearCatchUpFactor); 00059 00062 virtual DtReal farCatchUpFactor() const; 00063 virtual void setFarCatchUpFactor(DtReal farCatchUpFactor); 00065 00068 virtual DtReal passedSlowDownFactor() const; 00069 virtual void setPassedSlowDownFactor(DtReal passedSlowDownFactor); 00071 00072 virtual DtComponentDescriptor * clone(DtReaderWriterRegistry * parentRegistry 00073 = 0) const; 00074 00076 static DtComponentDescriptor * creator(); 00077 00078 protected: 00080 DtGroundFollowEntityDescriptor(); 00081 00082 protected: 00083 00087 00093 DtRwReal myNearCatchUpFactor; 00094 00100 DtRwReal myFarCatchUpFactor; 00101 00108 DtRwReal myPassedSlowDownFactor; 00109 00111 }; 00112 00113 #endif 00114 00115 00116