[Gcblue-commits] gcb_wx/include/ai Brain.h,1.7,1.8 Nav.h,1.1,1.2
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-07-29 02:36:00
|
Update of /cvsroot/gcblue/gcb_wx/include/ai In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28827/include/ai Modified Files: Brain.h Nav.h Log Message: 0.7.2 pre-release test build, added waypoints to client display, fixed multiplayer message overload bug, added better throttling for bad multiplayer connections Index: Brain.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/ai/Brain.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Brain.h 29 Apr 2005 18:52:01 -0000 1.7 --- Brain.h 29 Jul 2005 02:35:52 -0000 1.8 *************** *** 82,85 **** --- 82,86 ---- void ClearNewCommand(); bool HasNewCommand() const; + void SetNewCommand(); Index: Nav.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/ai/Nav.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Nav.h 4 Mar 2005 00:46:19 -0000 1.1 --- Nav.h 29 Jul 2005 02:35:52 -0000 1.2 *************** *** 38,41 **** --- 38,46 ---- class GeoPoint; + class tcStream; + class tcCommandStream; + class tcCreateStream; + class tcUpdateStream; + namespace ai { *************** *** 53,56 **** --- 58,64 ---- + tcCommandStream& operator<<(tcCommandStream& stream); + tcCommandStream& operator>>(tcCommandStream& stream); + Nav(tcPlatformObject* platform_, Blackboard* bb, long id_, double priority_, const std::string& taskName_); |