#pragma once // C++ #include #include #include #include #include #include #include #include #include #include "NiPoint3.h" #include "Game.h" #include "dLogger.h" enum eInventoryType : uint32_t; enum class eObjectBits : size_t; enum class eReplicaComponentType : uint32_t; /*! \file GeneralUtils.hpp \brief A namespace containing general utility functions */ //! The general utils namespace namespace GeneralUtils { //! Converts a plain ASCII string to a UTF-16 string /*! \param string The string to convert \param size A size to trim the string to. Default is -1 (No trimming) \return An UTF-16 representation of the string */ std::u16string ASCIIToUTF16(const std::string_view& string, size_t size = -1); //! Converts a UTF-8 String to a UTF-16 string /*! \param string The string to convert \param size A size to trim the string to. Default is -1 (No trimming) \return An UTF-16 representation of the string */ std::u16string UTF8ToUTF16(const std::string_view& string, size_t size = -1); //! Internal, do not use bool _NextUTF8Char(std::string_view& slice, uint32_t& out); //! Converts a UTF-16 string to a UTF-8 string /*! \param string The string to convert \param size A size to trim the string to. Default is -1 (No trimming) \return An UTF-8 representation of the string */ std::string UTF16ToWTF8(const std::u16string_view& string, size_t size = -1); /** * Compares two basic strings but does so ignoring case sensitivity * \param a the first string to compare against the second string * \param b the second string to compare against the first string * @return if the two strings are equal */ bool CaseInsensitiveStringCompare(const std::string& a, const std::string& b); // MARK: Bits // MARK: Bits //! Sets a bit on a numerical value template inline void SetBit(T& value, eObjectBits bits) { static_assert(std::is_arithmetic::value, "Not an arithmetic type"); auto index = static_cast(bits); if (index > (sizeof(T) * 8) - 1) { return; } value |= static_cast(1) << index; } //! Clears a bit on a numerical value template inline void ClearBit(T& value, eObjectBits bits) { static_assert(std::is_arithmetic::value, "Not an arithmetic type"); auto index = static_cast(bits); if (index > (sizeof(T) * 8 - 1)) { return; } value &= ~(static_cast(1) << index); } //! Sets a specific bit in a signed 64-bit integer /*! \param value The value to set the bit for \param index The index of the bit */ int64_t SetBit(int64_t value, uint32_t index); //! Clears a specific bit in a signed 64-bit integer /*! \param value The value to clear the bit from \param index The index of the bit */ int64_t ClearBit(int64_t value, uint32_t index); //! Checks a specific bit in a signed 64-bit integer /*! \parma value The value to check the bit in \param index The index of the bit \return Whether or not the bit is set */ bool CheckBit(int64_t value, uint32_t index); bool ReplaceInString(std::string& str, const std::string& from, const std::string& to); std::u16string ReadWString(RakNet::BitStream* inStream); std::vector SplitString(std::wstring& str, wchar_t delimiter); std::vector SplitString(const std::u16string& str, char16_t delimiter); std::vector SplitString(const std::string& str, char delimiter); std::vector GetSqlFileNamesFromFolder(const std::string& folder); template T Parse(const char* value); template <> inline int32_t Parse(const char* value) { return std::stoi(value); } template <> inline int64_t Parse(const char* value) { return std::stoll(value); } template <> inline float Parse(const char* value) { return std::stof(value); } template <> inline double Parse(const char* value) { return std::stod(value); } template <> inline uint32_t Parse(const char* value) { return std::stoul(value); } template <> inline uint64_t Parse(const char* value) { return std::stoull(value); } template <> inline eInventoryType Parse(const char* value) { return static_cast(std::stoul(value)); } template <> inline eReplicaComponentType Parse(const char* value) { return static_cast(std::stoul(value)); } template bool TryParse(const char* value, T& dst) { try { dst = Parse(value); return true; } catch (...) { return false; } } template T Parse(const std::string& value) { return Parse(value.c_str()); } template bool TryParse(const std::string& value, T& dst) { return TryParse(value.c_str(), dst); } bool TryParse(const std::string& x, const std::string& y, const std::string& z, NiPoint3& dst); template std::u16string to_u16string(T value) { return GeneralUtils::ASCIIToUTF16(std::to_string(value)); } // From boost::hash_combine template void hash_combine(std::size_t& s, const T& v) { std::hash h; s ^= h(v) + 0x9e3779b9 + (s << 6) + (s >> 2); } // MARK: Random Number Generation //! Generates a random number /*! \param min The minimum the generate from \param max The maximum to generate to */ template inline T GenerateRandomNumber(std::size_t min, std::size_t max) { // Make sure it is a numeric type static_assert(std::is_arithmetic::value, "Not an arithmetic type"); if constexpr (std::is_integral_v) { // constexpr only necessary on first statement std::uniform_int_distribution distribution(min, max); return distribution(Game::randomEngine); } else if (std::is_floating_point_v) { std::uniform_real_distribution distribution(min, max); return distribution(Game::randomEngine); } return T(); } // on Windows we need to undef these or else they conflict with our numeric limits calls // DEVELOPERS DEVELOPERS DEVELOPERS DEVELOPERS DEVELOPERS DEVELOPERS DEVELOPERS DEVELOPERS #ifdef _WIN32 #undef min #undef max #endif template inline T GenerateRandomNumber() { // Make sure it is a numeric type static_assert(std::is_arithmetic::value, "Not an arithmetic type"); return GenerateRandomNumber(std::numeric_limits::min(), std::numeric_limits::max()); } }