From: <mk...@us...> - 2003-07-24 04:41:49
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Include In directory sc8-pr-cvs1:/tmp/cvs-serv1209/Include Modified Files: GameScreen.h Log Message: Index: GameScreen.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Include/GameScreen.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** GameScreen.h 26 Jun 2003 09:25:45 -0000 1.10 --- GameScreen.h 24 Jul 2003 04:41:46 -0000 1.11 *************** *** 37,40 **** --- 37,41 ---- #include "ScreenInfoManager.h" #include "TerrainObject.h" + #include "DataRecorder.h" *************** *** 64,67 **** --- 65,69 ---- ACTION_INTERFACE(GameScreen, on_Quit); ACTION_INTERFACE(GameScreen, on_Pause); + ACTION_INTERFACE(GameScreen, on_ToggleRecorder); ACTION_INTERFACE(GameScreen, on_Stats); ACTION_INTERFACE(GameScreen, on_Console); *************** *** 122,128 **** TerrainObject::IntersectionHint m_CameraHint; ! /** ! * Text information ! */ osg::ref_ptr<ScreenInfoManager> m_ScreenInfoManager; osg::ref_ptr<osgUtil::SceneView> m_InfoView; --- 124,128 ---- TerrainObject::IntersectionHint m_CameraHint; ! // text information osg::ref_ptr<ScreenInfoManager> m_ScreenInfoManager; osg::ref_ptr<osgUtil::SceneView> m_InfoView; *************** *** 132,139 **** --- 132,144 ---- simdata::Ref<DynamicObject> m_ActiveObject; + // padlock testing simdata::Ref<DynamicObject> m_Padlock; float m_NeckPhi; float m_NeckTheta; bool m_NeckLimit; + + // data recorder + simdata::Ref<DataRecorder> m_DataRecorder; + void setRecorder(bool on); }; |