/* * ORXONOX - the hottest 3D action shooter ever to exist * > www.orxonox.net < * * * License notice: * * 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 2 * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: * Oliver Scheuss , (C) 2008 * Co-authors: * ... * */ #include "Chat.h" #include #include #include "network/Host.h" namespace orxonox { namespace packet { #define PACKET_FLAGS_CHAT PacketFlag::Reliable #define _PACKETID 0 const int _PLAYERID = _PACKETID + sizeof(Type::Value); #define _MESSAGELENGTH _PLAYERID + sizeof(uint32_t) #define _MESSAGE _MESSAGELENGTH + sizeof(uint32_t) Chat::Chat( const std::string& message, unsigned int playerID ) : Packet() { flags_ = flags_ | PACKET_FLAGS_CHAT; messageLength_ = message.length()+1; data_=new unsigned char[ getSize() ]; *(Type::Value *)(data_ + _PACKETID ) = Type::Chat; *(unsigned int *)(data_ + _PLAYERID ) = playerID; *(unsigned int *)(data_ + _MESSAGELENGTH ) = messageLength_; memcpy( data_+_MESSAGE, static_cast(const_cast(message.c_str())), messageLength_ ); } Chat::Chat( uint8_t* data, unsigned int clientID ) : Packet(data, clientID) { messageLength_ = *(uint32_t *)(data + _MESSAGELENGTH ); } Chat::~Chat() { } unsigned int Chat::getSize() const{ return _MESSAGE + messageLength_; } bool Chat::process(){ bool b = Host::incomingChat(std::string((const char*)data_+_MESSAGE), *(uint32_t *)(data_+_PLAYERID)); delete this; return b; } unsigned char *Chat::getMessage(){ return data_ + _MESSAGE; } } //namespace packet } //namespace orxonox