[Gcblue-commits] gcb_wx/include/network tcMultiplayerInterface.h,1.17,1.18
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2005-03-04 00:47:14
|
Update of /cvsroot/gcblue/gcb_wx/include/network In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11821/include/network Modified Files: tcMultiplayerInterface.h Log Message: Better sensor ageout behavior, more ai work, misc cleanup Index: tcMultiplayerInterface.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/network/tcMultiplayerInterface.h,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** tcMultiplayerInterface.h 1 Sep 2004 02:55:36 -0000 1.17 --- tcMultiplayerInterface.h 4 Mar 2005 00:46:15 -0000 1.18 *************** *** 98,112 **** void InitMessageHandlers(); bool IsChatTextAvail(); ! bool IsCommand(std::string text); bool IsServer(); void MakeClient(); void MakeServer(); ! void OpenConnection(std::string hostName); ! void ProcessCommandClient(int connectionId, std::string text); ! void ProcessCommandServer(std::string text); void RemoveChatSubscriber(tcConsoleBox* subscriber); ! void SendChatText(int destination, std::string message); void SendControlMessage(int destination, int messageCode, int param = 0); ! void SendTestUDP(int destination, std::string message); void SendUpdateMessage(int destination, tcStream& stream); void SetChatProtocol(int code); --- 98,112 ---- void InitMessageHandlers(); bool IsChatTextAvail(); ! bool IsCommand(const std::string& text); bool IsServer(); void MakeClient(); void MakeServer(); ! void OpenConnection(const std::string& hostName); ! void ProcessCommandClient(int connectionId, const std::string& text); ! void ProcessCommandServer(const std::string& text); void RemoveChatSubscriber(tcConsoleBox* subscriber); ! void SendChatText(int destination, const std::string& message); void SendControlMessage(int destination, int messageCode, int param = 0); ! void SendTestUDP(int destination, const std::string& message); void SendUpdateMessage(int destination, tcStream& stream); void SetChatProtocol(int code); |