00001 /*======================================================================= 00002 *** THE CONTENT OF THIS WORK IS PROPRIETARY TO FEI S.A.S, (FEI S.A.S.), *** 00003 *** AND IS DISTRIBUTED UNDER A LICENSE AGREEMENT. *** 00004 *** *** 00005 *** REPRODUCTION, DISCLOSURE, OR USE, IN WHOLE OR IN PART, OTHER THAN AS *** 00006 *** SPECIFIED IN THE LICENSE ARE NOT TO BE UNDERTAKEN EXCEPT WITH PRIOR *** 00007 *** WRITTEN AUTHORIZATION OF FEI S.A.S. *** 00008 *** *** 00009 *** RESTRICTED RIGHTS LEGEND *** 00010 *** USE, DUPLICATION, OR DISCLOSURE BY THE GOVERNMENT OF THE CONTENT OF THIS *** 00011 *** WORK OR RELATED DOCUMENTATION IS SUBJECT TO RESTRICTIONS AS SET FORTH IN *** 00012 *** SUBPARAGRAPH (C)(1) OF THE COMMERCIAL COMPUTER SOFTWARE RESTRICTED RIGHT *** 00013 *** CLAUSE AT FAR 52.227-19 OR SUBPARAGRAPH (C)(1)(II) OF THE RIGHTS IN *** 00014 *** TECHNICAL DATA AND COMPUTER SOFTWARE CLAUSE AT DFARS 52.227-7013. *** 00015 *** *** 00016 *** COPYRIGHT (C) 1996-2020 BY FEI S.A.S, *** 00017 *** BORDEAUX, FRANCE *** 00018 *** ALL RIGHTS RESERVED *** 00019 **=======================================================================*/ 00020 /*======================================================================= 00021 ** Author : Rodolphe Albou (Dec 2006) 00022 **=======================================================================*/ 00023 00024 00025 #ifndef _SO_TIME_HINTS_ 00026 #define _SO_TIME_HINTS_ 00027 00028 #include <Inventor/SbBase.h> 00029 #include <Inventor/nodes/SoNode.h> 00030 #include <Inventor/fields/SoSFShort.h> 00031 #include <Inventor/fields/SoSFUShort.h> 00032 #include <Inventor/fields/SoSFEnum.h> 00033 class SoDEPRECATED SoTimeHints : public SoNode 00067 { 00068 SO_NODE_HEADER( SoTimeHints ); 00069 00070 public: 00072 enum TimeDirection { 00076 BACKWARD, 00077 00081 FORWARD 00082 } ; 00083 00087 SoTimeHints(); 00088 00092 SoSFShort currentTimeStep ; 00093 00097 SoSFUShort stepIncrement ; 00098 00103 SoSFEnum timeDirection ; 00104 00109 void setNextTimeStep( unsigned int numTimeSteps ) 00110 { currentTimeStep = getNextTimeStep( currentTimeStep.getValue(), (short)numTimeSteps, (TimeDirection) timeDirection.getValue() );} 00111 00112 private: 00115 short getNextTimeStep(short numTimeSteps, TimeDirection dir = FORWARD) const; 00116 short getNextTimeStep(short currentTimeStep, short numTimeSteps, TimeDirection dir = FORWARD) const; 00117 00118 static void initClass(); 00119 static void exitClass(); 00120 00121 00122 private: 00123 virtual void doAction( SoAction *action ); 00124 virtual void GLRender( SoGLRenderAction *action ); 00125 virtual void callback( SoCallbackAction *action ); 00126 virtual void getBoundingBox(SoGetBoundingBoxAction *action); 00127 virtual void pick(SoPickAction *action) ; 00128 virtual void write(SoWriteAction *action); 00129 00130 private: 00131 // Destructor 00132 virtual ~SoTimeHints(); 00133 }; 00134 //-------------------------------------------------------------------------------- 00135 00136 #endif // _SO_TIME_HINTS_ 00137 00138 00139