diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-07 17:54:17 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-07 17:54:17 +0200 |
commit | 2b6e043491c746c069ceaa2f766a375ff0f30a64 (patch) | |
tree | 4cf4e5678f3b76d1bb9f3154701fad6d0d82c708 /editor/editor_data.cpp | |
parent | 0bd4a421bd6b0ac602b9033e31b8e781ed799715 (diff) | |
parent | a3309215c200dff1cb8930cbdf83dbc0cff6d491 (diff) | |
download | redot-engine-2b6e043491c746c069ceaa2f766a375ff0f30a64.tar.gz |
Merge pull request #58617 from KoBeWi/custom_something
Improve handling of custom types
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r-- | editor/editor_data.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp index 1febec2c04..d1ea0f2814 100644 --- a/editor/editor_data.cpp +++ b/editor/editor_data.cpp @@ -509,6 +509,32 @@ Variant EditorData::instance_custom_type(const String &p_type, const String &p_i return Variant(); } +const EditorData::CustomType *EditorData::get_custom_type_by_name(const String &p_type) const { + for (const KeyValue<String, Vector<CustomType>> &E : custom_types) { + for (const CustomType &F : E.value) { + if (F.name == p_type) { + return &F; + } + } + } + return nullptr; +} + +const EditorData::CustomType *EditorData::get_custom_type_by_path(const String &p_path) const { + for (const KeyValue<String, Vector<CustomType>> &E : custom_types) { + for (const CustomType &F : E.value) { + if (F.script->get_path() == p_path) { + return &F; + } + } + } + return nullptr; +} + +bool EditorData::is_type_recognized(const String &p_type) const { + return ClassDB::class_exists(p_type) || ScriptServer::is_global_class(p_type) || get_custom_type_by_name(p_type); +} + void EditorData::remove_custom_type(const String &p_type) { for (KeyValue<String, Vector<CustomType>> &E : custom_types) { for (int i = 0; i < E.value.size(); i++) { |