2022-07-20 04:51:05 +00:00
|
|
|
#pragma once
|
|
|
|
|
2024-11-19 02:45:24 +00:00
|
|
|
#include "Amf3.h"
|
2022-07-20 04:51:05 +00:00
|
|
|
#include "BitStream.h"
|
|
|
|
|
2024-11-19 02:45:24 +00:00
|
|
|
#include <memory>
|
2022-07-20 04:51:05 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class AMFDeserialize {
|
2022-07-28 13:39:57 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* Read an AMF3 value from a bitstream.
|
|
|
|
*
|
|
|
|
* @param inStream inStream to read value from.
|
|
|
|
* @return Returns an AMFValue with all the information from the bitStream in it.
|
|
|
|
*/
|
2024-11-19 02:45:24 +00:00
|
|
|
std::unique_ptr<AMFBaseValue> Read(RakNet::BitStream& inStream);
|
2022-07-28 13:39:57 +00:00
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* @brief Private method to read a U29 integer from a bitstream
|
|
|
|
*
|
|
|
|
* @param inStream bitstream to read data from
|
|
|
|
* @return The number as an unsigned 29 bit integer
|
|
|
|
*/
|
2024-02-27 07:29:51 +00:00
|
|
|
static uint32_t ReadU29(RakNet::BitStream& inStream);
|
2022-07-20 04:51:05 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
/**
|
|
|
|
* @brief Reads a string from a bitstream
|
|
|
|
*
|
|
|
|
* @param inStream bitStream to read data from
|
|
|
|
* @return The read string
|
|
|
|
*/
|
2024-02-26 14:17:22 +00:00
|
|
|
const std::string ReadString(RakNet::BitStream& inStream);
|
2022-07-20 04:51:05 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
/**
|
|
|
|
* @brief Read an AMFDouble value from a bitStream
|
|
|
|
*
|
|
|
|
* @param inStream bitStream to read data from
|
|
|
|
* @return Double value represented as an AMFValue
|
|
|
|
*/
|
2024-11-19 02:45:24 +00:00
|
|
|
static std::unique_ptr<AMFDoubleValue> ReadAmfDouble(RakNet::BitStream& inStream);
|
2022-07-20 04:51:05 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
/**
|
|
|
|
* @brief Read an AMFArray from a bitStream
|
|
|
|
*
|
|
|
|
* @param inStream bitStream to read data from
|
|
|
|
* @return Array value represented as an AMFValue
|
|
|
|
*/
|
2024-11-19 02:45:24 +00:00
|
|
|
std::unique_ptr<AMFArrayValue> ReadAmfArray(RakNet::BitStream& inStream);
|
2022-07-20 04:51:05 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
/**
|
|
|
|
* @brief Read an AMFString from a bitStream
|
|
|
|
*
|
|
|
|
* @param inStream bitStream to read data from
|
|
|
|
* @return String value represented as an AMFValue
|
|
|
|
*/
|
2024-11-19 02:45:24 +00:00
|
|
|
std::unique_ptr<AMFStringValue> ReadAmfString(RakNet::BitStream& inStream);
|
2022-07-20 04:51:05 +00:00
|
|
|
|
2022-07-28 13:39:57 +00:00
|
|
|
/**
|
|
|
|
* @brief Read an AMFInteger from a bitStream
|
|
|
|
*
|
|
|
|
* @param inStream bitStream to read data from
|
|
|
|
* @return Integer value represented as an AMFValue
|
|
|
|
*/
|
2024-11-19 02:45:24 +00:00
|
|
|
static std::unique_ptr<AMFIntValue> ReadAmfInteger(RakNet::BitStream& inStream);
|
2022-07-28 13:39:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* List of strings read so far saved to be read by reference.
|
|
|
|
*/
|
|
|
|
std::vector<std::string> accessedElements;
|
2022-07-20 04:51:05 +00:00
|
|
|
};
|