Update of /cvsroot/gcblue/gcb_wx/include/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1435/include/common
Modified Files:
simmath.h tcSound.h wxcommands.h
Log Message:
GCB 0.8.0 release
Index: simmath.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/common/simmath.h,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** simmath.h 22 Jun 2005 01:21:25 -0000 1.31
--- simmath.h 10 Sep 2005 21:48:06 -0000 1.32
***************
*** 145,154 ****
{
public:
- char mnType;
float mfHeight_m; ///< negative is water
float mfLonDatum; ///< location where terrain info recorded (used to see
float mfLatDatum; ///< if object has moved enough to require update)
! void Clear(void);
void Serialize(tcFile& file, bool abLoad);
};
--- 145,155 ----
{
public:
float mfHeight_m; ///< negative is water
+ float lookAheadHeight_m; ///< height of terrain a short distance ahead of platform (e.g. for avoiding crashing into mountains)
+
float mfLonDatum; ///< location where terrain info recorded (used to see
float mfLatDatum; ///< if object has moved enough to require update)
! void Clear();
void Serialize(tcFile& file, bool abLoad);
};
Index: wxcommands.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/common/wxcommands.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** wxcommands.h 6 Apr 2005 02:19:48 -0000 1.20
--- wxcommands.h 10 Sep 2005 21:48:06 -0000 1.21
***************
*** 3,7 ****
** IDs for commands processed via wxWindows event handler.
*/
! /* Copyright (C) 2003-2004 Dewitt Colclough (de...@tw...)
** All rights reserved.
--- 3,7 ----
** IDs for commands processed via wxWindows event handler.
*/
! /* Copyright (C) 2003-2005 Dewitt Colclough (de...@tw...)
** All rights reserved.
***************
*** 37,40 ****
--- 37,41 ----
ID_SCENARIOSELECTVIEW = 50, ///< switch to scenario select view
ID_MULTIPLAYERVIEW = 60, ///< switch to multiplayer view
+ ID_BRIEFINGVIEW = 65, ///< switch to simple briefing view
ID_STARTGAME = 70, ///< start game
ID_ENDGAME = 72, ///< end game
***************
*** 52,56 ****
ID_CONNECT = 160,
ID_JOINGAME = 170,
! ID_CHATPROTOCOL = 180
};
--- 53,58 ----
ID_CONNECT = 160,
ID_JOINGAME = 170,
! ID_CHATPROTOCOL = 180,
! ID_LOGINMODE = 190
};
Index: tcSound.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/common/tcSound.h,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** tcSound.h 4 Mar 2005 00:46:14 -0000 1.21
--- tcSound.h 10 Sep 2005 21:48:06 -0000 1.22
***************
*** 48,52 ****
! #define N_EFFECT_BUFFERS 32
--- 48,52 ----
! #define N_EFFECT_BUFFERS 16
|