| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  gltf_document.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.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #ifndef GLTF_DOCUMENT_H
 | 
					
						
							|  |  |  | #define GLTF_DOCUMENT_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-18 20:35:13 -05:00
										 |  |  | #include "extensions/gltf_document_extension.h"
 | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-12 13:42:58 +01:00
										 |  |  | #include "modules/modules_enabled.gen.h" // For csg, gridmap.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | class GLTFDocument : public Resource { | 
					
						
							|  |  |  | 	GDCLASS(GLTFDocument, Resource); | 
					
						
							| 
									
										
										
										
											2022-09-18 20:35:13 -05:00
										 |  |  | 	static Vector<Ref<GLTFDocumentExtension>> all_document_extensions; | 
					
						
							|  |  |  | 	Vector<Ref<GLTFDocumentExtension>> document_extensions; | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-03 18:00:59 -07:00
										 |  |  | private: | 
					
						
							|  |  |  | 	const float BAKE_FPS = 30.0f; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2020-12-28 11:51:48 -08:00
										 |  |  | 	const int32_t JOINT_GROUP_SIZE = 4; | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	enum { | 
					
						
							|  |  |  | 		ARRAY_BUFFER = 34962, | 
					
						
							|  |  |  | 		ELEMENT_ARRAY_BUFFER = 34963, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		TYPE_BYTE = 5120, | 
					
						
							|  |  |  | 		TYPE_UNSIGNED_BYTE = 5121, | 
					
						
							|  |  |  | 		TYPE_SHORT = 5122, | 
					
						
							|  |  |  | 		TYPE_UNSIGNED_SHORT = 5123, | 
					
						
							|  |  |  | 		TYPE_UNSIGNED_INT = 5125, | 
					
						
							|  |  |  | 		TYPE_FLOAT = 5126, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		COMPONENT_TYPE_BYTE = 5120, | 
					
						
							|  |  |  | 		COMPONENT_TYPE_UNSIGNED_BYTE = 5121, | 
					
						
							|  |  |  | 		COMPONENT_TYPE_SHORT = 5122, | 
					
						
							|  |  |  | 		COMPONENT_TYPE_UNSIGNED_SHORT = 5123, | 
					
						
							|  |  |  | 		COMPONENT_TYPE_INT = 5125, | 
					
						
							|  |  |  | 		COMPONENT_TYPE_FLOAT = 5126, | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2022-07-18 17:58:27 -07:00
										 |  |  | 	enum { | 
					
						
							|  |  |  | 		TEXTURE_TYPE_GENERIC = 0, | 
					
						
							|  |  |  | 		TEXTURE_TYPE_NORMAL = 1, | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-10 00:54:10 -07:00
										 |  |  | protected: | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2022-09-18 20:35:13 -05:00
										 |  |  | 	static void register_gltf_document_extension(Ref<GLTFDocumentExtension> p_extension, bool p_first_priority = false); | 
					
						
							| 
									
										
										
										
											2022-11-22 21:07:56 +01:00
										 |  |  | 	static void unregister_gltf_document_extension(Ref<GLTFDocumentExtension> p_extension); | 
					
						
							| 
									
										
										
										
											2022-09-18 20:35:13 -05:00
										 |  |  | 	static void unregister_all_gltf_document_extensions(); | 
					
						
							| 
									
										
										
										
											2021-09-10 00:54:10 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	void _build_parent_hierachy(Ref<GLTFState> p_state); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	double _filter_number(double p_float); | 
					
						
							|  |  |  | 	String _get_component_type_name(const uint32_t p_component); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	int _get_component_type_size(const int p_component_type); | 
					
						
							|  |  |  | 	Error _parse_scenes(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _parse_nodes(Ref<GLTFState> p_state); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	String _get_type_name(const GLTFType p_component); | 
					
						
							| 
									
										
										
										
											2022-07-24 12:06:38 -05:00
										 |  |  | 	String _get_accessor_type_name(const GLTFType p_type); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	String _gen_unique_name(Ref<GLTFState> p_state, const String &p_name); | 
					
						
							|  |  |  | 	String _sanitize_animation_name(const String &p_name); | 
					
						
							|  |  |  | 	String _gen_unique_animation_name(Ref<GLTFState> p_state, const String &p_name); | 
					
						
							|  |  |  | 	String _sanitize_bone_name(const String &p_name); | 
					
						
							|  |  |  | 	String _gen_unique_bone_name(Ref<GLTFState> p_state, | 
					
						
							|  |  |  | 			const GLTFSkeletonIndex p_skel_i, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const String &p_name); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFTextureIndex _set_texture(Ref<GLTFState> p_state, Ref<Texture2D> p_texture, | 
					
						
							| 
									
										
										
										
											2021-10-04 10:49:42 -05:00
										 |  |  | 			StandardMaterial3D::TextureFilter p_filter_mode, bool p_repeats); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Ref<Texture2D> _get_texture(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2022-07-18 17:58:27 -07:00
										 |  |  | 			const GLTFTextureIndex p_texture, int p_texture_type); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFTextureSamplerIndex _set_sampler_for_mode(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2021-10-04 10:49:42 -05:00
										 |  |  | 			StandardMaterial3D::TextureFilter p_filter_mode, bool p_repeats); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Ref<GLTFTextureSampler> _get_sampler_for_texture(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2021-10-04 10:49:42 -05:00
										 |  |  | 			const GLTFTextureIndex p_texture); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Error _parse_json(const String &p_path, Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _parse_glb(Ref<FileAccess> p_file, Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	void _compute_node_heights(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _parse_buffers(Ref<GLTFState> p_state, const String &p_base_path); | 
					
						
							|  |  |  | 	Error _parse_buffer_views(Ref<GLTFState> p_state); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	GLTFType _get_type_from_str(const String &p_string); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Error _parse_accessors(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _decode_buffer_view(Ref<GLTFState> p_state, double *p_dst, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFBufferViewIndex p_buffer_view, | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			const int p_skip_every, const int p_skip_bytes, | 
					
						
							|  |  |  | 			const int p_element_size, const int p_count, | 
					
						
							|  |  |  | 			const GLTFType p_type, const int p_component_count, | 
					
						
							|  |  |  | 			const int p_component_type, const int p_component_size, | 
					
						
							|  |  |  | 			const bool p_normalized, const int p_byte_offset, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							|  |  |  | 	Vector<double> _decode_accessor(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFAccessorIndex p_accessor, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Vector<float> _decode_accessor_as_floats(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFAccessorIndex p_accessor, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Vector<int> _decode_accessor_as_ints(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFAccessorIndex p_accessor, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Vector<Vector2> _decode_accessor_as_vec2(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFAccessorIndex p_accessor, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Vector<Vector3> _decode_accessor_as_vec3(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFAccessorIndex p_accessor, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Vector<Color> _decode_accessor_as_color(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFAccessorIndex p_accessor, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Vector<Quaternion> _decode_accessor_as_quaternion(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFAccessorIndex p_accessor, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Vector<Transform2D> _decode_accessor_as_xform2d(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFAccessorIndex p_accessor, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Vector<Basis> _decode_accessor_as_basis(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFAccessorIndex p_accessor, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Vector<Transform3D> _decode_accessor_as_xform(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFAccessorIndex p_accessor, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Error _parse_meshes(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _serialize_textures(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _serialize_texture_samplers(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _serialize_images(Ref<GLTFState> p_state, const String &p_path); | 
					
						
							|  |  |  | 	Error _serialize_lights(Ref<GLTFState> p_state); | 
					
						
							| 
									
										
										
										
											2023-05-09 21:28:40 -05:00
										 |  |  | 	Ref<Image> _parse_image_bytes_into_image(Ref<GLTFState> p_state, const Vector<uint8_t> &p_bytes, const String &p_mime_type, int p_index); | 
					
						
							|  |  |  | 	void _parse_image_save_image(Ref<GLTFState> p_state, const String &p_mime_type, int p_index, Ref<Image> p_image); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Error _parse_images(Ref<GLTFState> p_state, const String &p_base_path); | 
					
						
							|  |  |  | 	Error _parse_textures(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _parse_texture_samplers(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _parse_materials(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	void _set_texture_transform_uv1(const Dictionary &d, Ref<BaseMaterial3D> p_material); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	void spec_gloss_to_rough_metal(Ref<GLTFSpecGloss> r_spec_gloss, | 
					
						
							|  |  |  | 			Ref<BaseMaterial3D> p_material); | 
					
						
							|  |  |  | 	static void spec_gloss_to_metal_base_color(const Color &p_specular_factor, | 
					
						
							|  |  |  | 			const Color &p_diffuse, | 
					
						
							|  |  |  | 			Color &r_base_color, | 
					
						
							|  |  |  | 			float &r_metallic); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFNodeIndex _find_highest_node(Ref<GLTFState> p_state, | 
					
						
							|  |  |  | 			const Vector<GLTFNodeIndex> &p_subset); | 
					
						
							| 
									
										
										
										
											2023-01-26 22:41:58 -08:00
										 |  |  | 	void _recurse_children(Ref<GLTFState> p_state, const GLTFNodeIndex p_node_index, | 
					
						
							|  |  |  | 			RBSet<GLTFNodeIndex> &p_all_skin_nodes, HashSet<GLTFNodeIndex> &p_child_visited_set); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	bool _capture_nodes_in_skin(Ref<GLTFState> p_state, Ref<GLTFSkin> p_skin, | 
					
						
							|  |  |  | 			const GLTFNodeIndex p_node_index); | 
					
						
							|  |  |  | 	void _capture_nodes_for_multirooted_skin(Ref<GLTFState> p_state, Ref<GLTFSkin> p_skin); | 
					
						
							|  |  |  | 	Error _expand_skin(Ref<GLTFState> p_state, Ref<GLTFSkin> p_skin); | 
					
						
							|  |  |  | 	Error _verify_skin(Ref<GLTFState> p_state, Ref<GLTFSkin> p_skin); | 
					
						
							|  |  |  | 	Error _parse_skins(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _determine_skeletons(Ref<GLTFState> p_state); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	Error _reparent_non_joint_skeleton_subtrees( | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			Ref<GLTFState> p_state, Ref<GLTFSkeleton> p_skeleton, | 
					
						
							|  |  |  | 			const Vector<GLTFNodeIndex> &p_non_joints); | 
					
						
							|  |  |  | 	Error _determine_skeleton_roots(Ref<GLTFState> p_state, | 
					
						
							|  |  |  | 			const GLTFSkeletonIndex p_skel_i); | 
					
						
							|  |  |  | 	Error _create_skeletons(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _map_skin_joints_indices_to_skeleton_bone_indices(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _serialize_skins(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _create_skins(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	bool _skins_are_same(const Ref<Skin> p_skin_a, const Ref<Skin> p_skin_b); | 
					
						
							|  |  |  | 	void _remove_duplicate_skins(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _serialize_cameras(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _parse_cameras(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _parse_lights(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _parse_animations(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _serialize_animations(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	BoneAttachment3D *_generate_bone_attachment(Ref<GLTFState> p_state, | 
					
						
							|  |  |  | 			Skeleton3D *p_skeleton, | 
					
						
							|  |  |  | 			const GLTFNodeIndex p_node_index, | 
					
						
							|  |  |  | 			const GLTFNodeIndex p_bone_index); | 
					
						
							|  |  |  | 	ImporterMeshInstance3D *_generate_mesh_instance(Ref<GLTFState> p_state, const GLTFNodeIndex p_node_index); | 
					
						
							|  |  |  | 	Camera3D *_generate_camera(Ref<GLTFState> p_state, const GLTFNodeIndex p_node_index); | 
					
						
							|  |  |  | 	Light3D *_generate_light(Ref<GLTFState> p_state, const GLTFNodeIndex p_node_index); | 
					
						
							|  |  |  | 	Node3D *_generate_spatial(Ref<GLTFState> p_state, const GLTFNodeIndex p_node_index); | 
					
						
							|  |  |  | 	void _assign_scene_names(Ref<GLTFState> p_state); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	template <class T> | 
					
						
							| 
									
										
										
										
											2021-09-16 01:03:50 -05:00
										 |  |  | 	T _interpolate_track(const Vector<real_t> &p_times, const Vector<T> &p_values, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const float p_time, | 
					
						
							|  |  |  | 			const GLTFAnimation::Interpolation p_interp); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFAccessorIndex _encode_accessor_as_quaternions(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2021-01-20 07:02:02 +00:00
										 |  |  | 			const Vector<Quaternion> p_attribs, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFAccessorIndex _encode_accessor_as_weights(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const Vector<Color> p_attribs, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFAccessorIndex _encode_accessor_as_joints(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const Vector<Color> p_attribs, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFAccessorIndex _encode_accessor_as_floats(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const Vector<real_t> p_attribs, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFAccessorIndex _encode_accessor_as_vec2(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const Vector<Vector2> p_attribs, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	void _calc_accessor_vec2_min_max(int p_i, const int p_element_count, Vector<double> &p_type_max, Vector2 p_attribs, Vector<double> &p_type_min) { | 
					
						
							|  |  |  | 		if (p_i == 0) { | 
					
						
							|  |  |  | 			for (int32_t type_i = 0; type_i < p_element_count; type_i++) { | 
					
						
							|  |  |  | 				p_type_max.write[type_i] = p_attribs[(p_i * p_element_count) + type_i]; | 
					
						
							|  |  |  | 				p_type_min.write[type_i] = p_attribs[(p_i * p_element_count) + type_i]; | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 		for (int32_t type_i = 0; type_i < p_element_count; type_i++) { | 
					
						
							|  |  |  | 			p_type_max.write[type_i] = MAX(p_attribs[(p_i * p_element_count) + type_i], p_type_max[type_i]); | 
					
						
							|  |  |  | 			p_type_min.write[type_i] = MIN(p_attribs[(p_i * p_element_count) + type_i], p_type_min[type_i]); | 
					
						
							|  |  |  | 			p_type_max.write[type_i] = _filter_number(p_type_max.write[type_i]); | 
					
						
							|  |  |  | 			p_type_min.write[type_i] = _filter_number(p_type_min.write[type_i]); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFAccessorIndex _encode_accessor_as_vec3(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const Vector<Vector3> p_attribs, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFAccessorIndex _encode_accessor_as_color(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const Vector<Color> p_attribs, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void _calc_accessor_min_max(int p_i, const int p_element_count, Vector<double> &p_type_max, Vector<double> p_attribs, Vector<double> &p_type_min); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFAccessorIndex _encode_accessor_as_ints(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const Vector<int32_t> p_attribs, | 
					
						
							|  |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFAccessorIndex _encode_accessor_as_xform(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-10-17 01:08:21 -04:00
										 |  |  | 			const Vector<Transform3D> p_attribs, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const bool p_for_vertex); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Error _encode_buffer_view(Ref<GLTFState> p_state, const double *p_src, | 
					
						
							|  |  |  | 			const int p_count, const GLTFType p_type, | 
					
						
							|  |  |  | 			const int p_component_type, const bool p_normalized, | 
					
						
							|  |  |  | 			const int p_byte_offset, const bool p_for_vertex, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			GLTFBufferViewIndex &r_accessor); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Error _encode_accessors(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _encode_buffer_views(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _serialize_materials(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _serialize_meshes(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _serialize_nodes(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _serialize_scenes(Ref<GLTFState> p_state); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	String interpolation_to_string(const GLTFAnimation::Interpolation p_interp); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	GLTFAnimation::Track _convert_animation_track(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			GLTFAnimation::Track p_track, | 
					
						
							| 
									
										
										
										
											2021-10-13 02:18:43 -07:00
										 |  |  | 			Ref<Animation> p_animation, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			int32_t p_track_i, | 
					
						
							|  |  |  | 			GLTFNodeIndex p_node_i); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Error _encode_buffer_bins(Ref<GLTFState> p_state, const String &p_path); | 
					
						
							|  |  |  | 	Error _encode_buffer_glb(Ref<GLTFState> p_state, const String &p_path); | 
					
						
							|  |  |  | 	PackedByteArray _serialize_glb_buffer(Ref<GLTFState> p_state, Error *r_err); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	Dictionary _serialize_texture_transform_uv1(Ref<BaseMaterial3D> p_material); | 
					
						
							|  |  |  | 	Dictionary _serialize_texture_transform_uv2(Ref<BaseMaterial3D> p_material); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Error _serialize_version(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error _serialize_file(Ref<GLTFState> p_state, const String p_path); | 
					
						
							|  |  |  | 	Error _serialize_gltf_extensions(Ref<GLTFState> p_state) const; | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2021-08-21 20:56:25 -05:00
										 |  |  | 	// https://www.itu.int/rec/R-REC-BT.601
 | 
					
						
							|  |  |  | 	// https://www.itu.int/dms_pubrec/itu-r/rec/bt/R-REC-BT.601-7-201103-I!!PDF-E.pdf
 | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	static constexpr float R_BRIGHTNESS_COEFF = 0.299f; | 
					
						
							|  |  |  | 	static constexpr float G_BRIGHTNESS_COEFF = 0.587f; | 
					
						
							|  |  |  | 	static constexpr float B_BRIGHTNESS_COEFF = 0.114f; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 	// https://github.com/microsoft/glTF-SDK/blob/master/GLTFSDK/Source/PBRUtils.cpp#L9
 | 
					
						
							|  |  |  | 	// https://bghgary.github.io/glTF/convert-between-workflows-bjs/js/babylon.pbrUtilities.js
 | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	static float solve_metallic(float p_dielectric_specular, float p_diffuse, | 
					
						
							|  |  |  | 			float p_specular, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			float p_one_minus_specular_strength); | 
					
						
							|  |  |  | 	static float get_perceived_brightness(const Color p_color); | 
					
						
							|  |  |  | 	static float get_max_component(const Color &p_color); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2022-11-15 04:14:52 +09:00
										 |  |  | 	Error append_from_file(String p_path, Ref<GLTFState> r_state, uint32_t p_flags = 0, String p_base_path = String()); | 
					
						
							|  |  |  | 	Error append_from_buffer(PackedByteArray p_bytes, String p_base_path, Ref<GLTFState> r_state, uint32_t p_flags = 0); | 
					
						
							|  |  |  | 	Error append_from_scene(Node *p_node, Ref<GLTFState> r_state, uint32_t p_flags = 0); | 
					
						
							| 
									
										
										
										
											2021-10-19 09:06:23 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2023-01-30 08:49:55 +09:00
										 |  |  | 	Node *generate_scene(Ref<GLTFState> p_state, float p_bake_fps = 30.0f, bool p_trimming = false, bool p_remove_immutable_tracks = true); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	PackedByteArray generate_buffer(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	Error write_to_filesystem(Ref<GLTFState> p_state, const String &p_path); | 
					
						
							| 
									
										
										
										
											2021-10-19 09:06:23 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Error _parse_gltf_state(Ref<GLTFState> p_state, const String &p_search_path); | 
					
						
							|  |  |  | 	Error _parse_gltf_extensions(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	void _process_mesh_instances(Ref<GLTFState> p_state, Node *p_scene_root); | 
					
						
							|  |  |  | 	void _generate_scene_node(Ref<GLTFState> p_state, Node *p_scene_parent, | 
					
						
							|  |  |  | 			Node3D *p_scene_root, | 
					
						
							|  |  |  | 			const GLTFNodeIndex p_node_index); | 
					
						
							|  |  |  | 	void _generate_skeleton_bone_node(Ref<GLTFState> p_state, Node *p_scene_parent, Node3D *p_scene_root, const GLTFNodeIndex p_node_index); | 
					
						
							|  |  |  | 	void _import_animation(Ref<GLTFState> p_state, AnimationPlayer *p_animation_player, | 
					
						
							| 
									
										
										
										
											2023-01-30 08:49:55 +09:00
										 |  |  | 			const GLTFAnimationIndex p_index, const float p_bake_fps, const bool p_trimming, const bool p_remove_immutable_tracks); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	void _convert_mesh_instances(Ref<GLTFState> p_state); | 
					
						
							|  |  |  | 	GLTFCameraIndex _convert_camera(Ref<GLTFState> p_state, Camera3D *p_camera); | 
					
						
							|  |  |  | 	void _convert_light_to_gltf(Light3D *p_light, Ref<GLTFState> p_state, Ref<GLTFNode> p_gltf_node); | 
					
						
							|  |  |  | 	GLTFLightIndex _convert_light(Ref<GLTFState> p_state, Light3D *p_light); | 
					
						
							|  |  |  | 	void _convert_spatial(Ref<GLTFState> p_state, Node3D *p_spatial, Ref<GLTFNode> p_node); | 
					
						
							|  |  |  | 	void _convert_scene_node(Ref<GLTFState> p_state, Node *p_current, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			const GLTFNodeIndex p_gltf_current, | 
					
						
							|  |  |  | 			const GLTFNodeIndex p_gltf_root); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-22 16:52:32 -05:00
										 |  |  | #ifdef MODULE_CSG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	void _convert_csg_shape_to_gltf(CSGShape3D *p_current, GLTFNodeIndex p_gltf_parent, Ref<GLTFNode> p_gltf_node, Ref<GLTFState> p_state); | 
					
						
							| 
									
										
										
										
											2021-01-22 16:52:32 -05:00
										 |  |  | #endif // MODULE_CSG_ENABLED
 | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	void _create_gltf_node(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			Node *p_scene_parent, | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			GLTFNodeIndex p_current_node_i, | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 			GLTFNodeIndex p_parent_node_index, | 
					
						
							|  |  |  | 			GLTFNodeIndex p_root_gltf_node, | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			Ref<GLTFNode> p_gltf_node); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	void _convert_animation_player_to_gltf( | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			AnimationPlayer *p_animation_player, Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2021-09-03 18:00:59 -07:00
										 |  |  | 			GLTFNodeIndex p_gltf_current, | 
					
						
							|  |  |  | 			GLTFNodeIndex p_gltf_root_index, | 
					
						
							|  |  |  | 			Ref<GLTFNode> p_gltf_node, Node *p_scene_parent); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	void _check_visibility(Node *p_node, bool &r_retflag); | 
					
						
							|  |  |  | 	void _convert_camera_to_gltf(Camera3D *p_camera, Ref<GLTFState> p_state, | 
					
						
							|  |  |  | 			Ref<GLTFNode> p_gltf_node); | 
					
						
							| 
									
										
										
										
											2021-01-22 16:52:32 -05:00
										 |  |  | #ifdef MODULE_GRIDMAP_ENABLED
 | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	void _convert_grid_map_to_gltf( | 
					
						
							| 
									
										
										
										
											2021-09-03 18:00:59 -07:00
										 |  |  | 			GridMap *p_grid_map, | 
					
						
							|  |  |  | 			GLTFNodeIndex p_parent_node_index, | 
					
						
							|  |  |  | 			GLTFNodeIndex p_root_node_index, | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			Ref<GLTFNode> p_gltf_node, Ref<GLTFState> p_state); | 
					
						
							| 
									
										
										
										
											2021-01-22 16:52:32 -05:00
										 |  |  | #endif // MODULE_GRIDMAP_ENABLED
 | 
					
						
							| 
									
										
										
										
											2021-09-20 18:24:31 -07:00
										 |  |  | 	void _convert_multi_mesh_instance_to_gltf( | 
					
						
							|  |  |  | 			MultiMeshInstance3D *p_multi_mesh_instance, | 
					
						
							| 
									
										
										
										
											2021-09-03 18:00:59 -07:00
										 |  |  | 			GLTFNodeIndex p_parent_node_index, | 
					
						
							|  |  |  | 			GLTFNodeIndex p_root_node_index, | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			Ref<GLTFNode> p_gltf_node, Ref<GLTFState> p_state); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | 	void _convert_skeleton_to_gltf( | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			Skeleton3D *p_scene_parent, Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2021-09-03 18:00:59 -07:00
										 |  |  | 			GLTFNodeIndex p_parent_node_index, | 
					
						
							|  |  |  | 			GLTFNodeIndex p_root_node_index, | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			Ref<GLTFNode> p_gltf_node); | 
					
						
							| 
									
										
										
										
											2021-09-03 18:00:59 -07:00
										 |  |  | 	void _convert_bone_attachment_to_gltf(BoneAttachment3D *p_bone_attachment, | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2021-09-03 18:00:59 -07:00
										 |  |  | 			GLTFNodeIndex p_parent_node_index, | 
					
						
							|  |  |  | 			GLTFNodeIndex p_root_node_index, | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			Ref<GLTFNode> p_gltf_node); | 
					
						
							| 
									
										
										
										
											2021-09-03 18:00:59 -07:00
										 |  |  | 	void _convert_mesh_instance_to_gltf(MeshInstance3D *p_mesh_instance, | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 			Ref<GLTFState> p_state, | 
					
						
							|  |  |  | 			Ref<GLTFNode> p_gltf_node); | 
					
						
							|  |  |  | 	GLTFMeshIndex _convert_mesh_to_gltf(Ref<GLTFState> p_state, | 
					
						
							| 
									
										
										
										
											2021-09-03 18:00:59 -07:00
										 |  |  | 			MeshInstance3D *p_mesh_instance); | 
					
						
							| 
									
										
										
										
											2023-02-03 18:06:29 -08:00
										 |  |  | 	void _convert_animation(Ref<GLTFState> p_state, AnimationPlayer *p_animation_player, String p_animation_track_name); | 
					
						
							| 
									
										
										
										
											2022-12-10 15:05:13 -06:00
										 |  |  | 	Error _serialize(Ref<GLTFState> p_state, const String &p_path); | 
					
						
							|  |  |  | 	Error _parse(Ref<GLTFState> p_state, String p_path, Ref<FileAccess> p_file); | 
					
						
							| 
									
										
										
										
											2020-12-21 07:39:32 -08:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // GLTF_DOCUMENT_H
 |