#ifndef __LDFFORMAT__H__ #define __LDFFORMAT__H__ // Custom Classes #include "dCommonVars.h" #include "GeneralUtils.h" // C++ #include #include #include // RakNet #include "BitStream.h" enum eLDFType { LDF_TYPE_UNKNOWN = -1, //!< Unknown data type LDF_TYPE_UTF_16 = 0, //!< UTF-16 wstring data type LDF_TYPE_S32 = 1, //!< Signed 32-bit data type LDF_TYPE_FLOAT = 3, //!< Float data type LDF_TYPE_DOUBLE = 4, //!< Double data type LDF_TYPE_U32 = 5, //!< Unsigned 32-bit data type LDF_TYPE_BOOLEAN = 7, //!< Boolean data type LDF_TYPE_U64 = 8, //!< Unsigned 64-bit data type (originally signed, templates won't work with both S64 & OBJID LDF_TYPE_OBJID = 9, //!< Signed 64-bit data type (reserved for object IDs) LDF_TYPE_UTF_8 = 13, //!< UTF-8 string data type }; class LDFBaseData { public: virtual ~LDFBaseData() {} virtual void WriteToPacket(RakNet::BitStream& packet) const = 0; virtual const std::u16string& GetKey() const = 0; virtual eLDFType GetValueType() const = 0; /** Gets a string from the key/value pair * @param includeKey Whether or not to include the key in the data * @param includeTypeId Whether or not to include the type id in the data * @return The string representation of the data */ virtual std::string GetString(bool includeKey = true, bool includeTypeId = true) const = 0; virtual std::string GetValueAsString() const = 0; virtual LDFBaseData* Copy() const = 0; /** * Given an input string, return the data as a LDF key. */ static LDFBaseData* DataFromString(const std::string_view& format); }; template class LDFData: public LDFBaseData { private: std::u16string key; T value; //! Writes the key to the packet void WriteKey(RakNet::BitStream& packet) const { packet.Write(this->key.length() * sizeof(uint16_t)); for (uint32_t i = 0; i < this->key.length(); ++i) { packet.Write(this->key[i]); } } //! Writes the value to the packet void WriteValue(RakNet::BitStream& packet) const { packet.Write(this->GetValueType()); packet.Write(this->value); } public: //! Initializer LDFData(const std::u16string& key, const T& value) { this->key = key; this->value = value; } //! Destructor ~LDFData(void) override {} //! Gets the value /*! \return The value */ const T& GetValue(void) const { return this->value; } //! Sets the value /*! \param value The value to set to */ void SetValue(T value) { this->value = value; }; //! Gets the value string /*! \return The value string */ std::string GetValueString(void) const { return ""; } //! Writes the data to a packet /*! \param packet The packet */ void WriteToPacket(RakNet::BitStream& packet) const override { this->WriteKey(packet); this->WriteValue(packet); } //! Gets the key /*! \return The key */ const std::u16string& GetKey(void) const override { return this->key; } //! Gets the LDF Type /*! \return The LDF value type */ eLDFType GetValueType(void) const override { return LDF_TYPE_UNKNOWN; } //! Gets the string data /*! \param includeKey Whether or not to include the key in the data \param includeTypeId Whether or not to include the type id in the data \return The string representation of the data */ std::string GetString(const bool includeKey = true, const bool includeTypeId = true) const override { if (GetValueType() == -1) { return GeneralUtils::UTF16ToWTF8(this->key) + "=-1:"; } std::stringstream stream; if (includeKey) { const std::string& sKey = GeneralUtils::UTF16ToWTF8(this->key, this->key.size()); stream << sKey << '='; } if (includeTypeId) { stream << this->GetValueType() << ':'; } const std::string& sData = this->GetValueString(); stream << sData; return stream.str(); } std::string GetValueAsString() const override { return this->GetValueString(); } LDFBaseData* Copy() const override { return new LDFData(key, value); } inline static const T Default = {}; }; // LDF Types template<> inline eLDFType LDFData::GetValueType(void) const { return LDF_TYPE_UTF_16; }; template<> inline eLDFType LDFData::GetValueType(void) const { return LDF_TYPE_S32; }; template<> inline eLDFType LDFData::GetValueType(void) const { return LDF_TYPE_FLOAT; }; template<> inline eLDFType LDFData::GetValueType(void) const { return LDF_TYPE_DOUBLE; }; template<> inline eLDFType LDFData::GetValueType(void) const { return LDF_TYPE_U32; }; template<> inline eLDFType LDFData::GetValueType(void) const { return LDF_TYPE_BOOLEAN; }; template<> inline eLDFType LDFData::GetValueType(void) const { return LDF_TYPE_U64; }; template<> inline eLDFType LDFData::GetValueType(void) const { return LDF_TYPE_OBJID; }; template<> inline eLDFType LDFData::GetValueType(void) const { return LDF_TYPE_UTF_8; }; // The specialized version for std::u16string (UTF-16) template<> inline void LDFData::WriteValue(RakNet::BitStream& packet) const { packet.Write(this->GetValueType()); packet.Write(this->value.length()); for (uint32_t i = 0; i < this->value.length(); ++i) { packet.Write(this->value[i]); } } // The specialized version for bool template<> inline void LDFData::WriteValue(RakNet::BitStream& packet) const { packet.Write(this->GetValueType()); packet.Write(this->value); } // The specialized version for std::string (UTF-8) template<> inline void LDFData::WriteValue(RakNet::BitStream& packet) const { packet.Write(this->GetValueType()); packet.Write(this->value.length()); for (uint32_t i = 0; i < this->value.length(); ++i) { packet.Write(this->value[i]); } } template<> inline std::string LDFData::GetValueString() const { return GeneralUtils::UTF16ToWTF8(this->value, this->value.size()); } template<> inline std::string LDFData::GetValueString() const { return std::to_string(this->value); } template<> inline std::string LDFData::GetValueString() const { return std::to_string(this->value); } template<> inline std::string LDFData::GetValueString() const { return std::to_string(this->value); } template<> inline std::string LDFData::GetValueString() const { return std::to_string(this->value); } template<> inline std::string LDFData::GetValueString() const { return std::to_string(this->value); } template<> inline std::string LDFData::GetValueString() const { return std::to_string(this->value); } template<> inline std::string LDFData::GetValueString() const { return std::to_string(this->value); } template<> inline std::string LDFData::GetValueString() const { return this->value; } #endif //!__LDFFORMAT__H__