/* Copyright (C) 2007 Bradley Arsenault This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __YOGMessage_h #define __YOGMessage_h #include #include "Stream.h" #include "YOGConsts.h" ///This class generically represents a message sent in YOG. This kind of message ///can be for any purpose, including administrator messages, private messages, ///in-game messages, excetra class YOGMessage { public: ///Construct an empty YOGMessage YOGMessage(); ///Construct a YOGMessage YOGMessage(const std::string& message, const std::string& sender, YOGMessageType type); ///Sets the body of the message void setMessage(const std::string& message); ///Returns the message std::string getMessage() const; ///Sets the user the message was sent from void setSender(const std::string& user); ///Returns the sender std::string getSender() const; ///Sets the message type void setMessageType(YOGMessageType type); ///Returns the message type YOGMessageType getMessageType() const; ///Encodes this YOGMessage into a bit stream void encodeData(GAGCore::OutputStream* stream) const; ///Decodes this YOGMessage from a bit stream void decodeData(GAGCore::InputStream* stream); ///Test for equality between two YOGMessage bool operator==(const YOGMessage& rhs) const; bool operator!=(const YOGMessage& rhs) const; private: YOGMessageType messageType; std::string message; std::string sender; }; #endif