mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-04 17:08:44 +00:00
add static function to convert ints to names
This commit is contained in:
parent
f2ecdc5d96
commit
bfd9b6f720
3 changed files with 17 additions and 0 deletions
|
@ -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));
|
||||
}
|
||||
|
|
|
@ -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; }
|
||||
|
|
|
@ -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, ...);
|
||||
|
|
Loading…
Reference in a new issue