isle/LEGO1/mxvariabletable.cpp

67 lines
1.3 KiB
C++
Raw Normal View History

#include "mxvariabletable.h"
// OFFSET: LEGO1 0x100b7330
2023-10-24 19:38:27 -04:00
MxS8 MxVariableTable::Compare(MxVariable* p_var0, MxVariable* p_var1)
{
2023-10-24 19:38:27 -04:00
return strcmp(p_var0->GetKey()->GetData(), p_var1->GetKey()->GetData());
}
// OFFSET: LEGO1 0x100b7370
2023-10-24 19:38:27 -04:00
MxU32 MxVariableTable::Hash(MxVariable* p_var)
{
2023-10-24 19:38:27 -04:00
const char* str = p_var->GetKey()->GetData();
MxU32 value = 0;
2023-10-24 19:38:27 -04:00
for (int i = 0; str[i]; i++) {
value += str[i];
}
return value;
}
// OFFSET: LEGO1 0x100b73a0
2023-10-24 19:38:27 -04:00
void MxVariableTable::SetVariable(const char* p_key, const char* p_value)
{
2023-10-24 19:38:27 -04:00
MxHashTableCursor<MxVariable> cursor(this);
MxVariable* var = new MxVariable(p_key, p_value);
2023-10-24 19:38:27 -04:00
if (cursor.Find(var)) {
delete var;
cursor.GetMatch(var);
var->SetValue(p_value);
}
else {
MxHashTable<MxVariable>::Add(var);
}
}
// OFFSET: LEGO1 0x100b7740
2023-10-24 19:38:27 -04:00
void MxVariableTable::SetVariable(MxVariable* var)
{
2023-10-24 19:38:27 -04:00
MxHashTableCursor<MxVariable> cursor(this);
MxBool found = cursor.Find(var);
2023-10-24 19:38:27 -04:00
if (found)
cursor.DeleteMatch();
2023-10-24 19:38:27 -04:00
MxHashTable<MxVariable>::Add(var);
}
// OFFSET: LEGO1 0x100b78f0
2023-10-24 19:38:27 -04:00
const char* MxVariableTable::GetVariable(const char* p_key)
{
2023-10-24 19:38:27 -04:00
const char* value = "";
MxHashTableCursor<MxVariable> cursor(this);
MxVariable* var = new MxVariable(p_key);
MxBool found = cursor.Find(var);
delete var;
if (found) {
cursor.GetMatch(var);
value = var->GetValue()->GetData();
}
2023-10-24 19:38:27 -04:00
return value;
}