Add opFixArray

This commit is contained in:
Vasilii Rogin 2023-04-20 02:53:49 +03:00
parent a51ece60ac
commit 1d3e61f346
3 changed files with 14 additions and 0 deletions

View File

@ -145,6 +145,11 @@ void FreeArray(ArrayId array_id)
arrays.erase(array_id);
}
void FixArray(ArrayId id)
{
temporaryArrays.erase(id);
}
void DeleteAllTempArrays()
{
for (auto it = temporaryArrays.begin(); it != temporaryArrays.end(); ++it) {

View File

@ -21,6 +21,7 @@ int LenArray(ArrayId array_id);
ProgramValue GetArray(ArrayId array_id, const SFallScriptValue& key);
void SetArray(ArrayId array_id, const SFallScriptValue& key, const SFallScriptValue& val, bool allowUnset);
void FreeArray(ArrayId array_id);
void FixArray(ArrayId id);
void DeleteAllTempArrays();
}
#endif /* SFALL_ARRAYS */

View File

@ -317,6 +317,13 @@ static void opTempArray(Program* program)
programStackPushInteger(program, array_id);
}
// fix_array
static void opFixArray(Program* program)
{
auto array_id = programStackPopInteger(program);
FixArray(array_id);
}
// set_array
static void opSetArray(Program* program)
{
@ -410,6 +417,7 @@ void sfallOpcodesInit()
interpreterRegisterOpcode(0x8230, opFreeArray);
interpreterRegisterOpcode(0x8231, opLenArray);
interpreterRegisterOpcode(0x8233, opTempArray);
interpreterRegisterOpcode(0x8233, opFixArray);
interpreterRegisterOpcode(0x8237, opParseInt);
interpreterRegisterOpcode(0x824F, opGetStringLength);
interpreterRegisterOpcode(0x8256, opGetArrayKey);