summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-02-28 01:57:34 +0100
committerkobewi <kobewi4e@gmail.com>2022-09-05 23:08:28 +0200
commita3309215c200dff1cb8930cbdf83dbc0cff6d491 (patch)
tree120a677c3c21e4f108cfc256b87db2067fec0024 /editor/editor_data.cpp
parentb5c053321c89217b1cae0d4670d66a1af0c68bc8 (diff)
downloadredot-engine-a3309215c200dff1cb8930cbdf83dbc0cff6d491.tar.gz
Improve handling of custom types
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r--editor/editor_data.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp
index 231ae198d2..227e1b28e2 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++) {