[Gcblue-commits] gcb_wx/include/sim Game.h,1.49,1.50 tcSimState.h,1.29,1.30
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2004-11-14 22:53:02
|
Update of /cvsroot/gcblue/gcb_wx/include/sim In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22147/include/sim Modified Files: Game.h tcSimState.h Log Message: Text message "message center" GUI screen Index: tcSimState.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/sim/tcSimState.h,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** tcSimState.h 6 Nov 2004 15:13:40 -0000 1.29 --- tcSimState.h 14 Nov 2004 22:52:20 -0000 1.30 *************** *** 203,206 **** --- 203,207 ---- void ProcessESMDetection(tcGameObject *apESMPlat,tcGameObject *apTarget, tcESMSensor *apESMSS); + void ReportDamage(tcGameObject* obj); void UpdateFireControl(tcGameObject *apGameObj, tcRadar *apRadarSS); void UpdateSeeker(tcGameObject *applat, tcRadar *apRadarSS); Index: Game.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/sim/Game.h,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** Game.h 29 Oct 2004 02:50:43 -0000 1.49 --- Game.h 14 Nov 2004 22:52:20 -0000 1.50 *************** *** 61,64 **** --- 61,65 ---- class DateZulu; class tcDirector; + class tcMessageCenter; class tcNetworkView; class tcDisplaySettingsView; *************** *** 96,99 **** --- 97,101 ---- CREDIT, SCENARIOSELECT, + MESSAGES, NETWORK, DISPLAYSETTINGS, *************** *** 167,170 **** --- 169,173 ---- tcGoalTracker* goalTracker; ///< monitors simstate vs. victory goals tcDirector* director; ///< displays scripted graphics and controls view for dramatic mission brief + tcMessageCenter* messageCenter; ///< tasking, intel, etc. message view tcNetworkView* networkView; ///< network and multiplayer setup and test tcDisplaySettingsView* displaySettingsView; *************** *** 285,288 **** --- 288,292 ---- void InitializeDirector(); void InitializeDisplaySettingsView(); + void InitializeMessageCenter(); void InitializeNetworkView(); void InitializeOptionsView(); |