multimesh.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /**************************************************************************/
  2. /* multimesh.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 MULTIMESH_H
  31. #define MULTIMESH_H
  32. #include "scene/resources/mesh.h"
  33. #include "servers/rendering_server.h"
  34. class MultiMesh : public Resource {
  35. GDCLASS(MultiMesh, Resource);
  36. RES_BASE_EXTENSION("multimesh");
  37. public:
  38. enum TransformFormat {
  39. TRANSFORM_2D = RS::MULTIMESH_TRANSFORM_2D,
  40. TRANSFORM_3D = RS::MULTIMESH_TRANSFORM_3D
  41. };
  42. enum PhysicsInterpolationQuality {
  43. INTERP_QUALITY_FAST,
  44. INTERP_QUALITY_HIGH,
  45. };
  46. private:
  47. Ref<Mesh> mesh;
  48. RID multimesh;
  49. TransformFormat transform_format = TRANSFORM_2D;
  50. AABB custom_aabb;
  51. bool use_colors = false;
  52. bool use_custom_data = false;
  53. int instance_count = 0;
  54. int visible_instance_count = -1;
  55. PhysicsInterpolationQuality _physics_interpolation_quality = INTERP_QUALITY_FAST;
  56. protected:
  57. static void _bind_methods();
  58. #ifndef DISABLE_DEPRECATED
  59. // Kept for compatibility from 3.x to 4.0.
  60. void _set_transform_array(const Vector<Vector3> &p_array);
  61. Vector<Vector3> _get_transform_array() const;
  62. void _set_transform_2d_array(const Vector<Vector2> &p_array);
  63. Vector<Vector2> _get_transform_2d_array() const;
  64. void _set_color_array(const Vector<Color> &p_array);
  65. Vector<Color> _get_color_array() const;
  66. void _set_custom_data_array(const Vector<Color> &p_array);
  67. Vector<Color> _get_custom_data_array() const;
  68. #endif
  69. void set_buffer(const Vector<float> &p_buffer);
  70. Vector<float> get_buffer() const;
  71. void set_buffer_interpolated(const Vector<float> &p_buffer_curr, const Vector<float> &p_buffer_prev);
  72. public:
  73. void set_mesh(const Ref<Mesh> &p_mesh);
  74. Ref<Mesh> get_mesh() const;
  75. void set_use_colors(bool p_enable);
  76. bool is_using_colors() const;
  77. void set_use_custom_data(bool p_enable);
  78. bool is_using_custom_data() const;
  79. void set_transform_format(TransformFormat p_transform_format);
  80. TransformFormat get_transform_format() const;
  81. void set_instance_count(int p_count);
  82. int get_instance_count() const;
  83. void set_visible_instance_count(int p_count);
  84. int get_visible_instance_count() const;
  85. void set_physics_interpolation_quality(PhysicsInterpolationQuality p_quality);
  86. PhysicsInterpolationQuality get_physics_interpolation_quality() const { return _physics_interpolation_quality; }
  87. void set_instance_transform(int p_instance, const Transform3D &p_transform);
  88. void set_instance_transform_2d(int p_instance, const Transform2D &p_transform);
  89. Transform3D get_instance_transform(int p_instance) const;
  90. Transform2D get_instance_transform_2d(int p_instance) const;
  91. void set_instance_color(int p_instance, const Color &p_color);
  92. Color get_instance_color(int p_instance) const;
  93. void set_instance_custom_data(int p_instance, const Color &p_custom_data);
  94. Color get_instance_custom_data(int p_instance) const;
  95. void reset_instance_physics_interpolation(int p_instance);
  96. void set_physics_interpolated(bool p_interpolated);
  97. void set_custom_aabb(const AABB &p_custom);
  98. AABB get_custom_aabb() const;
  99. virtual AABB get_aabb() const;
  100. virtual RID get_rid() const override;
  101. MultiMesh();
  102. ~MultiMesh();
  103. };
  104. VARIANT_ENUM_CAST(MultiMesh::TransformFormat);
  105. VARIANT_ENUM_CAST(MultiMesh::PhysicsInterpolationQuality);
  106. #endif // MULTIMESH_H