soft_body_3d.cpp 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807
  1. /**************************************************************************/
  2. /* soft_body_3d.cpp */
  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. #include "soft_body_3d.h"
  31. #include "scene/3d/physics_body_3d.h"
  32. SoftBodyRenderingServerHandler::SoftBodyRenderingServerHandler() {}
  33. void SoftBodyRenderingServerHandler::prepare(RID p_mesh, int p_surface) {
  34. clear();
  35. ERR_FAIL_COND(!p_mesh.is_valid());
  36. mesh = p_mesh;
  37. surface = p_surface;
  38. RS::SurfaceData surface_data = RS::get_singleton()->mesh_get_surface(mesh, surface);
  39. uint32_t surface_offsets[RS::ARRAY_MAX];
  40. uint32_t vertex_stride;
  41. uint32_t attrib_stride;
  42. uint32_t skin_stride;
  43. RS::get_singleton()->mesh_surface_make_offsets_from_format(surface_data.format, surface_data.vertex_count, surface_data.index_count, surface_offsets, vertex_stride, attrib_stride, skin_stride);
  44. buffer = surface_data.vertex_data;
  45. stride = vertex_stride;
  46. offset_vertices = surface_offsets[RS::ARRAY_VERTEX];
  47. offset_normal = surface_offsets[RS::ARRAY_NORMAL];
  48. }
  49. void SoftBodyRenderingServerHandler::clear() {
  50. buffer.resize(0);
  51. stride = 0;
  52. offset_vertices = 0;
  53. offset_normal = 0;
  54. surface = 0;
  55. mesh = RID();
  56. }
  57. void SoftBodyRenderingServerHandler::open() {
  58. write_buffer = buffer.ptrw();
  59. }
  60. void SoftBodyRenderingServerHandler::close() {
  61. write_buffer = nullptr;
  62. }
  63. void SoftBodyRenderingServerHandler::commit_changes() {
  64. RS::get_singleton()->mesh_surface_update_vertex_region(mesh, surface, 0, buffer);
  65. }
  66. void SoftBodyRenderingServerHandler::set_vertex(int p_vertex_id, const void *p_vector3) {
  67. memcpy(&write_buffer[p_vertex_id * stride + offset_vertices], p_vector3, sizeof(float) * 3);
  68. }
  69. void SoftBodyRenderingServerHandler::set_normal(int p_vertex_id, const void *p_vector3) {
  70. // Store normal vector in A2B10G10R10 format.
  71. Vector3 n;
  72. memcpy(&n, p_vector3, sizeof(Vector3));
  73. n *= Vector3(0.5, 0.5, 0.5);
  74. n += Vector3(0.5, 0.5, 0.5);
  75. Vector2 res = n.octahedron_encode();
  76. uint32_t value = 0;
  77. value |= (uint16_t)CLAMP(res.x * 65535, 0, 65535);
  78. value |= (uint16_t)CLAMP(res.y * 65535, 0, 65535) << 16;
  79. memcpy(&write_buffer[p_vertex_id * stride + offset_normal], &value, sizeof(uint32_t));
  80. }
  81. void SoftBodyRenderingServerHandler::set_aabb(const AABB &p_aabb) {
  82. RS::get_singleton()->mesh_set_custom_aabb(mesh, p_aabb);
  83. }
  84. SoftBody3D::PinnedPoint::PinnedPoint() {
  85. }
  86. SoftBody3D::PinnedPoint::PinnedPoint(const PinnedPoint &obj_tocopy) {
  87. point_index = obj_tocopy.point_index;
  88. spatial_attachment_path = obj_tocopy.spatial_attachment_path;
  89. spatial_attachment = obj_tocopy.spatial_attachment;
  90. offset = obj_tocopy.offset;
  91. }
  92. void SoftBody3D::PinnedPoint::operator=(const PinnedPoint &obj) {
  93. point_index = obj.point_index;
  94. spatial_attachment_path = obj.spatial_attachment_path;
  95. spatial_attachment = obj.spatial_attachment;
  96. offset = obj.offset;
  97. }
  98. void SoftBody3D::_update_pickable() {
  99. if (!is_inside_tree()) {
  100. return;
  101. }
  102. bool pickable = ray_pickable && is_visible_in_tree();
  103. PhysicsServer3D::get_singleton()->soft_body_set_ray_pickable(physics_rid, pickable);
  104. }
  105. bool SoftBody3D::_set(const StringName &p_name, const Variant &p_value) {
  106. String name = p_name;
  107. String which = name.get_slicec('/', 0);
  108. if ("pinned_points" == which) {
  109. return _set_property_pinned_points_indices(p_value);
  110. } else if ("attachments" == which) {
  111. int idx = name.get_slicec('/', 1).to_int();
  112. String what = name.get_slicec('/', 2);
  113. return _set_property_pinned_points_attachment(idx, what, p_value);
  114. }
  115. return false;
  116. }
  117. bool SoftBody3D::_get(const StringName &p_name, Variant &r_ret) const {
  118. String name = p_name;
  119. String which = name.get_slicec('/', 0);
  120. if ("pinned_points" == which) {
  121. Array arr_ret;
  122. const int pinned_points_indices_size = pinned_points.size();
  123. const PinnedPoint *r = pinned_points.ptr();
  124. arr_ret.resize(pinned_points_indices_size);
  125. for (int i = 0; i < pinned_points_indices_size; ++i) {
  126. arr_ret[i] = r[i].point_index;
  127. }
  128. r_ret = arr_ret;
  129. return true;
  130. } else if ("attachments" == which) {
  131. int idx = name.get_slicec('/', 1).to_int();
  132. String what = name.get_slicec('/', 2);
  133. return _get_property_pinned_points(idx, what, r_ret);
  134. }
  135. return false;
  136. }
  137. void SoftBody3D::_get_property_list(List<PropertyInfo> *p_list) const {
  138. const int pinned_points_indices_size = pinned_points.size();
  139. p_list->push_back(PropertyInfo(Variant::PACKED_INT32_ARRAY, PNAME("pinned_points")));
  140. for (int i = 0; i < pinned_points_indices_size; ++i) {
  141. const String prefix = vformat("%s/%d/", PNAME("attachments"), i);
  142. p_list->push_back(PropertyInfo(Variant::INT, prefix + PNAME("point_index")));
  143. p_list->push_back(PropertyInfo(Variant::NODE_PATH, prefix + PNAME("spatial_attachment_path")));
  144. p_list->push_back(PropertyInfo(Variant::VECTOR3, prefix + PNAME("offset")));
  145. }
  146. }
  147. bool SoftBody3D::_set_property_pinned_points_indices(const Array &p_indices) {
  148. const int p_indices_size = p_indices.size();
  149. { // Remove the pined points on physics server that will be removed by resize
  150. const PinnedPoint *r = pinned_points.ptr();
  151. if (p_indices_size < pinned_points.size()) {
  152. for (int i = pinned_points.size() - 1; i >= p_indices_size; --i) {
  153. pin_point(r[i].point_index, false);
  154. }
  155. }
  156. }
  157. pinned_points.resize(p_indices_size);
  158. PinnedPoint *w = pinned_points.ptrw();
  159. int point_index;
  160. for (int i = 0; i < p_indices_size; ++i) {
  161. point_index = p_indices.get(i);
  162. if (w[i].point_index != point_index) {
  163. if (-1 != w[i].point_index) {
  164. pin_point(w[i].point_index, false);
  165. }
  166. w[i].point_index = point_index;
  167. pin_point(w[i].point_index, true);
  168. }
  169. }
  170. return true;
  171. }
  172. bool SoftBody3D::_set_property_pinned_points_attachment(int p_item, const String &p_what, const Variant &p_value) {
  173. if (pinned_points.size() <= p_item) {
  174. return false;
  175. }
  176. if ("spatial_attachment_path" == p_what) {
  177. PinnedPoint *w = pinned_points.ptrw();
  178. callable_mp(this, &SoftBody3D::_pin_point_deferred).call_deferred(Variant(w[p_item].point_index), true, p_value);
  179. } else if ("offset" == p_what) {
  180. PinnedPoint *w = pinned_points.ptrw();
  181. w[p_item].offset = p_value;
  182. } else {
  183. return false;
  184. }
  185. return true;
  186. }
  187. bool SoftBody3D::_get_property_pinned_points(int p_item, const String &p_what, Variant &r_ret) const {
  188. if (pinned_points.size() <= p_item) {
  189. return false;
  190. }
  191. const PinnedPoint *r = pinned_points.ptr();
  192. if ("point_index" == p_what) {
  193. r_ret = r[p_item].point_index;
  194. } else if ("spatial_attachment_path" == p_what) {
  195. r_ret = r[p_item].spatial_attachment_path;
  196. } else if ("offset" == p_what) {
  197. r_ret = r[p_item].offset;
  198. } else {
  199. return false;
  200. }
  201. return true;
  202. }
  203. void SoftBody3D::_notification(int p_what) {
  204. switch (p_what) {
  205. case NOTIFICATION_ENTER_WORLD: {
  206. if (Engine::get_singleton()->is_editor_hint()) {
  207. // I have no idea what this is supposed to do, it's really weird
  208. // leaving for upcoming PK work on physics
  209. //add_change_receptor(this);
  210. }
  211. RID space = get_world_3d()->get_space();
  212. PhysicsServer3D::get_singleton()->soft_body_set_space(physics_rid, space);
  213. _prepare_physics_server();
  214. } break;
  215. case NOTIFICATION_READY: {
  216. if (!parent_collision_ignore.is_empty()) {
  217. add_collision_exception_with(get_node(parent_collision_ignore));
  218. }
  219. } break;
  220. case NOTIFICATION_TRANSFORM_CHANGED: {
  221. if (Engine::get_singleton()->is_editor_hint()) {
  222. _reset_points_offsets();
  223. return;
  224. }
  225. PhysicsServer3D::get_singleton()->soft_body_set_transform(physics_rid, get_global_transform());
  226. set_notify_transform(false);
  227. // Required to be top level with Transform at center of world in order to modify RenderingServer only to support custom Transform
  228. set_as_top_level(true);
  229. set_transform(Transform3D());
  230. set_notify_transform(true);
  231. } break;
  232. case NOTIFICATION_VISIBILITY_CHANGED: {
  233. _update_pickable();
  234. } break;
  235. case NOTIFICATION_EXIT_WORLD: {
  236. PhysicsServer3D::get_singleton()->soft_body_set_space(physics_rid, RID());
  237. } break;
  238. case NOTIFICATION_DISABLED: {
  239. if (is_inside_tree() && (disable_mode == DISABLE_MODE_REMOVE)) {
  240. _prepare_physics_server();
  241. }
  242. } break;
  243. case NOTIFICATION_ENABLED: {
  244. if (is_inside_tree() && (disable_mode == DISABLE_MODE_REMOVE)) {
  245. _prepare_physics_server();
  246. }
  247. } break;
  248. }
  249. }
  250. void SoftBody3D::_bind_methods() {
  251. ClassDB::bind_method(D_METHOD("get_physics_rid"), &SoftBody3D::get_physics_rid);
  252. ClassDB::bind_method(D_METHOD("set_collision_mask", "collision_mask"), &SoftBody3D::set_collision_mask);
  253. ClassDB::bind_method(D_METHOD("get_collision_mask"), &SoftBody3D::get_collision_mask);
  254. ClassDB::bind_method(D_METHOD("set_collision_layer", "collision_layer"), &SoftBody3D::set_collision_layer);
  255. ClassDB::bind_method(D_METHOD("get_collision_layer"), &SoftBody3D::get_collision_layer);
  256. ClassDB::bind_method(D_METHOD("set_collision_mask_value", "layer_number", "value"), &SoftBody3D::set_collision_mask_value);
  257. ClassDB::bind_method(D_METHOD("get_collision_mask_value", "layer_number"), &SoftBody3D::get_collision_mask_value);
  258. ClassDB::bind_method(D_METHOD("set_collision_layer_value", "layer_number", "value"), &SoftBody3D::set_collision_layer_value);
  259. ClassDB::bind_method(D_METHOD("get_collision_layer_value", "layer_number"), &SoftBody3D::get_collision_layer_value);
  260. ClassDB::bind_method(D_METHOD("set_parent_collision_ignore", "parent_collision_ignore"), &SoftBody3D::set_parent_collision_ignore);
  261. ClassDB::bind_method(D_METHOD("get_parent_collision_ignore"), &SoftBody3D::get_parent_collision_ignore);
  262. ClassDB::bind_method(D_METHOD("set_disable_mode", "mode"), &SoftBody3D::set_disable_mode);
  263. ClassDB::bind_method(D_METHOD("get_disable_mode"), &SoftBody3D::get_disable_mode);
  264. ClassDB::bind_method(D_METHOD("get_collision_exceptions"), &SoftBody3D::get_collision_exceptions);
  265. ClassDB::bind_method(D_METHOD("add_collision_exception_with", "body"), &SoftBody3D::add_collision_exception_with);
  266. ClassDB::bind_method(D_METHOD("remove_collision_exception_with", "body"), &SoftBody3D::remove_collision_exception_with);
  267. ClassDB::bind_method(D_METHOD("set_simulation_precision", "simulation_precision"), &SoftBody3D::set_simulation_precision);
  268. ClassDB::bind_method(D_METHOD("get_simulation_precision"), &SoftBody3D::get_simulation_precision);
  269. ClassDB::bind_method(D_METHOD("set_total_mass", "mass"), &SoftBody3D::set_total_mass);
  270. ClassDB::bind_method(D_METHOD("get_total_mass"), &SoftBody3D::get_total_mass);
  271. ClassDB::bind_method(D_METHOD("set_linear_stiffness", "linear_stiffness"), &SoftBody3D::set_linear_stiffness);
  272. ClassDB::bind_method(D_METHOD("get_linear_stiffness"), &SoftBody3D::get_linear_stiffness);
  273. ClassDB::bind_method(D_METHOD("set_pressure_coefficient", "pressure_coefficient"), &SoftBody3D::set_pressure_coefficient);
  274. ClassDB::bind_method(D_METHOD("get_pressure_coefficient"), &SoftBody3D::get_pressure_coefficient);
  275. ClassDB::bind_method(D_METHOD("set_damping_coefficient", "damping_coefficient"), &SoftBody3D::set_damping_coefficient);
  276. ClassDB::bind_method(D_METHOD("get_damping_coefficient"), &SoftBody3D::get_damping_coefficient);
  277. ClassDB::bind_method(D_METHOD("set_drag_coefficient", "drag_coefficient"), &SoftBody3D::set_drag_coefficient);
  278. ClassDB::bind_method(D_METHOD("get_drag_coefficient"), &SoftBody3D::get_drag_coefficient);
  279. ClassDB::bind_method(D_METHOD("get_point_transform", "point_index"), &SoftBody3D::get_point_transform);
  280. ClassDB::bind_method(D_METHOD("set_point_pinned", "point_index", "pinned", "attachment_path"), &SoftBody3D::pin_point, DEFVAL(NodePath()));
  281. ClassDB::bind_method(D_METHOD("is_point_pinned", "point_index"), &SoftBody3D::is_point_pinned);
  282. ClassDB::bind_method(D_METHOD("set_ray_pickable", "ray_pickable"), &SoftBody3D::set_ray_pickable);
  283. ClassDB::bind_method(D_METHOD("is_ray_pickable"), &SoftBody3D::is_ray_pickable);
  284. ADD_GROUP("Collision", "collision_");
  285. ADD_PROPERTY(PropertyInfo(Variant::INT, "collision_layer", PROPERTY_HINT_LAYERS_3D_PHYSICS), "set_collision_layer", "get_collision_layer");
  286. ADD_PROPERTY(PropertyInfo(Variant::INT, "collision_mask", PROPERTY_HINT_LAYERS_3D_PHYSICS), "set_collision_mask", "get_collision_mask");
  287. ADD_PROPERTY(PropertyInfo(Variant::NODE_PATH, "parent_collision_ignore", PROPERTY_HINT_NODE_PATH_VALID_TYPES, "CollisionObject3D"), "set_parent_collision_ignore", "get_parent_collision_ignore");
  288. ADD_PROPERTY(PropertyInfo(Variant::INT, "simulation_precision", PROPERTY_HINT_RANGE, "1,100,1"), "set_simulation_precision", "get_simulation_precision");
  289. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "total_mass", PROPERTY_HINT_RANGE, "0.01,10000,1"), "set_total_mass", "get_total_mass");
  290. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "linear_stiffness", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_linear_stiffness", "get_linear_stiffness");
  291. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "pressure_coefficient"), "set_pressure_coefficient", "get_pressure_coefficient");
  292. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "damping_coefficient", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_damping_coefficient", "get_damping_coefficient");
  293. ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "drag_coefficient", PROPERTY_HINT_RANGE, "0,1,0.01"), "set_drag_coefficient", "get_drag_coefficient");
  294. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "ray_pickable"), "set_ray_pickable", "is_ray_pickable");
  295. ADD_PROPERTY(PropertyInfo(Variant::INT, "disable_mode", PROPERTY_HINT_ENUM, "Remove,KeepActive"), "set_disable_mode", "get_disable_mode");
  296. BIND_ENUM_CONSTANT(DISABLE_MODE_REMOVE);
  297. BIND_ENUM_CONSTANT(DISABLE_MODE_KEEP_ACTIVE);
  298. }
  299. PackedStringArray SoftBody3D::get_configuration_warnings() const {
  300. PackedStringArray warnings = Node::get_configuration_warnings();
  301. if (mesh.is_null()) {
  302. warnings.push_back(RTR("This body will be ignored until you set a mesh."));
  303. }
  304. return warnings;
  305. }
  306. void SoftBody3D::_update_physics_server() {
  307. if (!simulation_started) {
  308. return;
  309. }
  310. _update_cache_pin_points_datas();
  311. // Submit bone attachment
  312. const int pinned_points_indices_size = pinned_points.size();
  313. const PinnedPoint *r = pinned_points.ptr();
  314. for (int i = 0; i < pinned_points_indices_size; ++i) {
  315. if (r[i].spatial_attachment) {
  316. PhysicsServer3D::get_singleton()->soft_body_move_point(physics_rid, r[i].point_index, r[i].spatial_attachment->get_global_transform().xform(r[i].offset));
  317. }
  318. }
  319. }
  320. void SoftBody3D::_draw_soft_mesh() {
  321. if (mesh.is_null()) {
  322. return;
  323. }
  324. RID mesh_rid = mesh->get_rid();
  325. if (owned_mesh != mesh_rid) {
  326. _become_mesh_owner();
  327. mesh_rid = mesh->get_rid();
  328. PhysicsServer3D::get_singleton()->soft_body_set_mesh(physics_rid, mesh_rid);
  329. }
  330. if (!rendering_server_handler->is_ready(mesh_rid)) {
  331. rendering_server_handler->prepare(mesh_rid, 0);
  332. /// Necessary in order to render the mesh correctly (Soft body nodes are in global space)
  333. simulation_started = true;
  334. call_deferred(SNAME("set_as_top_level"), true);
  335. call_deferred(SNAME("set_transform"), Transform3D());
  336. }
  337. _update_physics_server();
  338. rendering_server_handler->open();
  339. PhysicsServer3D::get_singleton()->soft_body_update_rendering_server(physics_rid, rendering_server_handler);
  340. rendering_server_handler->close();
  341. rendering_server_handler->commit_changes();
  342. }
  343. void SoftBody3D::_prepare_physics_server() {
  344. #ifdef TOOLS_ENABLED
  345. if (Engine::get_singleton()->is_editor_hint()) {
  346. if (mesh.is_valid()) {
  347. PhysicsServer3D::get_singleton()->soft_body_set_mesh(physics_rid, mesh->get_rid());
  348. } else {
  349. PhysicsServer3D::get_singleton()->soft_body_set_mesh(physics_rid, RID());
  350. }
  351. return;
  352. }
  353. #endif
  354. if (mesh.is_valid() && (is_enabled() || (disable_mode != DISABLE_MODE_REMOVE))) {
  355. RID mesh_rid = mesh->get_rid();
  356. if (owned_mesh != mesh_rid) {
  357. _become_mesh_owner();
  358. mesh_rid = mesh->get_rid();
  359. }
  360. PhysicsServer3D::get_singleton()->soft_body_set_mesh(physics_rid, mesh_rid);
  361. RS::get_singleton()->connect("frame_pre_draw", callable_mp(this, &SoftBody3D::_draw_soft_mesh));
  362. } else {
  363. PhysicsServer3D::get_singleton()->soft_body_set_mesh(physics_rid, RID());
  364. if (RS::get_singleton()->is_connected("frame_pre_draw", callable_mp(this, &SoftBody3D::_draw_soft_mesh))) {
  365. RS::get_singleton()->disconnect("frame_pre_draw", callable_mp(this, &SoftBody3D::_draw_soft_mesh));
  366. }
  367. }
  368. }
  369. void SoftBody3D::_become_mesh_owner() {
  370. Vector<Ref<Material>> copy_materials;
  371. copy_materials.append_array(surface_override_materials);
  372. ERR_FAIL_COND(!mesh->get_surface_count());
  373. // Get current mesh array and create new mesh array with necessary flag for SoftBody
  374. Array surface_arrays = mesh->surface_get_arrays(0);
  375. Array surface_blend_arrays = mesh->surface_get_blend_shape_arrays(0);
  376. Dictionary surface_lods = mesh->surface_get_lods(0);
  377. uint32_t surface_format = mesh->surface_get_format(0);
  378. surface_format |= Mesh::ARRAY_FLAG_USE_DYNAMIC_UPDATE;
  379. Ref<ArrayMesh> soft_mesh;
  380. soft_mesh.instantiate();
  381. soft_mesh->add_surface_from_arrays(Mesh::PRIMITIVE_TRIANGLES, surface_arrays, surface_blend_arrays, surface_lods, surface_format);
  382. soft_mesh->surface_set_material(0, mesh->surface_get_material(0));
  383. set_mesh(soft_mesh);
  384. for (int i = copy_materials.size() - 1; 0 <= i; --i) {
  385. set_surface_override_material(i, copy_materials[i]);
  386. }
  387. owned_mesh = soft_mesh->get_rid();
  388. }
  389. void SoftBody3D::set_collision_mask(uint32_t p_mask) {
  390. collision_mask = p_mask;
  391. PhysicsServer3D::get_singleton()->soft_body_set_collision_mask(physics_rid, p_mask);
  392. }
  393. uint32_t SoftBody3D::get_collision_mask() const {
  394. return collision_mask;
  395. }
  396. void SoftBody3D::set_collision_layer(uint32_t p_layer) {
  397. collision_layer = p_layer;
  398. PhysicsServer3D::get_singleton()->soft_body_set_collision_layer(physics_rid, p_layer);
  399. }
  400. uint32_t SoftBody3D::get_collision_layer() const {
  401. return collision_layer;
  402. }
  403. void SoftBody3D::set_collision_layer_value(int p_layer_number, bool p_value) {
  404. ERR_FAIL_COND_MSG(p_layer_number < 1, "Collision layer number must be between 1 and 32 inclusive.");
  405. ERR_FAIL_COND_MSG(p_layer_number > 32, "Collision layer number must be between 1 and 32 inclusive.");
  406. uint32_t collision_layer_new = get_collision_layer();
  407. if (p_value) {
  408. collision_layer_new |= 1 << (p_layer_number - 1);
  409. } else {
  410. collision_layer_new &= ~(1 << (p_layer_number - 1));
  411. }
  412. set_collision_layer(collision_layer_new);
  413. }
  414. bool SoftBody3D::get_collision_layer_value(int p_layer_number) const {
  415. ERR_FAIL_COND_V_MSG(p_layer_number < 1, false, "Collision layer number must be between 1 and 32 inclusive.");
  416. ERR_FAIL_COND_V_MSG(p_layer_number > 32, false, "Collision layer number must be between 1 and 32 inclusive.");
  417. return get_collision_layer() & (1 << (p_layer_number - 1));
  418. }
  419. void SoftBody3D::set_collision_mask_value(int p_layer_number, bool p_value) {
  420. ERR_FAIL_COND_MSG(p_layer_number < 1, "Collision layer number must be between 1 and 32 inclusive.");
  421. ERR_FAIL_COND_MSG(p_layer_number > 32, "Collision layer number must be between 1 and 32 inclusive.");
  422. uint32_t mask = get_collision_mask();
  423. if (p_value) {
  424. mask |= 1 << (p_layer_number - 1);
  425. } else {
  426. mask &= ~(1 << (p_layer_number - 1));
  427. }
  428. set_collision_mask(mask);
  429. }
  430. bool SoftBody3D::get_collision_mask_value(int p_layer_number) const {
  431. ERR_FAIL_COND_V_MSG(p_layer_number < 1, false, "Collision layer number must be between 1 and 32 inclusive.");
  432. ERR_FAIL_COND_V_MSG(p_layer_number > 32, false, "Collision layer number must be between 1 and 32 inclusive.");
  433. return get_collision_mask() & (1 << (p_layer_number - 1));
  434. }
  435. void SoftBody3D::set_disable_mode(DisableMode p_mode) {
  436. if (disable_mode == p_mode) {
  437. return;
  438. }
  439. disable_mode = p_mode;
  440. if (mesh.is_valid() && is_inside_tree() && !is_enabled()) {
  441. _prepare_physics_server();
  442. }
  443. }
  444. SoftBody3D::DisableMode SoftBody3D::get_disable_mode() const {
  445. return disable_mode;
  446. }
  447. void SoftBody3D::set_parent_collision_ignore(const NodePath &p_parent_collision_ignore) {
  448. parent_collision_ignore = p_parent_collision_ignore;
  449. }
  450. const NodePath &SoftBody3D::get_parent_collision_ignore() const {
  451. return parent_collision_ignore;
  452. }
  453. void SoftBody3D::set_pinned_points_indices(Vector<SoftBody3D::PinnedPoint> p_pinned_points_indices) {
  454. pinned_points = p_pinned_points_indices;
  455. for (int i = pinned_points.size() - 1; 0 <= i; --i) {
  456. pin_point(p_pinned_points_indices[i].point_index, true);
  457. }
  458. }
  459. Vector<SoftBody3D::PinnedPoint> SoftBody3D::get_pinned_points_indices() {
  460. return pinned_points;
  461. }
  462. TypedArray<PhysicsBody3D> SoftBody3D::get_collision_exceptions() {
  463. List<RID> exceptions;
  464. PhysicsServer3D::get_singleton()->soft_body_get_collision_exceptions(physics_rid, &exceptions);
  465. TypedArray<PhysicsBody3D> ret;
  466. for (const RID &body : exceptions) {
  467. ObjectID instance_id = PhysicsServer3D::get_singleton()->body_get_object_instance_id(body);
  468. Object *obj = ObjectDB::get_instance(instance_id);
  469. PhysicsBody3D *physics_body = Object::cast_to<PhysicsBody3D>(obj);
  470. ret.append(physics_body);
  471. }
  472. return ret;
  473. }
  474. void SoftBody3D::add_collision_exception_with(Node *p_node) {
  475. ERR_FAIL_NULL(p_node);
  476. CollisionObject3D *collision_object = Object::cast_to<CollisionObject3D>(p_node);
  477. ERR_FAIL_COND_MSG(!collision_object, "Collision exception only works between two nodes that inherit from CollisionObject3D (such as Area3D or PhysicsBody3D).");
  478. PhysicsServer3D::get_singleton()->soft_body_add_collision_exception(physics_rid, collision_object->get_rid());
  479. }
  480. void SoftBody3D::remove_collision_exception_with(Node *p_node) {
  481. ERR_FAIL_NULL(p_node);
  482. CollisionObject3D *collision_object = Object::cast_to<CollisionObject3D>(p_node);
  483. ERR_FAIL_COND_MSG(!collision_object, "Collision exception only works between two nodes that inherit from CollisionObject3D (such as Area3D or PhysicsBody3D).");
  484. PhysicsServer3D::get_singleton()->soft_body_remove_collision_exception(physics_rid, collision_object->get_rid());
  485. }
  486. int SoftBody3D::get_simulation_precision() {
  487. return PhysicsServer3D::get_singleton()->soft_body_get_simulation_precision(physics_rid);
  488. }
  489. void SoftBody3D::set_simulation_precision(int p_simulation_precision) {
  490. PhysicsServer3D::get_singleton()->soft_body_set_simulation_precision(physics_rid, p_simulation_precision);
  491. }
  492. real_t SoftBody3D::get_total_mass() {
  493. return PhysicsServer3D::get_singleton()->soft_body_get_total_mass(physics_rid);
  494. }
  495. void SoftBody3D::set_total_mass(real_t p_total_mass) {
  496. PhysicsServer3D::get_singleton()->soft_body_set_total_mass(physics_rid, p_total_mass);
  497. }
  498. void SoftBody3D::set_linear_stiffness(real_t p_linear_stiffness) {
  499. PhysicsServer3D::get_singleton()->soft_body_set_linear_stiffness(physics_rid, p_linear_stiffness);
  500. }
  501. real_t SoftBody3D::get_linear_stiffness() {
  502. return PhysicsServer3D::get_singleton()->soft_body_get_linear_stiffness(physics_rid);
  503. }
  504. real_t SoftBody3D::get_pressure_coefficient() {
  505. return PhysicsServer3D::get_singleton()->soft_body_get_pressure_coefficient(physics_rid);
  506. }
  507. void SoftBody3D::set_pressure_coefficient(real_t p_pressure_coefficient) {
  508. PhysicsServer3D::get_singleton()->soft_body_set_pressure_coefficient(physics_rid, p_pressure_coefficient);
  509. }
  510. real_t SoftBody3D::get_damping_coefficient() {
  511. return PhysicsServer3D::get_singleton()->soft_body_get_damping_coefficient(physics_rid);
  512. }
  513. void SoftBody3D::set_damping_coefficient(real_t p_damping_coefficient) {
  514. PhysicsServer3D::get_singleton()->soft_body_set_damping_coefficient(physics_rid, p_damping_coefficient);
  515. }
  516. real_t SoftBody3D::get_drag_coefficient() {
  517. return PhysicsServer3D::get_singleton()->soft_body_get_drag_coefficient(physics_rid);
  518. }
  519. void SoftBody3D::set_drag_coefficient(real_t p_drag_coefficient) {
  520. PhysicsServer3D::get_singleton()->soft_body_set_drag_coefficient(physics_rid, p_drag_coefficient);
  521. }
  522. Vector3 SoftBody3D::get_point_transform(int p_point_index) {
  523. return PhysicsServer3D::get_singleton()->soft_body_get_point_global_position(physics_rid, p_point_index);
  524. }
  525. void SoftBody3D::pin_point_toggle(int p_point_index) {
  526. pin_point(p_point_index, !(-1 != _has_pinned_point(p_point_index)));
  527. }
  528. void SoftBody3D::pin_point(int p_point_index, bool pin, const NodePath &p_spatial_attachment_path) {
  529. _pin_point_on_physics_server(p_point_index, pin);
  530. if (pin) {
  531. _add_pinned_point(p_point_index, p_spatial_attachment_path);
  532. } else {
  533. _remove_pinned_point(p_point_index);
  534. }
  535. }
  536. void SoftBody3D::_pin_point_deferred(int p_point_index, bool pin, const NodePath p_spatial_attachment_path) {
  537. pin_point(p_point_index, pin, p_spatial_attachment_path);
  538. _make_cache_dirty();
  539. }
  540. bool SoftBody3D::is_point_pinned(int p_point_index) const {
  541. return -1 != _has_pinned_point(p_point_index);
  542. }
  543. void SoftBody3D::set_ray_pickable(bool p_ray_pickable) {
  544. ray_pickable = p_ray_pickable;
  545. _update_pickable();
  546. }
  547. bool SoftBody3D::is_ray_pickable() const {
  548. return ray_pickable;
  549. }
  550. SoftBody3D::SoftBody3D() :
  551. physics_rid(PhysicsServer3D::get_singleton()->soft_body_create()) {
  552. rendering_server_handler = memnew(SoftBodyRenderingServerHandler);
  553. PhysicsServer3D::get_singleton()->body_attach_object_instance_id(physics_rid, get_instance_id());
  554. }
  555. SoftBody3D::~SoftBody3D() {
  556. memdelete(rendering_server_handler);
  557. ERR_FAIL_NULL(PhysicsServer3D::get_singleton());
  558. PhysicsServer3D::get_singleton()->free(physics_rid);
  559. }
  560. void SoftBody3D::_make_cache_dirty() {
  561. pinned_points_cache_dirty = true;
  562. }
  563. void SoftBody3D::_update_cache_pin_points_datas() {
  564. if (!pinned_points_cache_dirty) {
  565. return;
  566. }
  567. pinned_points_cache_dirty = false;
  568. PinnedPoint *w = pinned_points.ptrw();
  569. for (int i = pinned_points.size() - 1; 0 <= i; --i) {
  570. if (!w[i].spatial_attachment_path.is_empty()) {
  571. w[i].spatial_attachment = Object::cast_to<Node3D>(get_node(w[i].spatial_attachment_path));
  572. }
  573. if (!w[i].spatial_attachment) {
  574. ERR_PRINT("Node3D node not defined in the pinned point, this is undefined behavior for SoftBody3D!");
  575. }
  576. }
  577. }
  578. void SoftBody3D::_pin_point_on_physics_server(int p_point_index, bool pin) {
  579. PhysicsServer3D::get_singleton()->soft_body_pin_point(physics_rid, p_point_index, pin);
  580. }
  581. void SoftBody3D::_add_pinned_point(int p_point_index, const NodePath &p_spatial_attachment_path) {
  582. SoftBody3D::PinnedPoint *pinned_point;
  583. if (-1 == _get_pinned_point(p_point_index, pinned_point)) {
  584. // Create new
  585. PinnedPoint pp;
  586. pp.point_index = p_point_index;
  587. pp.spatial_attachment_path = p_spatial_attachment_path;
  588. if (!p_spatial_attachment_path.is_empty() && has_node(p_spatial_attachment_path)) {
  589. pp.spatial_attachment = Object::cast_to<Node3D>(get_node(p_spatial_attachment_path));
  590. pp.offset = (pp.spatial_attachment->get_global_transform().affine_inverse() * get_global_transform()).xform(PhysicsServer3D::get_singleton()->soft_body_get_point_global_position(physics_rid, pp.point_index));
  591. }
  592. pinned_points.push_back(pp);
  593. } else {
  594. pinned_point->point_index = p_point_index;
  595. pinned_point->spatial_attachment_path = p_spatial_attachment_path;
  596. if (!p_spatial_attachment_path.is_empty() && has_node(p_spatial_attachment_path)) {
  597. Node3D *attachment_node = Object::cast_to<Node3D>(get_node(p_spatial_attachment_path));
  598. ERR_FAIL_NULL_MSG(attachment_node, "Attachment node path is invalid.");
  599. pinned_point->spatial_attachment = attachment_node;
  600. pinned_point->offset = (pinned_point->spatial_attachment->get_global_transform().affine_inverse() * get_global_transform()).xform(PhysicsServer3D::get_singleton()->soft_body_get_point_global_position(physics_rid, pinned_point->point_index));
  601. }
  602. }
  603. }
  604. void SoftBody3D::_reset_points_offsets() {
  605. if (!Engine::get_singleton()->is_editor_hint()) {
  606. return;
  607. }
  608. const PinnedPoint *r = pinned_points.ptr();
  609. PinnedPoint *w = pinned_points.ptrw();
  610. for (int i = pinned_points.size() - 1; 0 <= i; --i) {
  611. if (!r[i].spatial_attachment) {
  612. if (!r[i].spatial_attachment_path.is_empty() && has_node(r[i].spatial_attachment_path)) {
  613. w[i].spatial_attachment = Object::cast_to<Node3D>(get_node(r[i].spatial_attachment_path));
  614. }
  615. }
  616. if (!r[i].spatial_attachment) {
  617. continue;
  618. }
  619. w[i].offset = (r[i].spatial_attachment->get_global_transform().affine_inverse() * get_global_transform()).xform(PhysicsServer3D::get_singleton()->soft_body_get_point_global_position(physics_rid, r[i].point_index));
  620. }
  621. }
  622. void SoftBody3D::_remove_pinned_point(int p_point_index) {
  623. const int id(_has_pinned_point(p_point_index));
  624. if (-1 != id) {
  625. pinned_points.remove_at(id);
  626. }
  627. }
  628. int SoftBody3D::_get_pinned_point(int p_point_index, SoftBody3D::PinnedPoint *&r_point) const {
  629. const int id = _has_pinned_point(p_point_index);
  630. if (-1 == id) {
  631. r_point = nullptr;
  632. return -1;
  633. } else {
  634. r_point = const_cast<SoftBody3D::PinnedPoint *>(&pinned_points.ptr()[id]);
  635. return id;
  636. }
  637. }
  638. int SoftBody3D::_has_pinned_point(int p_point_index) const {
  639. const PinnedPoint *r = pinned_points.ptr();
  640. for (int i = pinned_points.size() - 1; 0 <= i; --i) {
  641. if (p_point_index == r[i].point_index) {
  642. return i;
  643. }
  644. }
  645. return -1;
  646. }