Small updates

This commit is contained in:
Vasilii Rogin 2023-04-20 02:26:37 +03:00
parent da814a6b76
commit a93c7fba9e
3 changed files with 4 additions and 5 deletions

View File

@ -100,17 +100,16 @@ int LenArray(ArrayId array_id)
return arr->size();
}
ProgramValue GetArray(ArrayId array_id, ProgramValue key)
ProgramValue GetArray(ArrayId array_id, const SFallScriptValue& key)
{
auto arr = get_array_by_id(array_id);
if (arr == nullptr) {
return SFallScriptValue(0);
};
auto skey = SFallScriptValue(key);
// TODO assoc
auto element_index = skey.asInt();
auto element_index = key.asInt();
if (element_index < 0 || element_index >= arr->size()) {
return SFallScriptValue(0);
};

View File

@ -18,7 +18,7 @@ ArrayId CreateArray(int len, uint32_t flags);
ArrayId CreateTempArray(int len, uint32_t flags);
ProgramValue GetArrayKey(ArrayId array_id, int index);
int LenArray(ArrayId array_id);
ProgramValue GetArray(ArrayId array_id, ProgramValue key);
ProgramValue GetArray(ArrayId array_id, const SFallScriptValue& key);
void SetArray(ArrayId array_id, const SFallScriptValue& key, const SFallScriptValue& val, bool allowUnset);
}

View File

@ -326,7 +326,7 @@ static void opGetArray(Program* program)
{
auto key = programStackPopValue(program);
auto arrayId = programStackPopInteger(program);
auto value = GetArray(arrayId, key);
auto value = GetArray(arrayId, SFallScriptValue { key });
programStackPushValue(program, value);
}