mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 16:40:05 +00:00
Wind barb data packet
This commit is contained in:
parent
5dcf65b79c
commit
6d4428b8e0
4 changed files with 199 additions and 0 deletions
44
wxdata/include/scwx/wsr88d/rpg/wind_barb_data_packet.hpp
Normal file
44
wxdata/include/scwx/wsr88d/rpg/wind_barb_data_packet.hpp
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
#pragma once
|
||||
|
||||
#include <scwx/wsr88d/rpg/packet.hpp>
|
||||
|
||||
#include <cstdint>
|
||||
#include <memory>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace wsr88d
|
||||
{
|
||||
namespace rpg
|
||||
{
|
||||
|
||||
class WindBarbDataPacketImpl;
|
||||
|
||||
class WindBarbDataPacket : public Packet
|
||||
{
|
||||
public:
|
||||
explicit WindBarbDataPacket();
|
||||
~WindBarbDataPacket();
|
||||
|
||||
WindBarbDataPacket(const WindBarbDataPacket&) = delete;
|
||||
WindBarbDataPacket& operator=(const WindBarbDataPacket&) = delete;
|
||||
|
||||
WindBarbDataPacket(WindBarbDataPacket&&) noexcept;
|
||||
WindBarbDataPacket& operator=(WindBarbDataPacket&&) noexcept;
|
||||
|
||||
uint16_t packet_code() const;
|
||||
uint16_t length_of_block() const;
|
||||
|
||||
size_t data_size() const override;
|
||||
|
||||
bool Parse(std::istream& is) override;
|
||||
|
||||
static std::shared_ptr<WindBarbDataPacket> Create(std::istream& is);
|
||||
|
||||
private:
|
||||
std::unique_ptr<WindBarbDataPacketImpl> p;
|
||||
};
|
||||
|
||||
} // namespace rpg
|
||||
} // namespace wsr88d
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue