gltf_node.h 3.8 KB

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