mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-17 10:55:43 +00:00
committed by
GitHub
parent
f2a5a12bd0
commit
0556f0b3d5
@@ -18,6 +18,7 @@
|
||||
#ifndef AllPackets_h__
|
||||
#define AllPackets_h__
|
||||
|
||||
#include "TotemPackets.h"
|
||||
#include "BankPackets.h"
|
||||
#include "GuildPackets.h"
|
||||
|
||||
|
||||
33
src/server/game/Server/Packets/TotemPackets.cpp
Normal file
33
src/server/game/Server/Packets/TotemPackets.cpp
Normal 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;
|
||||
}
|
||||
54
src/server/game/Server/Packets/TotemPackets.h
Normal file
54
src/server/game/Server/Packets/TotemPackets.h
Normal 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__
|
||||
Reference in New Issue
Block a user