stk-code_catmod/src/network/event.cpp

104 lines
3.0 KiB
C++
Raw Normal View History

//
// SuperTuxKart - a fun racing game with go-kart
2015-03-29 20:31:42 -04:00
// Copyright (C) 2013-2015 SuperTuxKart-Team
//
// 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.
#include "network/event.hpp"
#include "network/network_manager.hpp"
#include "utils/log.hpp"
#include <string.h>
2015-10-20 16:51:53 -04:00
/** \brief Constructor
* \param event : The event that needs to be translated.
*/
Event::Event(ENetEvent* event)
{
switch (event->type)
{
case ENET_EVENT_TYPE_CONNECT:
2015-10-20 17:07:00 -04:00
m_type = EVENT_TYPE_CONNECTED;
break;
case ENET_EVENT_TYPE_DISCONNECT:
2015-10-20 17:07:00 -04:00
m_type = EVENT_TYPE_DISCONNECTED;
break;
case ENET_EVENT_TYPE_RECEIVE:
2015-10-20 17:07:00 -04:00
m_type = EVENT_TYPE_MESSAGE;
break;
case ENET_EVENT_TYPE_NONE:
return;
break;
}
2015-10-20 17:07:00 -04:00
if (m_type == EVENT_TYPE_MESSAGE)
{
2015-10-20 16:51:53 -04:00
m_data = NetworkString(std::string((char*)(event->packet->data),
event->packet->dataLength-1));
}
m_packet = NULL;
if (event->packet)
2015-10-20 16:51:53 -04:00
{
m_packet = event->packet;
2015-10-20 16:51:53 -04:00
// we got all we need, just remove the data.
enet_packet_destroy(m_packet);
}
m_packet = NULL;
const std::vector<STKPeer*> &peers = STKHost::get()->getPeers();
m_peer = NULL;
for (unsigned int i = 0; i < peers.size(); i++)
{
2015-10-22 01:03:11 -04:00
if (peers[i]->m_enet_peer == event->peer)
{
m_peer = peers[i];
2015-10-20 16:51:53 -04:00
Log::verbose("Event", "The peer you sought has been found on %p",
2015-10-20 17:07:00 -04:00
m_peer);
return;
}
}
if (m_peer == NULL) // peer does not exist, create him
{
STKPeer* new_peer = new STKPeer();
2015-10-22 01:03:11 -04:00
new_peer->m_enet_peer = event->peer;
m_peer = new_peer;
2015-10-20 16:51:53 -04:00
Log::debug("Event",
"Creating a new peer, address are STKPeer:%p, Peer:%p",
new_peer, event->peer);
}
2015-10-20 16:51:53 -04:00
} // Event(ENetEvent)
2015-10-20 16:51:53 -04:00
// ----------------------------------------------------------------------------
/** \brief Destructor that frees the memory of the package.
*/
Event::~Event()
{
2015-10-20 17:07:00 -04:00
delete m_peer;
m_peer = NULL;
m_packet = NULL;
2015-10-20 16:51:53 -04:00
} // ~Event
2015-10-20 16:51:53 -04:00
// ----------------------------------------------------------------------------
2015-10-20 17:07:00 -04:00
/** \brief Remove bytes at the beginning of data.
* \param size : The number of bytes to remove.
*/
void Event::removeFront(int size)
{
m_data.removeFront(size);
2015-10-20 16:51:53 -04:00
} // removeFront