gltf_node.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /**************************************************************************/
  2. /* gltf_node.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_NODE_H
  31. #define GLTF_NODE_H
  32. #include "../gltf_defines.h"
  33. #include "core/resource.h"
  34. class GLTFNode : public Resource {
  35. GDCLASS(GLTFNode, Resource);
  36. friend class GLTFDocument;
  37. friend class PackedSceneGLTF;
  38. private:
  39. // matrices need to be transformed to this
  40. GLTFNodeIndex parent = -1;
  41. int height = -1;
  42. Transform xform;
  43. GLTFMeshIndex mesh = -1;
  44. GLTFCameraIndex camera = -1;
  45. GLTFSkinIndex skin = -1;
  46. GLTFSkeletonIndex skeleton = -1;
  47. bool joint = false;
  48. Vector3 translation;
  49. Quat rotation;
  50. Vector3 scale = Vector3(1, 1, 1);
  51. Vector<int> children;
  52. GLTFLightIndex light = -1;
  53. Dictionary additional_data;
  54. protected:
  55. static void _bind_methods();
  56. public:
  57. GLTFNodeIndex get_parent();
  58. void set_parent(GLTFNodeIndex p_parent);
  59. int get_height();
  60. void set_height(int p_height);
  61. Transform get_xform();
  62. void set_xform(Transform p_xform);
  63. GLTFMeshIndex get_mesh();
  64. void set_mesh(GLTFMeshIndex p_mesh);
  65. GLTFCameraIndex get_camera();
  66. void set_camera(GLTFCameraIndex p_camera);
  67. GLTFSkinIndex get_skin();
  68. void set_skin(GLTFSkinIndex p_skin);
  69. GLTFSkeletonIndex get_skeleton();
  70. void set_skeleton(GLTFSkeletonIndex p_skeleton);
  71. bool get_joint();
  72. void set_joint(bool p_joint);
  73. Vector3 get_translation();
  74. void set_translation(Vector3 p_translation);
  75. Quat get_rotation();
  76. void set_rotation(Quat p_rotation);
  77. Vector3 get_scale();
  78. void set_scale(Vector3 p_scale);
  79. Vector<int> get_children();
  80. void set_children(Vector<int> p_children);
  81. GLTFLightIndex get_light();
  82. void set_light(GLTFLightIndex p_light);
  83. Variant get_additional_data(const String &p_extension_name);
  84. void set_additional_data(const String &p_extension_name, Variant p_additional_data);
  85. };
  86. #endif // GLTF_NODE_H