Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the ability for PackedScenes and GDScripts to have import files #98029

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions core/io/resource_importer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -516,6 +516,24 @@ bool ResourceFormatImporter::are_import_settings_valid(const String &p_path) con
return true;
}

bool ResourceFormatImporter::is_import_read_only(const String &p_path) const {
bool valid = true;
PathAndType pat;
_get_path_and_type(p_path, pat, &valid);

if (!valid) {
return false;
}

for (int i = 0; i < importers.size(); i++) {
if (importers[i]->get_importer_name() == pat.importer) {
return importers[i]->is_read_only();
}
}

return false;
}

String ResourceFormatImporter::get_import_settings_hash() const {
Vector<Ref<ResourceImporter>> sorted_importers = importers;

Expand All @@ -537,8 +555,6 @@ ResourceFormatImporter::ResourceFormatImporter() {
//////////////

void ResourceImporter::_bind_methods() {
BIND_ENUM_CONSTANT(IMPORT_ORDER_DEFAULT);
BIND_ENUM_CONSTANT(IMPORT_ORDER_SCENE);
}

/////
Expand Down
12 changes: 4 additions & 8 deletions core/io/resource_importer.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ class ResourceFormatImporter : public ResourceFormatLoader {
void get_importers(List<Ref<ResourceImporter>> *r_importers);

bool are_import_settings_valid(const String &p_path) const;
bool is_import_read_only(const String &p_path) const;
String get_import_settings_hash() const;

String get_import_base_path(const String &p_for_file) const;
Expand All @@ -117,7 +118,7 @@ class ResourceImporter : public RefCounted {
virtual String get_save_extension() const = 0;
virtual String get_resource_type() const = 0;
virtual float get_priority() const { return 1.0; }
virtual int get_import_order() const { return IMPORT_ORDER_DEFAULT; }
virtual int get_import_order() const { return ResourceFormatLoader::IMPORT_ORDER_DEFAULT; }
virtual int get_format_version() const { return 0; }

struct ImportOption {
Expand All @@ -131,11 +132,6 @@ class ResourceImporter : public RefCounted {
ImportOption() {}
};

enum ImportOrder {
IMPORT_ORDER_DEFAULT = 0,
IMPORT_ORDER_SCENE = 100,
};

virtual bool has_advanced_options() const { return false; }
virtual void show_advanced_options(const String &p_path) {}

Expand All @@ -155,9 +151,9 @@ class ResourceImporter : public RefCounted {
virtual Error import_group_file(const String &p_group_file, const HashMap<String, HashMap<StringName, Variant>> &p_source_file_options, const HashMap<String, String> &p_base_paths) { return ERR_UNAVAILABLE; }
virtual bool are_import_settings_valid(const String &p_path, const Dictionary &p_meta) const { return true; }
virtual String get_import_settings_string() const { return String(); }
};

VARIANT_ENUM_CAST(ResourceImporter::ImportOrder);
virtual bool is_read_only() const { return true; }
};

class ResourceFormatImporterSaver : public ResourceFormatSaver {
GDCLASS(ResourceFormatImporterSaver, ResourceFormatSaver)
Expand Down
20 changes: 16 additions & 4 deletions core/io/resource_loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,9 @@ void ResourceFormatLoader::_bind_methods() {
BIND_ENUM_CONSTANT(CACHE_MODE_REPLACE);
BIND_ENUM_CONSTANT(CACHE_MODE_IGNORE_DEEP);
BIND_ENUM_CONSTANT(CACHE_MODE_REPLACE_DEEP);
BIND_ENUM_CONSTANT(IMPORT_ORDER_LOW_PRIORITY);
BIND_ENUM_CONSTANT(IMPORT_ORDER_DEFAULT);
BIND_ENUM_CONSTANT(IMPORT_ORDER_SCENE);

GDVIRTUAL_BIND(_get_recognized_extensions);
GDVIRTUAL_BIND(_recognize_path, "path", "type");
Expand Down Expand Up @@ -284,17 +287,26 @@ Ref<Resource> ResourceLoader::_load(const String &p_path, const String &p_origin
// Try all loaders and pick the first match for the type hint
bool found = false;
Ref<Resource> res;
int foundIndex = -1;
int importOrder = -1;
for (int i = 0; i < loader_count; i++) {
if (!loader[i]->recognize_path(p_path, p_type_hint)) {
continue;
}
found = true;
res = loader[i]->load(p_path, original_path, r_error, p_use_sub_threads, r_progress, p_cache_mode);
if (!res.is_null()) {
break;

int newImportOrder = loader[i]->get_import_order(p_path);

if (newImportOrder > importOrder) {
foundIndex = i;
importOrder = newImportOrder;
found = true;
}
}

if (found) {
res = loader[foundIndex]->load(p_path, original_path, r_error, p_use_sub_threads, r_progress, p_cache_mode);
}

load_paths_stack.resize(load_paths_stack.size() - 1);
res_ref_overrides.erase(load_nesting);
load_nesting--;
Expand Down
15 changes: 14 additions & 1 deletion core/io/resource_loader.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,18 @@ class ResourceFormatLoader : public RefCounted {
CACHE_MODE_REPLACE_DEEP,
};

/**
* Implement get_import_order() in your import class
* and return a value greater than 1 to override Godot's default importers and/or loaders.
* Use IMPORT_ORDER_LOW_PRIORITY to have Godot default importers and/or loaders override yours
* (e.g. generating import files for native types but still use their ResourceFormatLoaders)
*/
enum ImportOrder {
IMPORT_ORDER_LOW_PRIORITY = 0,
IMPORT_ORDER_DEFAULT = 1,
IMPORT_ORDER_SCENE = 100,
};

protected:
static void _bind_methods();

Expand Down Expand Up @@ -85,13 +97,14 @@ class ResourceFormatLoader : public RefCounted {
virtual Error rename_dependencies(const String &p_path, const HashMap<String, String> &p_map);
virtual bool is_import_valid(const String &p_path) const { return true; }
virtual bool is_imported(const String &p_path) const { return false; }
virtual int get_import_order(const String &p_path) const { return 0; }
virtual int get_import_order(const String &p_path) const { return IMPORT_ORDER_DEFAULT; }
virtual String get_import_group_file(const String &p_path) const { return ""; } //no group

virtual ~ResourceFormatLoader() {}
};

VARIANT_ENUM_CAST(ResourceFormatLoader::CacheMode)
VARIANT_ENUM_CAST(ResourceFormatLoader::ImportOrder)

typedef void (*ResourceLoadErrorNotify)(const String &p_text);
typedef void (*DependencyErrorNotify)(const String &p_loading, const String &p_which, const String &p_type);
Expand Down
28 changes: 19 additions & 9 deletions editor/editor_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,11 @@
#include "editor/import/resource_importer_bmfont.h"
#include "editor/import/resource_importer_csv_translation.h"
#include "editor/import/resource_importer_dynamic_font.h"
#include "editor/import/resource_importer_gd_script.h"
#include "editor/import/resource_importer_image.h"
#include "editor/import/resource_importer_imagefont.h"
#include "editor/import/resource_importer_layered_texture.h"
#include "editor/import/resource_importer_packed_scene.h"
#include "editor/import/resource_importer_shader_file.h"
#include "editor/import/resource_importer_texture.h"
#include "editor/import/resource_importer_texture_atlas.h"
Expand Down Expand Up @@ -1364,7 +1366,7 @@ void EditorNode::save_resource(const Ref<Resource> &p_resource) {

// If the resource has been imported, ask the user to use a different path in order to save it.
String path = p_resource->get_path();
if (path.is_resource_file() && !FileAccess::exists(path + ".import")) {
if (path.is_resource_file() && (!FileAccess::exists(path + ".import") || !ResourceFormatImporter::get_singleton()->is_import_read_only(path))) {
save_resource_in_path(p_resource, p_resource->get_path());
} else {
save_resource_as(p_resource);
Expand All @@ -1383,7 +1385,7 @@ void EditorNode::save_resource_as(const Ref<Resource> &p_resource, const String
return;
}
}
} else if (FileAccess::exists(path + ".import")) {
} else if (FileAccess::exists(path + ".import") && ResourceFormatImporter::get_singleton()->is_import_read_only(path)) {
show_warning(TTR("This resource can't be saved because it was imported from another file. Make it unique first."));
return;
}
Expand Down Expand Up @@ -2506,7 +2508,7 @@ void EditorNode::_edit_current(bool p_skip_foreign, bool p_skip_inspector_update
int subr_idx = current_res->get_path().find("::");
if (subr_idx != -1) {
String base_path = current_res->get_path().substr(0, subr_idx);
if (FileAccess::exists(base_path + ".import")) {
if (FileAccess::exists(base_path + ".import") && ResourceFormatImporter::get_singleton()->is_import_read_only(base_path)) {
if (!base_path.is_resource_file()) {
if (get_edited_scene() && get_edited_scene()->get_scene_file_path() == base_path) {
info_is_warning = true;
Expand All @@ -2517,7 +2519,7 @@ void EditorNode::_edit_current(bool p_skip_foreign, bool p_skip_inspector_update
editable_info = TTR("This resource belongs to a scene that was instantiated or inherited.\nChanges to it must be made inside the original scene.");
}
} else if (current_res->get_path().is_resource_file()) {
if (FileAccess::exists(current_res->get_path() + ".import")) {
if (FileAccess::exists(current_res->get_path() + ".import") && ResourceFormatImporter::get_singleton()->is_import_read_only(current_res->get_path())) {
editable_info = TTR("This resource was imported, so it's not editable. Change its settings in the import panel and then re-import.");
}
}
Expand All @@ -2542,7 +2544,7 @@ void EditorNode::_edit_current(bool p_skip_foreign, bool p_skip_inspector_update

if (get_edited_scene() && !get_edited_scene()->get_scene_file_path().is_empty()) {
String source_scene = get_edited_scene()->get_scene_file_path();
if (FileAccess::exists(source_scene + ".import")) {
if (FileAccess::exists(source_scene + ".import") && ResourceFormatImporter::get_singleton()->is_import_read_only(source_scene)) {
editable_info = TTR("This scene was imported, so changes to it won't be kept.\nInstantiating or inheriting it will allow you to make changes to it.\nPlease read the documentation relevant to importing scenes to better understand this workflow.");
info_is_warning = true;
}
Expand Down Expand Up @@ -3935,7 +3937,7 @@ Error EditorNode::load_scene(const String &p_scene, bool p_ignore_broken_deps, b
}
}

if (!p_force_open_imported && FileAccess::exists(p_scene + ".import")) {
if (!p_force_open_imported && FileAccess::exists(p_scene + ".import") && ResourceFormatImporter::get_singleton()->is_import_read_only(p_scene)) {
open_imported->set_text(vformat(TTR("Scene '%s' was automatically imported, so it can't be modified.\nTo make changes to it, a new inherited scene can be created."), p_scene.get_file()));
open_imported->popup_centered();
new_inherited_button->grab_focus();
Expand Down Expand Up @@ -4477,18 +4479,18 @@ bool EditorNode::is_resource_read_only(Ref<Resource> p_resource, bool p_foreign_
if (!get_tree()->get_edited_scene_root() || get_tree()->get_edited_scene_root()->get_scene_file_path() != base) {
// If we have not flagged foreign resources as writable or the base scene the resource is
// part was imported, it can be considered read-only.
if (!p_foreign_resources_are_writable || FileAccess::exists(base + ".import")) {
if (!p_foreign_resources_are_writable || (FileAccess::exists(base + ".import") && ResourceFormatImporter::get_singleton()->is_import_read_only(base))) {
return true;
}
}
} else {
// If a corresponding .import file exists for the base file, we assume it to be imported and should therefore treated as read-only.
if (FileAccess::exists(base + ".import")) {
if (FileAccess::exists(base + ".import") && ResourceFormatImporter::get_singleton()->is_import_read_only(base)) {
return true;
}
}
}
} else if (FileAccess::exists(path + ".import")) {
} else if (FileAccess::exists(path + ".import") && ResourceFormatImporter::get_singleton()->is_import_read_only(path)) {
// The resource is not a subresource, but if it has an .import file, it's imported so treat it as read only.
return true;
}
Expand Down Expand Up @@ -6905,6 +6907,14 @@ EditorNode::EditorNode() {
Ref<ResourceImporterBitMap> import_bitmap;
import_bitmap.instantiate();
ResourceFormatImporter::get_singleton()->add_importer(import_bitmap);

Ref<ResourceImporterPackedScene> import_packed_scene;
import_packed_scene.instantiate();
ResourceFormatImporter::get_singleton()->add_importer(import_packed_scene);

Ref<ResourceImporterGDScript> import_gd_script;
import_gd_script.instantiate();
ResourceFormatImporter::get_singleton()->add_importer(import_gd_script);
}

{
Expand Down
3 changes: 2 additions & 1 deletion editor/editor_properties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include "editor_properties.h"

#include "core/config/project_settings.h"
#include "core/io/resource_importer.h"
#include "editor/create_dialog.h"
#include "editor/editor_node.h"
#include "editor/editor_properties_array_dict.h"
Expand Down Expand Up @@ -2965,7 +2966,7 @@ void EditorPropertyResource::_resource_selected(const Ref<Resource> &p_resource,
if (p_inspect) {
if (extensions.find(parent.get_extension()) && (!EditorNode::get_singleton()->get_edited_scene() || EditorNode::get_singleton()->get_edited_scene()->get_scene_file_path() != parent)) {
// If the resource belongs to another (non-imported) scene, edit it in that scene instead.
if (!FileAccess::exists(parent + ".import")) {
if (!FileAccess::exists(parent + ".import") || !ResourceFormatImporter::get_singleton()->is_import_read_only(parent)) {
callable_mp(EditorNode::get_singleton(), &EditorNode::edit_foreign_resource).call_deferred(p_resource);
return;
}
Expand Down
3 changes: 2 additions & 1 deletion editor/export/editor_export_platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
#include "core/extension/gdextension.h"
#include "core/io/file_access_encrypted.h"
#include "core/io/file_access_pack.h" // PACK_HEADER_MAGIC, PACK_FORMAT_VERSION
#include "core/io/resource_importer.h"
#include "core/io/zip_io.h"
#include "core/version.h"
#include "editor/editor_file_system.h"
Expand Down Expand Up @@ -1249,7 +1250,7 @@ Error EditorExportPlatform::export_project_files(const Ref<EditorExportPreset> &
if (has_import_file) {
String importer_type = config->get_value("remap", "importer");

if (importer_type == "keep") {
if (importer_type == "keep" || !ResourceFormatImporter::get_singleton()->is_import_read_only(path)) {
// Just keep file as-is.
Vector<uint8_t> array = FileAccess::get_file_as_bytes(path);
err = p_func(p_udata, path, array, idx, total, enc_in_filters, enc_ex_filters, key);
Expand Down
2 changes: 1 addition & 1 deletion editor/import/3d/resource_importer_scene.h
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ class ResourceImporterScene : public ResourceImporter {
virtual bool get_option_visibility(const String &p_path, const String &p_option, const HashMap<StringName, Variant> &p_options) const override;
virtual void handle_compatibility_options(HashMap<StringName, Variant> &p_import_params) const override;
// Import scenes *after* everything else (such as textures).
virtual int get_import_order() const override { return ResourceImporter::IMPORT_ORDER_SCENE; }
virtual int get_import_order() const override { return ResourceFormatImporter::IMPORT_ORDER_SCENE; }

void _pre_fix_global(Node *p_scene, const HashMap<StringName, Variant> &p_options) const;
Node *_pre_fix_node(Node *p_node, Node *p_root, HashMap<Ref<ImporterMesh>, Vector<Ref<Shape3D>>> &r_collision_map, Pair<PackedVector3Array, PackedInt32Array> *r_occluder_arrays, List<Pair<NodePath, Node *>> &r_node_renames, const HashMap<StringName, Variant> &p_options);
Expand Down
86 changes: 86 additions & 0 deletions editor/import/resource_importer_gd_script.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
/**************************************************************************/
/* resource_importer_gd_script.cpp */
/**************************************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/* https://godotengine.org */
/**************************************************************************/
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
/* */
/* Permission is hereby granted, free of charge, to any person obtaining */
/* a copy of this software and associated documentation files (the */
/* "Software"), to deal in the Software without restriction, including */
/* without limitation the rights to use, copy, modify, merge, publish, */
/* distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to */
/* the following conditions: */
/* */
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
/* */
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/**************************************************************************/

#include "resource_importer_gd_script.h"

String ResourceImporterGDScript::get_importer_name() const {
return "GDScript";
}

String ResourceImporterGDScript::get_visible_name() const {
return "GDScript";
}

void ResourceImporterGDScript::get_recognized_extensions(List<String> *p_extensions) const {
p_extensions->push_back("gd");
}

String ResourceImporterGDScript::get_save_extension() const {
return "rgd";
}

String ResourceImporterGDScript::get_resource_type() const {
return "GDScript";
}

bool ResourceImporterGDScript::get_option_visibility(const String &p_path, const String &p_option, const HashMap<StringName, Variant> &p_options) const {
return true;
}

bool ResourceImporterGDScript::is_read_only() const {
return false;
}

int ResourceImporterGDScript::get_import_order() const {
return ResourceFormatImporter::IMPORT_ORDER_LOW_PRIORITY;
}

int ResourceImporterGDScript::get_preset_count() const {
return 0;
}

String ResourceImporterGDScript::get_preset_name(int p_idx) const {
return String();
}

void ResourceImporterGDScript::get_import_options(const String &p_path, List<ImportOption> *r_options, int p_preset) const {
}

Error ResourceImporterGDScript::import(const String &p_source_file, const String &p_save_path, const HashMap<StringName, Variant> &p_options, List<String> *r_platform_variants, List<String> *r_gen_files, Variant *r_metadata) {
//make an empty import file in .godot/imported folder (won't be used during export)
Error err;
Ref<FileAccess> f = FileAccess::open(p_save_path + ".rgd", FileAccess::WRITE, &err);
ERR_FAIL_COND_V_MSG(err, ERR_CANT_OPEN, "Cannot save gd script import file '" + p_save_path + "'.rgd");

return OK;
}

ResourceImporterGDScript::ResourceImporterGDScript() {
}
Loading
Loading