mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-20 16:15:43 +00:00
55 lines
957 B
C++
55 lines
957 B
C++
#include "CommonT5.h"
|
|
|
|
#include <cctype>
|
|
|
|
int CommonT5::Com_HashKey(const char* str, const int maxLen)
|
|
{
|
|
if (str == nullptr)
|
|
return 0;
|
|
|
|
int hash = 0;
|
|
for (int i = 0; i < maxLen; i++)
|
|
{
|
|
if (str[i] == '\0')
|
|
break;
|
|
|
|
hash += str[i] * (0x77 + i);
|
|
}
|
|
|
|
return hash ^ ((hash ^ (hash >> 10)) >> 10);
|
|
}
|
|
|
|
int CommonT5::Com_HashString(const char* str)
|
|
{
|
|
if (!str)
|
|
return 0;
|
|
|
|
auto result = 0x1505;
|
|
auto offset = 0;
|
|
while (str[offset])
|
|
{
|
|
const auto c = tolower(str[offset++]);
|
|
result = c + 33 * result;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
int CommonT5::Com_HashString(const char* str, const int len)
|
|
{
|
|
if (!str)
|
|
return 0;
|
|
|
|
int result = 0x1505;
|
|
int offset = 0;
|
|
while (str[offset])
|
|
{
|
|
if (len > 0 && offset >= len)
|
|
break;
|
|
|
|
const int c = tolower(str[offset++]);
|
|
result = c + 33 * result;
|
|
}
|
|
|
|
return result;
|
|
} |