supercell-wx/wxdata/include/scwx/wsr88d/rpg/linked_vector_packet.hpp
2022-08-16 23:33:55 -05:00

46 lines
994 B
C++

#pragma once
#include <scwx/wsr88d/rpg/packet.hpp>
#include <cstdint>
#include <memory>
#include <optional>
namespace scwx
{
namespace wsr88d
{
namespace rpg
{
class LinkedVectorPacketImpl;
class LinkedVectorPacket : public Packet
{
public:
explicit LinkedVectorPacket();
~LinkedVectorPacket();
LinkedVectorPacket(const LinkedVectorPacket&) = delete;
LinkedVectorPacket& operator=(const LinkedVectorPacket&) = delete;
LinkedVectorPacket(LinkedVectorPacket&&) noexcept;
LinkedVectorPacket& operator=(LinkedVectorPacket&&) noexcept;
uint16_t packet_code() const override;
uint16_t length_of_block() const;
std::optional<uint16_t> value_of_vector() const;
size_t data_size() const override;
bool Parse(std::istream& is) override;
static std::shared_ptr<LinkedVectorPacket> Create(std::istream& is);
private:
std::unique_ptr<LinkedVectorPacketImpl> p;
};
} // namespace rpg
} // namespace wsr88d
} // namespace scwx