[Gcblue-commits] gcb_wx/include/sim tcPlatformObject.h,1.10,1.11 tcRadar.h,1.2,1.3 tcSimState.h,1.15
Status: Alpha
Brought to you by:
ddcforge
From: <ddc...@us...> - 2004-02-12 21:47:06
|
Update of /cvsroot/gcblue/gcb_wx/include/sim In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15386/include/sim Modified Files: tcPlatformObject.h tcRadar.h tcSimState.h Log Message: Index: tcPlatformObject.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/sim/tcPlatformObject.h,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** tcPlatformObject.h 2 Feb 2004 01:21:37 -0000 1.10 --- tcPlatformObject.h 12 Feb 2004 21:41:52 -0000 1.11 *************** *** 97,100 **** --- 97,101 ---- virtual void UpdateHeading(float dt_s); virtual void UpdateLauncherState(float dt_s); + virtual void UpdateSensors(double t); virtual void UpdateSpeed(float dt_s); }; \ No newline at end of file Index: tcRadar.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/sim/tcRadar.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tcRadar.h 12 Feb 2004 01:54:49 -0000 1.2 --- tcRadar.h 12 Feb 2004 21:41:52 -0000 1.3 *************** *** 87,90 **** --- 87,92 ---- tcRadar* GetSemiactiveIlluminator(); + void UpdateSensorMap(double t, const tcGameObject* target, float range_km); + void UpdateSurveillance(double t); }; Index: tcSimState.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/sim/tcSimState.h,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** tcSimState.h 12 Feb 2004 01:54:49 -0000 1.15 --- tcSimState.h 12 Feb 2004 21:41:52 -0000 1.16 *************** *** 77,80 **** --- 77,81 ---- tcPool<tcGameObject,N_GAME_OBJECTS> maPlatformState; tcDatabase *mpDatabase; // these should be private with better design + tcSound *mpSound; ///< should be converted into a singleton class tcUserInfo *mpUserInfo; tcGoalTracker *goalTracker; ///< tracks win/lose victory conditions for each alliance *************** *** 168,172 **** private: tcMapData *mpMapData; - tcSound *mpSound; tcCommandQueue *mpCommandInterface; double mfSimTime; --- 169,172 ---- |