[Gcblue-commits] gcb_wx/include/graphics ObjectUpdater.h,1.8,1.9 SmokeTrailEmitter.h,1.1,1.2 tcMessa
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-07-26 00:37:49
|
Update of /cvsroot/gcblue/gcb_wx/include/graphics In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13788/include/graphics Modified Files: ObjectUpdater.h SmokeTrailEmitter.h tcMessageCenter.h tcMessageChannel.h tcMessageInterface.h Log Message: Added mission goal status to "Mission" channel (hit F7), added sub periscope and mast ops to multiplayer, changed torpedo behavior to resume s-search if track lost early, made afterburner smoke thin a little more uniformly Index: SmokeTrailEmitter.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/SmokeTrailEmitter.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SmokeTrailEmitter.h 1 Sep 2004 02:55:35 -0000 1.1 --- SmokeTrailEmitter.h 26 Jul 2005 00:37:02 -0000 1.2 *************** *** 68,75 **** osg::ref_ptr<tcParticlePlacer> placer_; ! /// template for close up particles used to make smoke trail look continuous near missile ! Particle closeUpTemplate; ! ! void InitializeCloseupTemplate(); }; --- 68,72 ---- osg::ref_ptr<tcParticlePlacer> placer_; ! void InitializeStandardTemplate(); }; Index: ObjectUpdater.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/ObjectUpdater.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** ObjectUpdater.h 1 Jun 2005 00:13:26 -0000 1.8 --- ObjectUpdater.h 26 Jul 2005 00:37:02 -0000 1.9 *************** *** 62,65 **** --- 62,66 ---- void UpdateAnimations(); + void UpdateTrackAnimations(); void UpdateTrack(Node* node); void UpdateTrue(Node* node); Index: tcMessageCenter.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcMessageCenter.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** tcMessageCenter.h 6 May 2005 23:57:15 -0000 1.4 --- tcMessageCenter.h 26 Jul 2005 00:37:02 -0000 1.5 *************** *** 43,47 **** { public: ! void AddMessage(const std::string& channel, const std::string& msg); void ConsoleMessage(const std::string& msg); void PopupMessage(const std::string& msg); --- 43,48 ---- { public: ! void AddMessage(const std::string& channelName, const std::string& msg); ! void ClearChannel(const std::string& channelName); void ConsoleMessage(const std::string& msg); void PopupMessage(const std::string& msg); Index: tcMessageChannel.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcMessageChannel.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tcMessageChannel.h 4 Mar 2005 00:46:15 -0000 1.2 --- tcMessageChannel.h 26 Jul 2005 00:37:02 -0000 1.3 *************** *** 47,52 **** void AddMessage(const std::string& msg); void Draw(tc3DWindow* graphics); ! std::string GetName(); bool IsActive() const; bool IsPointInActivationRect(const wxPoint& p) const; --- 47,53 ---- void AddMessage(const std::string& msg); + void Clear(); void Draw(tc3DWindow* graphics); ! const std::string& GetName() const; bool IsActive() const; bool IsPointInActivationRect(const wxPoint& p) const; Index: tcMessageInterface.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/graphics/tcMessageInterface.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** tcMessageInterface.h 6 May 2005 23:57:15 -0000 1.4 --- tcMessageInterface.h 26 Jul 2005 00:37:02 -0000 1.5 *************** *** 41,44 **** --- 41,45 ---- public: void ChannelMessage(const std::string& channelName, const std::string& msg); + void ClearChannel(const std::string& channelName); void ConsoleMessage(const std::string& msg); void PostChatText(const std::string& msg); |