diff options
author | Micky <micheledevita2@gmail.com> | 2024-01-04 00:20:55 +0100 |
---|---|---|
committer | Micky <micheledevita2@gmail.com> | 2024-02-29 20:48:06 +0100 |
commit | 920dff34452a1beec08e0d9bc7f0343d21154c62 (patch) | |
tree | ea05bf60ef161e69bb6d74c7d3fda00e0b42382e /core | |
parent | fbaab3cf537a892295aabdfd02c8052e370e6669 (diff) | |
download | redot-engine-920dff34452a1beec08e0d9bc7f0343d21154c62.tar.gz |
Add autocompletion for ClassDB & AudioServer
Diffstat (limited to 'core')
-rw-r--r-- | core/core_bind.cpp | 24 | ||||
-rw-r--r-- | core/core_bind.h | 4 |
2 files changed, 28 insertions, 0 deletions
diff --git a/core/core_bind.cpp b/core/core_bind.cpp index d91c659d1e..18b64093a1 100644 --- a/core/core_bind.cpp +++ b/core/core_bind.cpp @@ -1512,6 +1512,30 @@ bool ClassDB::is_class_enabled(StringName p_class) const { return ::ClassDB::is_class_enabled(p_class); } +#ifdef TOOLS_ENABLED +void ClassDB::get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const { + const String pf = p_function; + bool first_argument_is_class = false; + if (p_idx == 0) { + first_argument_is_class = (pf == "get_inheriters_from_class" || pf == "get_parent_class" || + pf == "class_exists" || pf == "can_instantiate" || pf == "instantiate" || + pf == "class_has_signal" || pf == "class_get_signal" || pf == "class_get_signal_list" || + pf == "class_get_property_list" || pf == "class_get_property" || pf == "class_set_property" || + pf == "class_has_method" || pf == "class_get_method_list" || + pf == "class_get_integer_constant_list" || pf == "class_has_integer_constant" || pf == "class_get_integer_constant" || + pf == "class_has_enum" || pf == "class_get_enum_list" || pf == "class_get_enum_constants" || pf == "class_get_integer_constant_enum" || + pf == "is_class_enabled"); + } + if (first_argument_is_class || pf == "is_parent_class") { + for (const String &E : get_class_list()) { + r_options->push_back(E.quote()); + } + } + + Object::get_argument_options(p_function, p_idx, r_options); +} +#endif + void ClassDB::_bind_methods() { ::ClassDB::bind_method(D_METHOD("get_class_list"), &ClassDB::get_class_list); ::ClassDB::bind_method(D_METHOD("get_inheriters_from_class", "class"), &ClassDB::get_inheriters_from_class); diff --git a/core/core_bind.h b/core/core_bind.h index 715e26cf23..c88ba1aecb 100644 --- a/core/core_bind.h +++ b/core/core_bind.h @@ -457,6 +457,10 @@ public: bool is_class_enabled(StringName p_class) const; +#ifdef TOOLS_ENABLED + virtual void get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const override; +#endif + ClassDB() {} ~ClassDB() {} }; |