[Gcblue-commits] gcb_wx/include/sim Game.h,1.21,1.22 tcCarrierObject.h,1.4,1.5 tcMapView.h,1.11,1.12
Status: Alpha
Brought to you by:
ddcforge
|
From: <ddc...@us...> - 2004-01-05 02:48:05
|
Update of /cvsroot/gcblue/gcb_wx/include/sim
In directory sc8-pr-cvs1:/tmp/cvs-serv12807/include/sim
Modified Files:
Game.h tcCarrierObject.h tcMapView.h
Log Message:
Index: Game.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/sim/Game.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** Game.h 3 Jan 2004 00:45:12 -0000 1.21
--- Game.h 5 Jan 2004 02:48:02 -0000 1.22
***************
*** 190,194 ****
bool mbQuit; ///< set to true to exit game
bool mbScenarioEdit; ///< scenario edit mode
! bool mbAccelerateTime;
bool mb3DActive;
te3DSize size3D; ///< @see te3DSize
--- 190,195 ----
bool mbQuit; ///< set to true to exit game
bool mbScenarioEdit; ///< scenario edit mode
! int accelerateTime; ///< time acceleration factor, 0 is no accel, 1 is 2x, 2 is 3x, etc
! ///< could try merge with pause, so 0 = pause, 1 = norm, 2 = 2x, etc
bool mb3DActive;
te3DSize size3D; ///< @see te3DSize
Index: tcCarrierObject.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/sim/tcCarrierObject.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** tcCarrierObject.h 8 Dec 2003 03:06:36 -0000 1.4
--- tcCarrierObject.h 5 Jan 2004 02:48:02 -0000 1.5
***************
*** 34,37 ****
--- 34,38 ----
tcFlightPort flight_deck;
+ bool AddChildToFlightDeck(std::string className, std::string unitName, teLocation loc);
int CheckLanding(tcGameObject *obj);
virtual void Clear();
Index: tcMapView.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/sim/tcMapView.h,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** tcMapView.h 3 Jan 2004 00:45:12 -0000 1.11
--- tcMapView.h 5 Jan 2004 02:48:02 -0000 1.12
***************
*** 297,300 ****
--- 297,301 ----
void SetDateTime(std::string s) {dateTime = s;}
void SetHookID(long id) {mnHookID = id;}
+ void ToggleShowTrackTags() {mbShowTrackID = !mbShowTrackID;}
void UpdateViewBounds() {mpMapData->GetTheaterArea(mrectViewBounds);}
tcTacticalMapView(wxWindow *parent,
|