![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 2009 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: DtCigiAnimationEntity.h,v $ $Revision: 1.1 $ $State: Exp $ 00007 *********************************************************************/ 00008 00012 00013 #ifndef DtCigiAnimationEntity_H_ 00014 #define DtCigiAnimationEntity_H_ 00015 00016 #include <vrvCigi/vrvCigi.h> 00017 00018 #include <vrvCigi/DtCigiBaseEntity.h> 00019 00020 #include <matrix/geodCoord.h> 00021 #include <matrix/vlTaitBryan.h> 00022 00023 namespace makVrv 00024 { 00025 class DtAnimationModelAgent; 00026 class DtSceneObjectAgent; 00027 00030 class DT_DLL_VRVCIGI DtCigiAnimationEntity : public DtCigiBaseEntity 00031 { 00032 public: 00034 DtCigiAnimationEntity(DtCigiConnection& connection, 00035 DtAgentManagerInterface& sceneInterface, int entityId, int entityType); 00036 00038 virtual ~DtCigiAnimationEntity(); 00039 00041 virtual void stop(); 00042 00044 virtual void start(); 00045 00047 virtual void pause(); 00048 00050 virtual void resume(); 00051 00053 virtual void setLoopMode(bool loopOn); 00054 00056 virtual void setReverseAnimation(bool reverse); 00057 00058 protected: 00059 DtAnimationModelAgent* myAnimationModel; 00060 }; 00061 } 00062 00063 #endif