gltf_state.h 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  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 filename;
  47. String base_path;
  48. Dictionary json;
  49. int major_version = 0;
  50. int minor_version = 0;
  51. Vector<uint8_t> glb_data;
  52. bool use_named_skin_binds = false;
  53. bool use_khr_texture_transform = false;
  54. bool discard_meshes_and_materials = false;
  55. bool create_animations = true;
  56. int handle_binary_image = HANDLE_BINARY_EXTRACT_TEXTURES;
  57. Vector<Ref<GLTFNode>> nodes;
  58. Vector<Vector<uint8_t>> buffers;
  59. Vector<Ref<GLTFBufferView>> buffer_views;
  60. Vector<Ref<GLTFAccessor>> accessors;
  61. Vector<Ref<GLTFMesh>> meshes; // meshes are loaded directly, no reason not to.
  62. Vector<AnimationPlayer *> animation_players;
  63. HashMap<Ref<Material>, GLTFMaterialIndex> material_cache;
  64. Vector<Ref<Material>> materials;
  65. String scene_name;
  66. Vector<int> root_nodes;
  67. Vector<Ref<GLTFTexture>> textures;
  68. Vector<Ref<GLTFTextureSampler>> texture_samplers;
  69. Ref<GLTFTextureSampler> default_texture_sampler;
  70. Vector<Ref<Texture2D>> images;
  71. Vector<String> extensions_used;
  72. Vector<String> extensions_required;
  73. Vector<Ref<Image>> source_images;
  74. Vector<Ref<GLTFSkin>> skins;
  75. Vector<Ref<GLTFCamera>> cameras;
  76. Vector<Ref<GLTFLight>> lights;
  77. HashSet<String> unique_names;
  78. HashSet<String> unique_animation_names;
  79. Vector<Ref<GLTFSkeleton>> skeletons;
  80. Vector<Ref<GLTFAnimation>> animations;
  81. HashMap<GLTFNodeIndex, Node *> scene_nodes;
  82. HashMap<GLTFNodeIndex, ImporterMeshInstance3D *> scene_mesh_instances;
  83. HashMap<ObjectID, GLTFSkeletonIndex> skeleton3d_to_gltf_skeleton;
  84. HashMap<ObjectID, HashMap<ObjectID, GLTFSkinIndex>> skin_and_skeleton3d_to_gltf_skin;
  85. Dictionary additional_data;
  86. protected:
  87. static void _bind_methods();
  88. public:
  89. void add_used_extension(const String &p_extension, bool p_required = false);
  90. enum GLTFHandleBinary {
  91. HANDLE_BINARY_DISCARD_TEXTURES = 0,
  92. HANDLE_BINARY_EXTRACT_TEXTURES,
  93. HANDLE_BINARY_EMBED_AS_BASISU,
  94. HANDLE_BINARY_EMBED_AS_UNCOMPRESSED, // if this value changes from 3, ResourceImporterScene::pre_import must be changed as well.
  95. };
  96. int32_t get_handle_binary_image() {
  97. return handle_binary_image;
  98. }
  99. void set_handle_binary_image(int32_t p_handle_binary_image) {
  100. handle_binary_image = p_handle_binary_image;
  101. }
  102. Dictionary get_json();
  103. void set_json(Dictionary p_json);
  104. int get_major_version();
  105. void set_major_version(int p_major_version);
  106. int get_minor_version();
  107. void set_minor_version(int p_minor_version);
  108. Vector<uint8_t> get_glb_data();
  109. void set_glb_data(Vector<uint8_t> p_glb_data);
  110. bool get_use_named_skin_binds();
  111. void set_use_named_skin_binds(bool p_use_named_skin_binds);
  112. bool get_discard_textures();
  113. void set_discard_textures(bool p_discard_textures);
  114. bool get_embed_as_basisu();
  115. void set_embed_as_basisu(bool p_embed_as_basisu);
  116. bool get_extract_textures();
  117. void set_extract_textures(bool p_extract_textures);
  118. bool get_discard_meshes_and_materials();
  119. void set_discard_meshes_and_materials(bool p_discard_meshes_and_materials);
  120. TypedArray<GLTFNode> get_nodes();
  121. void set_nodes(TypedArray<GLTFNode> p_nodes);
  122. TypedArray<PackedByteArray> get_buffers();
  123. void set_buffers(TypedArray<PackedByteArray> p_buffers);
  124. TypedArray<GLTFBufferView> get_buffer_views();
  125. void set_buffer_views(TypedArray<GLTFBufferView> p_buffer_views);
  126. TypedArray<GLTFAccessor> get_accessors();
  127. void set_accessors(TypedArray<GLTFAccessor> p_accessors);
  128. TypedArray<GLTFMesh> get_meshes();
  129. void set_meshes(TypedArray<GLTFMesh> p_meshes);
  130. TypedArray<Material> get_materials();
  131. void set_materials(TypedArray<Material> p_materials);
  132. String get_scene_name();
  133. void set_scene_name(String p_scene_name);
  134. String get_base_path();
  135. void set_base_path(String p_base_path);
  136. PackedInt32Array get_root_nodes();
  137. void set_root_nodes(PackedInt32Array p_root_nodes);
  138. TypedArray<GLTFTexture> get_textures();
  139. void set_textures(TypedArray<GLTFTexture> p_textures);
  140. TypedArray<GLTFTextureSampler> get_texture_samplers();
  141. void set_texture_samplers(TypedArray<GLTFTextureSampler> p_texture_samplers);
  142. TypedArray<Texture2D> get_images();
  143. void set_images(TypedArray<Texture2D> p_images);
  144. TypedArray<GLTFSkin> get_skins();
  145. void set_skins(TypedArray<GLTFSkin> p_skins);
  146. TypedArray<GLTFCamera> get_cameras();
  147. void set_cameras(TypedArray<GLTFCamera> p_cameras);
  148. TypedArray<GLTFLight> get_lights();
  149. void set_lights(TypedArray<GLTFLight> p_lights);
  150. TypedArray<String> get_unique_names();
  151. void set_unique_names(TypedArray<String> p_unique_names);
  152. TypedArray<String> get_unique_animation_names();
  153. void set_unique_animation_names(TypedArray<String> p_unique_names);
  154. TypedArray<GLTFSkeleton> get_skeletons();
  155. void set_skeletons(TypedArray<GLTFSkeleton> p_skeletons);
  156. bool get_create_animations();
  157. void set_create_animations(bool p_create_animations);
  158. TypedArray<GLTFAnimation> get_animations();
  159. void set_animations(TypedArray<GLTFAnimation> p_animations);
  160. Node *get_scene_node(GLTFNodeIndex idx);
  161. GLTFNodeIndex get_node_index(Node *p_node);
  162. int get_animation_players_count(int idx);
  163. AnimationPlayer *get_animation_player(int idx);
  164. Variant get_additional_data(const StringName &p_extension_name);
  165. void set_additional_data(const StringName &p_extension_name, Variant p_additional_data);
  166. };
  167. #endif // GLTF_STATE_H