Make enum/constant binds 64-bit.
This commit is contained in:
@ -228,7 +228,7 @@ uint64_t ClassDB::get_api_hash(APIType p_api) {
|
||||
|
||||
List<StringName> snames;
|
||||
|
||||
for (const KeyValue<StringName, int> &F : t->constant_map) {
|
||||
for (const KeyValue<StringName, int64_t> &F : t->constant_map) {
|
||||
snames.push_back(F.key);
|
||||
}
|
||||
|
||||
@ -536,7 +536,7 @@ MethodBind *ClassDB::get_method(const StringName &p_class, const StringName &p_n
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void ClassDB::bind_integer_constant(const StringName &p_class, const StringName &p_enum, const StringName &p_name, int p_constant) {
|
||||
void ClassDB::bind_integer_constant(const StringName &p_class, const StringName &p_enum, const StringName &p_name, int64_t p_constant) {
|
||||
OBJTYPE_WLOCK;
|
||||
|
||||
ClassInfo *type = classes.getptr(p_class);
|
||||
@ -583,7 +583,7 @@ void ClassDB::get_integer_constant_list(const StringName &p_class, List<String>
|
||||
}
|
||||
#else
|
||||
|
||||
for (const KeyValue<StringName, int> &E : type->constant_map) {
|
||||
for (const KeyValue<StringName, int64_t> &E : type->constant_map) {
|
||||
p_constants->push_back(E.key);
|
||||
}
|
||||
|
||||
@ -596,13 +596,13 @@ void ClassDB::get_integer_constant_list(const StringName &p_class, List<String>
|
||||
}
|
||||
}
|
||||
|
||||
int ClassDB::get_integer_constant(const StringName &p_class, const StringName &p_name, bool *p_success) {
|
||||
int64_t ClassDB::get_integer_constant(const StringName &p_class, const StringName &p_name, bool *p_success) {
|
||||
OBJTYPE_RLOCK;
|
||||
|
||||
ClassInfo *type = classes.getptr(p_class);
|
||||
|
||||
while (type) {
|
||||
int *constant = type->constant_map.getptr(p_name);
|
||||
int64_t *constant = type->constant_map.getptr(p_name);
|
||||
if (constant) {
|
||||
if (p_success) {
|
||||
*p_success = true;
|
||||
@ -1066,7 +1066,7 @@ bool ClassDB::get_property(Object *p_object, const StringName &p_property, Varia
|
||||
return true;
|
||||
}
|
||||
|
||||
const int *c = check->constant_map.getptr(p_property); //constants count
|
||||
const int64_t *c = check->constant_map.getptr(p_property); //constants count
|
||||
if (c) {
|
||||
r_value = *c;
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user