add static function to convert ints to names

This commit is contained in:
Ricardo Luís Vaz Silva 2025-02-08 15:47:08 -03:00
parent f2ecdc5d96
commit bfd9b6f720
3 changed files with 17 additions and 0 deletions

View file

@ -1796,3 +1796,16 @@ DEFINE_FIELD_NAMED_X(ScriptScanner, DScriptScanner, wrapped.Number, Number);
DEFINE_FIELD_NAMED_X(ScriptScanner, DScriptScanner, wrapped.End, End);
DEFINE_FIELD_NAMED_X(ScriptScanner, DScriptScanner, wrapped.Crossed, Crossed);
DEFINE_FIELD_NAMED_X(ScriptScanner, DScriptScanner, wrapped.ParseError, ParseError);
static int ValidateNameIndex(int index)
{
return FName::IsValidName(index) ? index : 0;
}
DEFINE_ACTION_FUNCTION_NATIVE(DObject, ValidateNameIndex, ValidateNameIndex)
{
PARAM_PROLOGUE;
PARAM_INT(index);
ACTION_RETURN_INT(ValidateNameIndex(index));
}

View file

@ -76,6 +76,8 @@ public:
bool IsValidName() const { return (unsigned)Index < (unsigned)NameData.NumNames; }
static bool IsValidName(int index) { return index >= 0 && index < NameData.NumNames; }
// Note that the comparison operators compare the names' indices, not
// their text, so they cannot be used to do a lexicographical sort.
bool operator == (const FName &other) const { return Index == other.Index; }

View file

@ -766,6 +766,8 @@ class Object native
private native static void HandleDeprecatedFlags(Object obj, bool set, int index);
private native static bool CheckDeprecatedFlags(Object obj, int index);
native static Name ValidateNameIndex(int index);
native static uint MSTime();
native static double MSTimeF();
native vararg static void ThrowAbortException(String fmt, ...);