csg_shape.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461
  1. /**************************************************************************/
  2. /* csg_shape.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 CSG_SHAPE_H
  31. #define CSG_SHAPE_H
  32. #define CSGJS_HEADER_ONLY
  33. #include "csg.h"
  34. #include "scene/3d/path.h"
  35. #include "scene/3d/visual_instance.h"
  36. #include "scene/resources/concave_polygon_shape.h"
  37. #include "thirdparty/misc/mikktspace.h"
  38. class MeshInstance;
  39. class CSGShape : public GeometryInstance {
  40. GDCLASS(CSGShape, GeometryInstance);
  41. public:
  42. enum Operation {
  43. OPERATION_UNION,
  44. OPERATION_INTERSECTION,
  45. OPERATION_SUBTRACTION,
  46. };
  47. private:
  48. Operation operation;
  49. CSGShape *parent_shape;
  50. CSGBrush *brush;
  51. AABB node_aabb;
  52. bool dirty;
  53. bool last_visible = false;
  54. float snap;
  55. bool use_collision;
  56. uint32_t collision_layer;
  57. uint32_t collision_mask;
  58. Ref<ConcavePolygonShape> root_collision_shape;
  59. RID root_collision_instance;
  60. bool calculate_tangents;
  61. Ref<ArrayMesh> root_mesh;
  62. struct Vector3Hasher {
  63. _ALWAYS_INLINE_ uint32_t hash(const Vector3 &p_vec3) const {
  64. uint32_t h = hash_djb2_one_float(p_vec3.x);
  65. h = hash_djb2_one_float(p_vec3.y, h);
  66. h = hash_djb2_one_float(p_vec3.z, h);
  67. return h;
  68. }
  69. };
  70. struct ShapeUpdateSurface {
  71. PoolVector<Vector3> vertices;
  72. PoolVector<Vector3> normals;
  73. PoolVector<Vector2> uvs;
  74. PoolVector<float> tans;
  75. Ref<Material> material;
  76. int last_added;
  77. PoolVector<Vector3>::Write verticesw;
  78. PoolVector<Vector3>::Write normalsw;
  79. PoolVector<Vector2>::Write uvsw;
  80. PoolVector<float>::Write tansw;
  81. };
  82. //mikktspace callbacks
  83. static int mikktGetNumFaces(const SMikkTSpaceContext *pContext);
  84. static int mikktGetNumVerticesOfFace(const SMikkTSpaceContext *pContext, const int iFace);
  85. static void mikktGetPosition(const SMikkTSpaceContext *pContext, float fvPosOut[], const int iFace, const int iVert);
  86. static void mikktGetNormal(const SMikkTSpaceContext *pContext, float fvNormOut[], const int iFace, const int iVert);
  87. static void mikktGetTexCoord(const SMikkTSpaceContext *pContext, float fvTexcOut[], const int iFace, const int iVert);
  88. static void mikktSetTSpaceDefault(const SMikkTSpaceContext *pContext, const float fvTangent[], const float fvBiTangent[], const float fMagS, const float fMagT,
  89. const tbool bIsOrientationPreserving, const int iFace, const int iVert);
  90. void _update_shape();
  91. void _update_collision_faces();
  92. protected:
  93. void _notification(int p_what);
  94. virtual CSGBrush *_build_brush() = 0;
  95. void _make_dirty(bool p_parent_removing = false);
  96. static void _bind_methods();
  97. friend class CSGCombiner;
  98. CSGBrush *_get_brush();
  99. virtual void _validate_property(PropertyInfo &property) const;
  100. public:
  101. Array get_meshes() const;
  102. void force_update_shape();
  103. void set_operation(Operation p_operation);
  104. Operation get_operation() const;
  105. virtual PoolVector<Vector3> get_brush_faces();
  106. virtual AABB get_aabb() const;
  107. virtual PoolVector<Face3> get_faces(uint32_t p_usage_flags) const;
  108. bool split_by_surface(Vector<Variant> p_destination_mesh_instances);
  109. void set_use_collision(bool p_enable);
  110. bool is_using_collision() const;
  111. void set_collision_layer(uint32_t p_layer);
  112. uint32_t get_collision_layer() const;
  113. void set_collision_mask(uint32_t p_mask);
  114. uint32_t get_collision_mask() const;
  115. void set_collision_layer_bit(int p_bit, bool p_value);
  116. bool get_collision_layer_bit(int p_bit) const;
  117. void set_collision_mask_bit(int p_bit, bool p_value);
  118. bool get_collision_mask_bit(int p_bit) const;
  119. void set_snap(float p_snap);
  120. float get_snap() const;
  121. void set_calculate_tangents(bool p_calculate_tangents);
  122. bool is_calculating_tangents() const;
  123. bool is_root_shape() const;
  124. CSGShape();
  125. ~CSGShape();
  126. };
  127. VARIANT_ENUM_CAST(CSGShape::Operation)
  128. class CSGCombiner : public CSGShape {
  129. GDCLASS(CSGCombiner, CSGShape);
  130. private:
  131. virtual CSGBrush *_build_brush();
  132. public:
  133. CSGCombiner();
  134. };
  135. class CSGPrimitive : public CSGShape {
  136. GDCLASS(CSGPrimitive, CSGShape);
  137. protected:
  138. bool invert_faces;
  139. CSGBrush *_create_brush_from_arrays(const PoolVector<Vector3> &p_vertices, const PoolVector<Vector2> &p_uv, const PoolVector<bool> &p_smooth, const PoolVector<Ref<Material>> &p_materials);
  140. static void _bind_methods();
  141. public:
  142. void set_invert_faces(bool p_invert);
  143. bool is_inverting_faces();
  144. CSGPrimitive();
  145. };
  146. class CSGMesh : public CSGPrimitive {
  147. GDCLASS(CSGMesh, CSGPrimitive);
  148. virtual CSGBrush *_build_brush();
  149. Ref<Mesh> mesh;
  150. Ref<Material> material;
  151. void _mesh_changed();
  152. protected:
  153. static void _bind_methods();
  154. public:
  155. void set_mesh(const Ref<Mesh> &p_mesh);
  156. Ref<Mesh> get_mesh();
  157. void set_material(const Ref<Material> &p_material);
  158. Ref<Material> get_material() const;
  159. };
  160. class CSGSphere : public CSGPrimitive {
  161. GDCLASS(CSGSphere, CSGPrimitive);
  162. virtual CSGBrush *_build_brush();
  163. Ref<Material> material;
  164. bool smooth_faces;
  165. float radius;
  166. int radial_segments;
  167. int rings;
  168. protected:
  169. static void _bind_methods();
  170. public:
  171. void set_radius(const float p_radius);
  172. float get_radius() const;
  173. void set_radial_segments(const int p_radial_segments);
  174. int get_radial_segments() const;
  175. void set_rings(const int p_rings);
  176. int get_rings() const;
  177. void set_material(const Ref<Material> &p_material);
  178. Ref<Material> get_material() const;
  179. void set_smooth_faces(bool p_smooth_faces);
  180. bool get_smooth_faces() const;
  181. CSGSphere();
  182. };
  183. class CSGBox : public CSGPrimitive {
  184. GDCLASS(CSGBox, CSGPrimitive);
  185. virtual CSGBrush *_build_brush();
  186. Ref<Material> material;
  187. float width;
  188. float height;
  189. float depth;
  190. protected:
  191. static void _bind_methods();
  192. public:
  193. void set_width(const float p_width);
  194. float get_width() const;
  195. void set_height(const float p_height);
  196. float get_height() const;
  197. void set_depth(const float p_depth);
  198. float get_depth() const;
  199. void set_material(const Ref<Material> &p_material);
  200. Ref<Material> get_material() const;
  201. CSGBox();
  202. };
  203. class CSGCylinder : public CSGPrimitive {
  204. GDCLASS(CSGCylinder, CSGPrimitive);
  205. virtual CSGBrush *_build_brush();
  206. Ref<Material> material;
  207. float radius;
  208. float height;
  209. int sides;
  210. bool cone;
  211. bool smooth_faces;
  212. protected:
  213. static void _bind_methods();
  214. public:
  215. void set_radius(const float p_radius);
  216. float get_radius() const;
  217. void set_height(const float p_height);
  218. float get_height() const;
  219. void set_sides(const int p_sides);
  220. int get_sides() const;
  221. void set_cone(const bool p_cone);
  222. bool is_cone() const;
  223. void set_smooth_faces(bool p_smooth_faces);
  224. bool get_smooth_faces() const;
  225. void set_material(const Ref<Material> &p_material);
  226. Ref<Material> get_material() const;
  227. CSGCylinder();
  228. };
  229. class CSGTorus : public CSGPrimitive {
  230. GDCLASS(CSGTorus, CSGPrimitive);
  231. virtual CSGBrush *_build_brush();
  232. Ref<Material> material;
  233. float inner_radius;
  234. float outer_radius;
  235. int sides;
  236. int ring_sides;
  237. bool smooth_faces;
  238. protected:
  239. static void _bind_methods();
  240. public:
  241. void set_inner_radius(const float p_inner_radius);
  242. float get_inner_radius() const;
  243. void set_outer_radius(const float p_outer_radius);
  244. float get_outer_radius() const;
  245. void set_sides(const int p_sides);
  246. int get_sides() const;
  247. void set_ring_sides(const int p_ring_sides);
  248. int get_ring_sides() const;
  249. void set_smooth_faces(bool p_smooth_faces);
  250. bool get_smooth_faces() const;
  251. void set_material(const Ref<Material> &p_material);
  252. Ref<Material> get_material() const;
  253. CSGTorus();
  254. };
  255. class CSGPolygon : public CSGPrimitive {
  256. GDCLASS(CSGPolygon, CSGPrimitive);
  257. public:
  258. enum Mode {
  259. MODE_DEPTH,
  260. MODE_SPIN,
  261. MODE_PATH
  262. };
  263. enum PathIntervalType {
  264. PATH_INTERVAL_DISTANCE,
  265. PATH_INTERVAL_SUBDIVIDE
  266. };
  267. enum PathRotation {
  268. PATH_ROTATION_POLYGON,
  269. PATH_ROTATION_PATH,
  270. PATH_ROTATION_PATH_FOLLOW,
  271. };
  272. private:
  273. virtual CSGBrush *_build_brush();
  274. Vector<Vector2> polygon;
  275. Ref<Material> material;
  276. Mode mode;
  277. float depth;
  278. float spin_degrees;
  279. int spin_sides;
  280. NodePath path_node;
  281. PathIntervalType path_interval_type;
  282. float path_interval;
  283. float path_simplify_angle;
  284. PathRotation path_rotation;
  285. bool path_local;
  286. Path *path;
  287. bool smooth_faces;
  288. bool path_continuous_u;
  289. real_t path_u_distance;
  290. bool path_joined;
  291. bool _is_editable_3d_polygon() const;
  292. bool _has_editable_3d_polygon_no_depth() const;
  293. void _path_changed();
  294. void _path_exited();
  295. protected:
  296. static void _bind_methods();
  297. virtual void _validate_property(PropertyInfo &property) const;
  298. void _notification(int p_what);
  299. public:
  300. void set_polygon(const Vector<Vector2> &p_polygon);
  301. Vector<Vector2> get_polygon() const;
  302. void set_mode(Mode p_mode);
  303. Mode get_mode() const;
  304. void set_depth(float p_depth);
  305. float get_depth() const;
  306. void set_spin_degrees(float p_spin_degrees);
  307. float get_spin_degrees() const;
  308. void set_spin_sides(int p_spin_sides);
  309. int get_spin_sides() const;
  310. void set_path_node(const NodePath &p_path);
  311. NodePath get_path_node() const;
  312. void set_path_interval_type(PathIntervalType p_interval_type);
  313. PathIntervalType get_path_interval_type() const;
  314. void set_path_interval(float p_interval);
  315. float get_path_interval() const;
  316. void set_path_simplify_angle(float p_angle);
  317. float get_path_simplify_angle() const;
  318. void set_path_rotation(PathRotation p_rotation);
  319. PathRotation get_path_rotation() const;
  320. void set_path_local(bool p_enable);
  321. bool is_path_local() const;
  322. void set_path_continuous_u(bool p_enable);
  323. bool is_path_continuous_u() const;
  324. void set_path_u_distance(real_t p_path_u_distance);
  325. real_t get_path_u_distance() const;
  326. void set_path_joined(bool p_enable);
  327. bool is_path_joined() const;
  328. void set_smooth_faces(bool p_smooth_faces);
  329. bool get_smooth_faces() const;
  330. void set_material(const Ref<Material> &p_material);
  331. Ref<Material> get_material() const;
  332. CSGPolygon();
  333. };
  334. VARIANT_ENUM_CAST(CSGPolygon::Mode)
  335. VARIANT_ENUM_CAST(CSGPolygon::PathRotation)
  336. VARIANT_ENUM_CAST(CSGPolygon::PathIntervalType)
  337. #endif // CSG_SHAPE_H