#pragma once #ifndef _WIN32 #include #include #include #include #include #include #include #include #include #else #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN 1 #endif #ifndef NOMINMAX #define NOMINMAX #endif #include #include #include "winsupport.hpp" #if UNICODE #define CARD_UCS2 1 #endif #endif #include #include #include #include #include #include #include "WideStringConvert.hpp" #undef bswap16 #undef bswap32 #undef bswap64 #ifndef ENABLE_BITWISE_ENUM #define ENABLE_BITWISE_ENUM(type) \ constexpr type operator|(type a, type b) { \ using T = std::underlying_type_t; \ return type(static_cast(a) | static_cast(b)); \ } \ constexpr type operator&(type a, type b) { \ using T = std::underlying_type_t; \ return type(static_cast(a) & static_cast(b)); \ } \ inline type& operator|=(type& a, const type& b) { \ using T = std::underlying_type_t; \ a = type(static_cast(a) | static_cast(b)); \ return a; \ } \ inline type& operator&=(type& a, const type& b) { \ using T = std::underlying_type_t; \ a = type(static_cast(a) & static_cast(b)); \ return a; \ } \ inline type operator~(const type& key) { \ using T = std::underlying_type_t; \ return type(~static_cast(key)); \ } #endif namespace kabufuda { /* Type-sensitive byte swappers */ template static inline T bswap16(T val) { #if __GNUC__ return __builtin_bswap16(val); #elif _WIN32 return _byteswap_ushort(val); #else return (val = (val << 8) | ((val >> 8) & 0xFF)); #endif } template static inline T bswap32(T val) { #if __GNUC__ return __builtin_bswap32(val); #elif _WIN32 return _byteswap_ulong(val); #else val = (val & 0x0000FFFF) << 16 | (val & 0xFFFF0000) >> 16; val = (val & 0x00FF00FF) << 8 | (val & 0xFF00FF00) >> 8; return val; #endif } template static inline T bswap64(T val) { #if __GNUC__ return __builtin_bswap64(val); #elif _WIN32 return _byteswap_uint64(val); #else return ((val & 0xFF00000000000000ULL) >> 56) | ((val & 0x00FF000000000000ULL) >> 40) | ((val & 0x0000FF0000000000ULL) >> 24) | ((val & 0x000000FF00000000ULL) >> 8) | ((val & 0x00000000FF000000ULL) << 8) | ((val & 0x0000000000FF0000ULL) << 24) | ((val & 0x000000000000FF00ULL) << 40) | ((val & 0x00000000000000FFULL) << 56); #endif } #if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ static inline int16_t SBig(int16_t val) { return bswap16(val); } static inline uint16_t SBig(uint16_t val) { return bswap16(val); } static inline int32_t SBig(int32_t val) { return bswap32(val); } static inline uint32_t SBig(uint32_t val) { return bswap32(val); } static inline int64_t SBig(int64_t val) { return bswap64(val); } static inline uint64_t SBig(uint64_t val) { return bswap64(val); } static inline float SBig(float val) { int32_t ival = bswap32(*((int32_t*)(&val))); return *((float*)(&ival)); } static inline double SBig(double val) { int64_t ival = bswap64(*((int64_t*)(&val))); return *((double*)(&ival)); } #ifndef SBIG #define SBIG(q) (((q)&0x000000FF) << 24 | ((q)&0x0000FF00) << 8 | ((q)&0x00FF0000) >> 8 | ((q)&0xFF000000) >> 24) #endif static inline int16_t SLittle(int16_t val) { return val; } static inline uint16_t SLittle(uint16_t val) { return val; } static inline int32_t SLittle(int32_t val) { return val; } static inline uint32_t SLittle(uint32_t val) { return val; } static inline int64_t SLittle(int64_t val) { return val; } static inline uint64_t SLittle(uint64_t val) { return val; } static inline float SLittle(float val) { return val; } static inline double SLittle(double val) { return val; } #ifndef SLITTLE #define SLITTLE(q) (q) #endif #else static inline int16_t SLittle(int16_t val) { return bswap16(val); } static inline uint16_t SLittle(uint16_t val) { return bswap16(val); } static inline int32_t SLittle(int32_t val) { return bswap32(val); } static inline uint32_t SLittle(uint32_t val) { return bswap32(val); } static inline int64_t SLittle(int64_t val) { return bswap64(val); } static inline uint64_t SLittle(uint64_t val) { return bswap64(val); } static inline float SLittle(float val) { int32_t ival = bswap32(*((int32_t*)(&val))); return *((float*)(&ival)); } static inline double SLittle(double val) { int64_t ival = bswap64(*((int64_t*)(&val))); return *((double*)(&ival)); } #ifndef SLITTLE #define SLITTLE(q) (((q)&0x000000FF) << 24 | ((q)&0x0000FF00) << 8 | ((q)&0x00FF0000) >> 8 | ((q)&0xFF000000) >> 24) #endif static inline int16_t SBig(int16_t val) { return val; } static inline uint16_t SBig(uint16_t val) { return val; } static inline int32_t SBig(int32_t val) { return val; } static inline uint32_t SBig(uint32_t val) { return val; } static inline int64_t SBig(int64_t val) { return val; } static inline uint64_t SBig(uint64_t val) { return val; } static inline float SBig(float val) { return val; } static inline double SBig(double val) { return val; } #ifndef SBIG #define SBIG(q) (q) #endif #endif #if CARD_UCS2 typedef wchar_t SystemChar; static inline size_t StrLen(const SystemChar* str) { return wcslen(str); } typedef std::wstring SystemString; typedef std::wstring_view SystemStringView; static inline void ToLower(SystemString& str) { std::transform(str.begin(), str.end(), str.begin(), towlower); } static inline void ToUpper(SystemString& str) { std::transform(str.begin(), str.end(), str.begin(), towupper); } class SystemUTF8Conv { std::string m_utf8; public: explicit SystemUTF8Conv(SystemStringView str) : m_utf8(WideToUTF8(str)) {} std::string_view str() const { return m_utf8; } const char* c_str() const { return m_utf8.c_str(); } std::string operator+(std::string_view other) const { return m_utf8 + other.data(); } }; inline std::string operator+(std::string_view lhs, const SystemUTF8Conv& rhs) { return std::string(lhs) + rhs.c_str(); } class SystemStringConv { std::wstring m_sys; public: explicit SystemStringConv(std::string_view str) : m_sys(UTF8ToWide(str)) {} SystemStringView sys_str() const { return m_sys; } const SystemChar* c_str() const { return m_sys.c_str(); } std::wstring operator+(const std::wstring_view other) const { return m_sys + other.data(); } }; inline std::wstring operator+(const std::wstring_view lhs, const SystemStringConv& rhs) { return std::wstring(lhs) + rhs.c_str(); } #ifndef _SYS_STR #define _SYS_STR(val) L##val #endif typedef struct _stat Sstat; #else typedef char SystemChar; static inline size_t StrLen(const SystemChar* str) { return strlen(str); } typedef std::string SystemString; typedef std::string_view SystemStringView; static inline void ToLower(SystemString& str) { std::transform(str.begin(), str.end(), str.begin(), tolower); } static inline void ToUpper(SystemString& str) { std::transform(str.begin(), str.end(), str.begin(), toupper); } class SystemUTF8Conv { std::string_view m_utf8; public: explicit SystemUTF8Conv(SystemStringView str) : m_utf8(str) {} std::string_view str() const { return m_utf8; } const char* c_str() const { return m_utf8.data(); } std::string operator+(std::string_view other) const { return std::string(m_utf8) + other.data(); } }; inline std::string operator+(std::string_view lhs, const SystemUTF8Conv& rhs) { return std::string(lhs) + rhs.c_str(); } class SystemStringConv { SystemStringView m_sys; public: explicit SystemStringConv(std::string_view str) : m_sys(str) {} SystemStringView sys_str() const { return m_sys; } const SystemChar* c_str() const { return m_sys.data(); } std::string operator+(std::string_view other) const { return std::string(m_sys) + other.data(); } }; inline std::string operator+(std::string_view lhs, const SystemStringConv& rhs) { return std::string(lhs) + rhs.c_str(); } #ifndef _SYS_STR #define _SYS_STR(val) val #endif typedef struct stat Sstat; #endif uint64_t getGCTime(); #if !defined(S_ISREG) && defined(S_IFMT) && defined(S_IFREG) #define S_ISREG(m) (((m)&S_IFMT) == S_IFREG) #endif #if !defined(S_ISDIR) && defined(S_IFMT) && defined(S_IFDIR) #define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR) #endif static inline int Stat(const SystemChar* path, Sstat* statOut) { #if CARD_UCS2 size_t pos; for (pos = 0; pos < 3 && path[pos] != L'\0'; ++pos) {} if (pos == 2 && path[1] == L':') { SystemChar fixPath[4] = {path[0], L':', L'/', L'\0'}; return _wstat(fixPath, statOut); } return _wstat(path, statOut); #else return stat(path, statOut); #endif } /** * @brief calculateChecksum * @param data * @param len * @param checksum * @param checksumInv */ void calculateChecksumBE(const uint16_t* data, size_t len, uint16_t* checksum, uint16_t* checksumInv); #undef NOFILE enum class ECardResult { CRC_MISMATCH = -1003, /* Extension enum for Retro's CRC check */ FATAL_ERROR = -128, ENCODING = -13, NAMETOOLONG = -12, INSSPACE = -9, NOENT = -8, EXIST = -7, BROKEN = -6, IOERROR = -5, NOFILE = -4, NOCARD = -3, WRONGDEVICE = -2, BUSY = -1, READY = 0 }; } // namespace kabufuda