mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-24 23:49:29 -04:00
92 lines
2.8 KiB
C++
92 lines
2.8 KiB
C++
/*
|
|
* Copyright (C) 2008-2019 TrinityCore <https://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef TRINITYCORE_WORLDPACKET_H
|
|
#define TRINITYCORE_WORLDPACKET_H
|
|
|
|
#include "Common.h"
|
|
#include "Opcodes.h"
|
|
#include "ByteBuffer.h"
|
|
#include <chrono>
|
|
|
|
class WorldPacket : public ByteBuffer
|
|
{
|
|
public:
|
|
// just container for later use
|
|
WorldPacket() : ByteBuffer(0), m_opcode(NULL_OPCODE)
|
|
{
|
|
}
|
|
|
|
WorldPacket(uint16 opcode, size_t res = 200) : ByteBuffer(res),
|
|
m_opcode(opcode) { }
|
|
|
|
WorldPacket(WorldPacket&& packet) : ByteBuffer(std::move(packet)), m_opcode(packet.m_opcode)
|
|
{
|
|
}
|
|
|
|
WorldPacket(WorldPacket&& packet, std::chrono::steady_clock::time_point receivedTime) : ByteBuffer(std::move(packet)), m_opcode(packet.m_opcode), m_receivedTime(receivedTime)
|
|
{
|
|
}
|
|
|
|
WorldPacket(WorldPacket const& right) : ByteBuffer(right), m_opcode(right.m_opcode)
|
|
{
|
|
}
|
|
|
|
WorldPacket& operator=(WorldPacket const& right)
|
|
{
|
|
if (this != &right)
|
|
{
|
|
m_opcode = right.m_opcode;
|
|
ByteBuffer::operator=(right);
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
WorldPacket& operator=(WorldPacket&& right)
|
|
{
|
|
if (this != &right)
|
|
{
|
|
m_opcode = right.m_opcode;
|
|
ByteBuffer::operator=(std::move(right));
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
WorldPacket(uint16 opcode, MessageBuffer&& buffer) : ByteBuffer(std::move(buffer)), m_opcode(opcode) { }
|
|
|
|
void Initialize(uint16 opcode, size_t newres = 200)
|
|
{
|
|
clear();
|
|
_storage.reserve(newres);
|
|
m_opcode = opcode;
|
|
}
|
|
|
|
uint16 GetOpcode() const { return m_opcode; }
|
|
void SetOpcode(uint16 opcode) { m_opcode = opcode; }
|
|
|
|
std::chrono::steady_clock::time_point GetReceivedTime() const { return m_receivedTime; }
|
|
|
|
protected:
|
|
uint16 m_opcode;
|
|
std::chrono::steady_clock::time_point m_receivedTime; // only set for a specific set of opcodes, for performance reasons.
|
|
};
|
|
|
|
#endif
|