diff options
author | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2024-02-16 05:25:15 -0800 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-23 22:33:04 +0100 |
commit | 04d43947bff4de9db8d7005862a1d895b6703fbc (patch) | |
tree | e060417820e6e3f51bb144260fa7122e68bfe7eb /modules/gltf/editor | |
parent | 2fe8f07b6c1156803e860519f37c269e394c699e (diff) | |
download | redot-engine-04d43947bff4de9db8d7005862a1d895b6703fbc.tar.gz |
Add ufbx for FBX importing
This update introduces a new import method for FBX files using ufbx. If the fbx2gltf import fails, it will use the most recently cached scene from the ufbx import. The process is sped up by introducing threads to load the ufbx portion.
Key changes include:
- Support for importing geometry helper nodes in FBX files.
- Addition of cameras and lights with updated names.
- Removal of the fbx importer manager.
- Introduction of ModelDocument3D and updates to its methods.
- Changes to FBX import options and visibility.
- Updating the documentation and handling some errors.
- Store the original non-unique node, mesh and animation names in FBX and glTF.
Co-Authored-By: bqqbarbhg <bqqbarbhg@gmail.com>
Diffstat (limited to 'modules/gltf/editor')
-rw-r--r-- | modules/gltf/editor/editor_scene_importer_fbx.cpp | 148 | ||||
-rw-r--r-- | modules/gltf/editor/editor_scene_importer_fbx.h | 69 | ||||
-rw-r--r-- | modules/gltf/editor/editor_scene_importer_gltf.cpp | 11 | ||||
-rw-r--r-- | modules/gltf/editor/editor_scene_importer_gltf.h | 2 |
4 files changed, 12 insertions, 218 deletions
diff --git a/modules/gltf/editor/editor_scene_importer_fbx.cpp b/modules/gltf/editor/editor_scene_importer_fbx.cpp deleted file mode 100644 index 5e7a8f4e69..0000000000 --- a/modules/gltf/editor/editor_scene_importer_fbx.cpp +++ /dev/null @@ -1,148 +0,0 @@ -/**************************************************************************/ -/* editor_scene_importer_fbx.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 "editor_scene_importer_fbx.h" - -#ifdef TOOLS_ENABLED - -#include "../gltf_document.h" - -#include "core/config/project_settings.h" -#include "editor/editor_settings.h" -#include "main/main.h" - -uint32_t EditorSceneFormatImporterFBX::get_import_flags() const { - return ImportFlags::IMPORT_SCENE | ImportFlags::IMPORT_ANIMATION; -} - -void EditorSceneFormatImporterFBX::get_extensions(List<String> *r_extensions) const { - r_extensions->push_back("fbx"); -} - -Node *EditorSceneFormatImporterFBX::import_scene(const String &p_path, uint32_t p_flags, - const HashMap<StringName, Variant> &p_options, - List<String> *r_missing_deps, Error *r_err) { - // Get global paths for source and sink. - - // Don't use `c_escape()` as it can generate broken paths. These paths will be - // enclosed in double quotes by OS::execute(), so we only need to escape those. - // `c_escape_multiline()` seems to do this (escapes `\` and `"` only). - const String source_global = ProjectSettings::get_singleton()->globalize_path(p_path).c_escape_multiline(); - const String sink = ProjectSettings::get_singleton()->get_imported_files_path().path_join( - vformat("%s-%s.glb", p_path.get_file().get_basename(), p_path.md5_text())); - const String sink_global = ProjectSettings::get_singleton()->globalize_path(sink).c_escape_multiline(); - - // Run fbx2gltf. - - String fbx2gltf_path = EDITOR_GET("filesystem/import/fbx/fbx2gltf_path"); - - List<String> args; - args.push_back("--pbr-metallic-roughness"); - args.push_back("--input"); - args.push_back(source_global); - args.push_back("--output"); - args.push_back(sink_global); - args.push_back("--binary"); - - String standard_out; - int ret; - OS::get_singleton()->execute(fbx2gltf_path, args, &standard_out, &ret, true); - print_verbose(fbx2gltf_path); - print_verbose(standard_out); - - if (ret != 0) { - if (r_err) { - *r_err = ERR_SCRIPT_FAILED; - } - ERR_PRINT(vformat("FBX conversion to glTF failed with error: %d.", ret)); - return nullptr; - } - - // Import the generated glTF. - - // Use GLTFDocument instead of glTF importer to keep image references. - Ref<GLTFDocument> gltf; - gltf.instantiate(); - Ref<GLTFState> state; - state.instantiate(); - print_verbose(vformat("glTF path: %s", sink)); - Error err = gltf->append_from_file(sink, state, p_flags, p_path.get_base_dir()); - if (err != OK) { - if (r_err) { - *r_err = FAILED; - } - return nullptr; - } - -#ifndef DISABLE_DEPRECATED - bool trimming = p_options.has("animation/trimming") ? (bool)p_options["animation/trimming"] : false; - bool remove_immutable = p_options.has("animation/remove_immutable_tracks") ? (bool)p_options["animation/remove_immutable_tracks"] : true; - return gltf->generate_scene(state, (float)p_options["animation/fps"], trimming, remove_immutable); -#else - return gltf->generate_scene(state, (float)p_options["animation/fps"], (bool)p_options["animation/trimming"], (bool)p_options["animation/remove_immutable_tracks"]); -#endif -} - -Variant EditorSceneFormatImporterFBX::get_option_visibility(const String &p_path, bool p_for_animation, - const String &p_option, const HashMap<StringName, Variant> &p_options) { - return true; -} - -void EditorSceneFormatImporterFBX::get_import_options(const String &p_path, - List<ResourceImporter::ImportOption> *r_options) { -} - -bool EditorFileSystemImportFormatSupportQueryFBX::is_active() const { - String fbx2gltf_path = EDITOR_GET("filesystem/import/fbx/fbx2gltf_path"); - return !FileAccess::exists(fbx2gltf_path); -} - -Vector<String> EditorFileSystemImportFormatSupportQueryFBX::get_file_extensions() const { - Vector<String> ret; - ret.push_back("fbx"); - return ret; -} - -bool EditorFileSystemImportFormatSupportQueryFBX::query() { - FBXImporterManager::get_singleton()->show_dialog(true); - - while (true) { - OS::get_singleton()->delay_usec(1); - DisplayServer::get_singleton()->process_events(); - Main::iteration(); - if (!FBXImporterManager::get_singleton()->is_visible()) { - break; - } - } - - return false; -} - -#endif // TOOLS_ENABLED diff --git a/modules/gltf/editor/editor_scene_importer_fbx.h b/modules/gltf/editor/editor_scene_importer_fbx.h deleted file mode 100644 index 86ee6568c9..0000000000 --- a/modules/gltf/editor/editor_scene_importer_fbx.h +++ /dev/null @@ -1,69 +0,0 @@ -/**************************************************************************/ -/* editor_scene_importer_fbx.h */ -/**************************************************************************/ -/* 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. */ -/**************************************************************************/ - -#ifndef EDITOR_SCENE_IMPORTER_FBX_H -#define EDITOR_SCENE_IMPORTER_FBX_H - -#ifdef TOOLS_ENABLED - -#include "editor/editor_file_system.h" -#include "editor/fbx_importer_manager.h" -#include "editor/import/3d/resource_importer_scene.h" - -class Animation; -class Node; - -class EditorSceneFormatImporterFBX : public EditorSceneFormatImporter { - GDCLASS(EditorSceneFormatImporterFBX, EditorSceneFormatImporter); - -public: - virtual uint32_t get_import_flags() const override; - virtual void get_extensions(List<String> *r_extensions) const override; - virtual Node *import_scene(const String &p_path, uint32_t p_flags, - const HashMap<StringName, Variant> &p_options, - List<String> *r_missing_deps, Error *r_err = nullptr) override; - virtual void get_import_options(const String &p_path, - List<ResourceImporter::ImportOption> *r_options) override; - virtual Variant get_option_visibility(const String &p_path, bool p_for_animation, const String &p_option, - const HashMap<StringName, Variant> &p_options) override; -}; - -class EditorFileSystemImportFormatSupportQueryFBX : public EditorFileSystemImportFormatSupportQuery { - GDCLASS(EditorFileSystemImportFormatSupportQueryFBX, EditorFileSystemImportFormatSupportQuery); - -public: - virtual bool is_active() const override; - virtual Vector<String> get_file_extensions() const override; - virtual bool query() override; -}; - -#endif // TOOLS_ENABLED - -#endif // EDITOR_SCENE_IMPORTER_FBX_H diff --git a/modules/gltf/editor/editor_scene_importer_gltf.cpp b/modules/gltf/editor/editor_scene_importer_gltf.cpp index e35c0e9b9b..38d7f5521b 100644 --- a/modules/gltf/editor/editor_scene_importer_gltf.cpp +++ b/modules/gltf/editor/editor_scene_importer_gltf.cpp @@ -75,7 +75,7 @@ Node *EditorSceneFormatImporterGLTF::import_scene(const String &p_path, uint32_t bool remove_immutable = p_options.has("animation/remove_immutable_tracks") ? (bool)p_options["animation/remove_immutable_tracks"] : true; return gltf->generate_scene(state, (float)p_options["animation/fps"], trimming, remove_immutable); #else - return gltf->generate_scene(state, (float)p_options["animation/fps"], (bool)p_options["animation/trimming"], (bool)p_options["animation/remove_immutable_tracks"]); + return gltf->create_scene(state, (float)p_options["animation/fps"], (bool)p_options["animation/trimming"], (bool)p_options["animation/remove_immutable_tracks"]); #endif } @@ -93,4 +93,13 @@ void EditorSceneFormatImporterGLTF::handle_compatibility_options(HashMap<StringN } } +Variant EditorSceneFormatImporterGLTF::get_option_visibility(const String &p_path, bool p_for_animation, + const String &p_option, const HashMap<StringName, Variant> &p_options) { + String file_extension = p_path.get_extension().to_lower(); + if ((file_extension != "gltf" && file_extension != "glb") && p_option.begins_with("gltf/")) { + return false; + } + return true; +} + #endif // TOOLS_ENABLED diff --git a/modules/gltf/editor/editor_scene_importer_gltf.h b/modules/gltf/editor/editor_scene_importer_gltf.h index ec563bf525..d0a9aaf05a 100644 --- a/modules/gltf/editor/editor_scene_importer_gltf.h +++ b/modules/gltf/editor/editor_scene_importer_gltf.h @@ -50,6 +50,8 @@ public: virtual void get_import_options(const String &p_path, List<ResourceImporter::ImportOption> *r_options) override; virtual void handle_compatibility_options(HashMap<StringName, Variant> &p_import_params) const override; + virtual Variant get_option_visibility(const String &p_path, bool p_for_animation, + const String &p_option, const HashMap<StringName, Variant> &p_options) override; }; #endif // TOOLS_ENABLED |