gltf_state.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /**************************************************************************/
  2. /* gltf_state.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef GLTF_STATE_H
  31. #define GLTF_STATE_H
  32. #include "extensions/gltf_light.h"
  33. #include "structures/gltf_accessor.h"
  34. #include "structures/gltf_animation.h"
  35. #include "structures/gltf_buffer_view.h"
  36. #include "structures/gltf_camera.h"
  37. #include "structures/gltf_mesh.h"
  38. #include "structures/gltf_node.h"
  39. #include "structures/gltf_skeleton.h"
  40. #include "structures/gltf_skin.h"
  41. #include "structures/gltf_texture.h"
  42. #include "structures/gltf_texture_sampler.h"
  43. class GLTFState : public Resource {
  44. GDCLASS(GLTFState, Resource);
  45. friend class GLTFDocument;
  46. String base_path;
  47. String filename;
  48. Dictionary json;
  49. int major_version = 0;
  50. int minor_version = 0;
  51. String copyright;
  52. Vector<uint8_t> glb_data;
  53. bool use_named_skin_binds = false;
  54. bool use_khr_texture_transform = false;
  55. bool discard_meshes_and_materials = false;
  56. bool force_generate_tangents = false;
  57. bool create_animations = true;
  58. bool force_disable_compression = false;
  59. int handle_binary_image = HANDLE_BINARY_EXTRACT_TEXTURES;
  60. Vector<Ref<GLTFNode>> nodes;
  61. Vector<Vector<uint8_t>> buffers;
  62. Vector<Ref<GLTFBufferView>> buffer_views;
  63. Vector<Ref<GLTFAccessor>> accessors;
  64. Vector<Ref<GLTFMesh>> meshes; // meshes are loaded directly, no reason not to.
  65. Vector<AnimationPlayer *> animation_players;
  66. HashMap<Ref<Material>, GLTFMaterialIndex> material_cache;
  67. Vector<Ref<Material>> materials;
  68. String scene_name;
  69. Vector<int> root_nodes;
  70. Vector<Ref<GLTFTexture>> textures;
  71. Vector<Ref<GLTFTextureSampler>> texture_samplers;
  72. Ref<GLTFTextureSampler> default_texture_sampler;
  73. Vector<Ref<Texture2D>> images;
  74. Vector<String> extensions_used;
  75. Vector<String> extensions_required;
  76. Vector<Ref<Image>> source_images;
  77. Vector<Ref<GLTFSkin>> skins;
  78. Vector<Ref<GLTFCamera>> cameras;
  79. Vector<Ref<GLTFLight>> lights;
  80. HashSet<String> unique_names;
  81. HashSet<String> unique_animation_names;
  82. Vector<Ref<GLTFSkeleton>> skeletons;
  83. Vector<Ref<GLTFAnimation>> animations;
  84. HashMap<GLTFNodeIndex, Node *> scene_nodes;
  85. HashMap<GLTFNodeIndex, ImporterMeshInstance3D *> scene_mesh_instances;
  86. HashMap<ObjectID, GLTFSkeletonIndex> skeleton3d_to_gltf_skeleton;
  87. HashMap<ObjectID, HashMap<ObjectID, GLTFSkinIndex>> skin_and_skeleton3d_to_gltf_skin;
  88. Dictionary additional_data;
  89. protected:
  90. static void _bind_methods();
  91. public:
  92. void add_used_extension(const String &p_extension, bool p_required = false);
  93. enum GLTFHandleBinary {
  94. HANDLE_BINARY_DISCARD_TEXTURES = 0,
  95. HANDLE_BINARY_EXTRACT_TEXTURES,
  96. HANDLE_BINARY_EMBED_AS_BASISU,
  97. HANDLE_BINARY_EMBED_AS_UNCOMPRESSED, // if this value changes from 3, ResourceImporterScene::pre_import must be changed as well.
  98. };
  99. int32_t get_handle_binary_image() {
  100. return handle_binary_image;
  101. }
  102. void set_handle_binary_image(int32_t p_handle_binary_image) {
  103. handle_binary_image = p_handle_binary_image;
  104. }
  105. Dictionary get_json();
  106. void set_json(Dictionary p_json);
  107. int get_major_version();
  108. void set_major_version(int p_major_version);
  109. int get_minor_version();
  110. void set_minor_version(int p_minor_version);
  111. String get_copyright() const;
  112. void set_copyright(const String &p_copyright);
  113. Vector<uint8_t> get_glb_data();
  114. void set_glb_data(Vector<uint8_t> p_glb_data);
  115. bool get_use_named_skin_binds();
  116. void set_use_named_skin_binds(bool p_use_named_skin_binds);
  117. bool get_discard_textures();
  118. void set_discard_textures(bool p_discard_textures);
  119. bool get_embed_as_basisu();
  120. void set_embed_as_basisu(bool p_embed_as_basisu);
  121. bool get_extract_textures();
  122. void set_extract_textures(bool p_extract_textures);
  123. bool get_discard_meshes_and_materials();
  124. void set_discard_meshes_and_materials(bool p_discard_meshes_and_materials);
  125. TypedArray<GLTFNode> get_nodes();
  126. void set_nodes(TypedArray<GLTFNode> p_nodes);
  127. TypedArray<PackedByteArray> get_buffers();
  128. void set_buffers(TypedArray<PackedByteArray> p_buffers);
  129. TypedArray<GLTFBufferView> get_buffer_views();
  130. void set_buffer_views(TypedArray<GLTFBufferView> p_buffer_views);
  131. TypedArray<GLTFAccessor> get_accessors();
  132. void set_accessors(TypedArray<GLTFAccessor> p_accessors);
  133. TypedArray<GLTFMesh> get_meshes();
  134. void set_meshes(TypedArray<GLTFMesh> p_meshes);
  135. TypedArray<Material> get_materials();
  136. void set_materials(TypedArray<Material> p_materials);
  137. String get_scene_name();
  138. void set_scene_name(String p_scene_name);
  139. String get_base_path();
  140. void set_base_path(String p_base_path);
  141. String get_filename() const;
  142. void set_filename(const String &p_filename);
  143. PackedInt32Array get_root_nodes();
  144. void set_root_nodes(PackedInt32Array p_root_nodes);
  145. TypedArray<GLTFTexture> get_textures();
  146. void set_textures(TypedArray<GLTFTexture> p_textures);
  147. TypedArray<GLTFTextureSampler> get_texture_samplers();
  148. void set_texture_samplers(TypedArray<GLTFTextureSampler> p_texture_samplers);
  149. TypedArray<Texture2D> get_images();
  150. void set_images(TypedArray<Texture2D> p_images);
  151. TypedArray<GLTFSkin> get_skins();
  152. void set_skins(TypedArray<GLTFSkin> p_skins);
  153. TypedArray<GLTFCamera> get_cameras();
  154. void set_cameras(TypedArray<GLTFCamera> p_cameras);
  155. TypedArray<GLTFLight> get_lights();
  156. void set_lights(TypedArray<GLTFLight> p_lights);
  157. TypedArray<String> get_unique_names();
  158. void set_unique_names(TypedArray<String> p_unique_names);
  159. TypedArray<String> get_unique_animation_names();
  160. void set_unique_animation_names(TypedArray<String> p_unique_names);
  161. TypedArray<GLTFSkeleton> get_skeletons();
  162. void set_skeletons(TypedArray<GLTFSkeleton> p_skeletons);
  163. bool get_create_animations();
  164. void set_create_animations(bool p_create_animations);
  165. TypedArray<GLTFAnimation> get_animations();
  166. void set_animations(TypedArray<GLTFAnimation> p_animations);
  167. Node *get_scene_node(GLTFNodeIndex idx);
  168. GLTFNodeIndex get_node_index(Node *p_node);
  169. int get_animation_players_count(int idx);
  170. AnimationPlayer *get_animation_player(int idx);
  171. Variant get_additional_data(const StringName &p_extension_name);
  172. void set_additional_data(const StringName &p_extension_name, Variant p_additional_data);
  173. };
  174. #endif // GLTF_STATE_H