Update of /cvsroot/gcblue/gcb_wx/include/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15614/include/common
Modified Files:
simmath.h tcSound.h
Log Message:
Better sensor ageout behavior, more ai work, misc cleanup
Index: simmath.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/common/simmath.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** simmath.h 24 Feb 2005 22:19:13 -0000 1.26
--- simmath.h 2 Mar 2005 22:28:35 -0000 1.27
***************
*** 117,120 ****
--- 117,121 ----
}
bool IsAir() {return ((mnClassification & PTYPE_AIR) != 0);}
+ bool IsGround() {return ((mnClassification & PTYPE_FIXED) != 0);}
bool IsMissile() {return ((mnClassification & PTYPE_MISSILE) != 0);}
bool IsSurface() {return ((mnClassification & PTYPE_SURFACE) != 0);}
Index: tcSound.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/common/tcSound.h,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** tcSound.h 21 Feb 2005 18:25:54 -0000 1.19
--- tcSound.h 2 Mar 2005 22:28:36 -0000 1.20
***************
*** 71,75 ****
bool GetMusicPause() const;
- void PlayEffect(int anEffect);
void PlayEffect(std::string effectName);
void PlayMusic(int anTrack);
--- 71,74 ----
|