refactor(Core/Packets): Totem (#9451)

* Totem

* Update WorldSession.h
This commit is contained in:
IntelligentQuantum
2021-12-31 16:53:38 +03:30
committed by GitHub
parent f2a5a12bd0
commit 0556f0b3d5
6 changed files with 106 additions and 15 deletions

View File

@@ -18,6 +18,7 @@
#ifndef AllPackets_h__
#define AllPackets_h__
#include "TotemPackets.h"
#include "BankPackets.h"
#include "GuildPackets.h"

View File

@@ -0,0 +1,33 @@
/*
* This file is part of the AzerothCore Project. See AUTHORS file for Copyright information
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Affero 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 Affero 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/>.
*/
#include "TotemPackets.h"
void WorldPackets::Totem::TotemDestroyed::Read()
{
_worldPacket >> Slot;
}
WorldPacket const* WorldPackets::Totem::TotemCreated::Write()
{
_worldPacket << Slot;
_worldPacket << Totem;
_worldPacket << Duration;
_worldPacket << SpellID;
return &_worldPacket;
}

View File

@@ -0,0 +1,54 @@
/*
* This file is part of the AzerothCore Project. See AUTHORS file for Copyright information
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Affero 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 Affero 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 TotemPackets_h__
#define TotemPackets_h__
#include "Packet.h"
#include "ObjectGuid.h"
namespace WorldPackets
{
namespace Totem
{
class TotemDestroyed final : public ClientPacket
{
public:
TotemDestroyed(WorldPacket&& packet) : ClientPacket(CMSG_TOTEM_DESTROYED, std::move(packet)) { }
void Read() override;
uint8 Slot = 0;
};
class TotemCreated final : public ServerPacket
{
public:
TotemCreated() : ServerPacket(SMSG_TOTEM_CREATED, 1 + 8 + 4 + 4) { }
WorldPacket const* Write() override;
uint8 Slot = 0;
ObjectGuid Totem;
uint32 Duration = 0;
uint32 SpellID = 0;
};
}
}
#endif // TotemPackets_h__