grid_map.cpp 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148
  1. /*************************************************************************/
  2. /* grid_map.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
  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 "grid_map.h"
  31. #include "core/io/marshalls.h"
  32. #include "core/message_queue.h"
  33. #include "scene/3d/light.h"
  34. #include "scene/resources/mesh_library.h"
  35. #include "scene/resources/surface_tool.h"
  36. #include "scene/scene_string_names.h"
  37. #include "servers/visual_server.h"
  38. bool GridMap::_set(const StringName &p_name, const Variant &p_value) {
  39. String name = p_name;
  40. if (name == "data") {
  41. Dictionary d = p_value;
  42. if (d.has("cells")) {
  43. PoolVector<int> cells = d["cells"];
  44. int amount = cells.size();
  45. PoolVector<int>::Read r = cells.read();
  46. ERR_FAIL_COND_V(amount % 3, false); // not even
  47. cell_map.clear();
  48. for (int i = 0; i < amount / 3; i++) {
  49. IndexKey ik;
  50. ik.key = decode_uint64((const uint8_t *)&r[i * 3]);
  51. Cell cell;
  52. cell.cell = decode_uint32((const uint8_t *)&r[i * 3 + 2]);
  53. cell_map[ik] = cell;
  54. }
  55. }
  56. _recreate_octant_data();
  57. } else if (name == "baked_meshes") {
  58. clear_baked_meshes();
  59. Array meshes = p_value;
  60. for (int i = 0; i < meshes.size(); i++) {
  61. BakedMesh bm;
  62. bm.mesh = meshes[i];
  63. ERR_CONTINUE(!bm.mesh.is_valid());
  64. bm.instance = VS::get_singleton()->instance_create();
  65. VS::get_singleton()->get_singleton()->instance_set_base(bm.instance, bm.mesh->get_rid());
  66. VS::get_singleton()->instance_attach_object_instance_id(bm.instance, get_instance_id());
  67. if (is_inside_tree()) {
  68. VS::get_singleton()->instance_set_scenario(bm.instance, get_world()->get_scenario());
  69. VS::get_singleton()->instance_set_transform(bm.instance, get_global_transform());
  70. }
  71. baked_meshes.push_back(bm);
  72. }
  73. _recreate_octant_data();
  74. } else {
  75. return false;
  76. }
  77. return true;
  78. }
  79. bool GridMap::_get(const StringName &p_name, Variant &r_ret) const {
  80. String name = p_name;
  81. if (name == "data") {
  82. Dictionary d;
  83. PoolVector<int> cells;
  84. cells.resize(cell_map.size() * 3);
  85. {
  86. PoolVector<int>::Write w = cells.write();
  87. int i = 0;
  88. for (Map<IndexKey, Cell>::Element *E = cell_map.front(); E; E = E->next(), i++) {
  89. encode_uint64(E->key().key, (uint8_t *)&w[i * 3]);
  90. encode_uint32(E->get().cell, (uint8_t *)&w[i * 3 + 2]);
  91. }
  92. }
  93. d["cells"] = cells;
  94. r_ret = d;
  95. } else if (name == "baked_meshes") {
  96. Array ret;
  97. ret.resize(baked_meshes.size());
  98. for (int i = 0; i < baked_meshes.size(); i++) {
  99. ret.push_back(baked_meshes[i].mesh);
  100. }
  101. r_ret = ret;
  102. } else
  103. return false;
  104. return true;
  105. }
  106. void GridMap::_get_property_list(List<PropertyInfo> *p_list) const {
  107. if (baked_meshes.size()) {
  108. p_list->push_back(PropertyInfo(Variant::ARRAY, "baked_meshes", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_STORAGE));
  109. }
  110. p_list->push_back(PropertyInfo(Variant::DICTIONARY, "data", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_STORAGE));
  111. }
  112. void GridMap::set_collision_layer(uint32_t p_layer) {
  113. collision_layer = p_layer;
  114. _reset_physic_bodies_collision_filters();
  115. }
  116. uint32_t GridMap::get_collision_layer() const {
  117. return collision_layer;
  118. }
  119. void GridMap::set_collision_mask(uint32_t p_mask) {
  120. collision_mask = p_mask;
  121. _reset_physic_bodies_collision_filters();
  122. }
  123. uint32_t GridMap::get_collision_mask() const {
  124. return collision_mask;
  125. }
  126. void GridMap::set_collision_mask_bit(int p_bit, bool p_value) {
  127. uint32_t mask = get_collision_mask();
  128. if (p_value)
  129. mask |= 1 << p_bit;
  130. else
  131. mask &= ~(1 << p_bit);
  132. set_collision_mask(mask);
  133. }
  134. bool GridMap::get_collision_mask_bit(int p_bit) const {
  135. return get_collision_mask() & (1 << p_bit);
  136. }
  137. void GridMap::set_collision_layer_bit(int p_bit, bool p_value) {
  138. uint32_t mask = get_collision_layer();
  139. if (p_value)
  140. mask |= 1 << p_bit;
  141. else
  142. mask &= ~(1 << p_bit);
  143. set_collision_layer(mask);
  144. }
  145. bool GridMap::get_collision_layer_bit(int p_bit) const {
  146. return get_collision_layer() & (1 << p_bit);
  147. }
  148. #ifndef DISABLE_DEPRECATED
  149. void GridMap::set_theme(const Ref<MeshLibrary> &p_theme) {
  150. ERR_EXPLAIN("GridMap.theme/set_theme() is deprecated and will be removed in a future version. Use GridMap.mesh_library/set_mesh_library() instead.");
  151. WARN_DEPRECATED
  152. set_mesh_library(p_theme);
  153. }
  154. Ref<MeshLibrary> GridMap::get_theme() const {
  155. ERR_EXPLAIN("GridMap.theme/get_theme() is deprecated and will be removed in a future version. Use GridMap.mesh_library/get_mesh_library() instead.");
  156. WARN_DEPRECATED
  157. return get_mesh_library();
  158. }
  159. #endif // DISABLE_DEPRECATED
  160. void GridMap::set_mesh_library(const Ref<MeshLibrary> &p_mesh_library) {
  161. if (!mesh_library.is_null())
  162. mesh_library->unregister_owner(this);
  163. mesh_library = p_mesh_library;
  164. if (!mesh_library.is_null())
  165. mesh_library->register_owner(this);
  166. _recreate_octant_data();
  167. _change_notify("mesh_library");
  168. }
  169. Ref<MeshLibrary> GridMap::get_mesh_library() const {
  170. return mesh_library;
  171. }
  172. void GridMap::set_cell_size(const Vector3 &p_size) {
  173. ERR_FAIL_COND(p_size.x < 0.001 || p_size.y < 0.001 || p_size.z < 0.001);
  174. cell_size = p_size;
  175. _recreate_octant_data();
  176. }
  177. Vector3 GridMap::get_cell_size() const {
  178. return cell_size;
  179. }
  180. void GridMap::set_octant_size(int p_size) {
  181. octant_size = p_size;
  182. _recreate_octant_data();
  183. }
  184. int GridMap::get_octant_size() const {
  185. return octant_size;
  186. }
  187. void GridMap::set_center_x(bool p_enable) {
  188. center_x = p_enable;
  189. _recreate_octant_data();
  190. }
  191. bool GridMap::get_center_x() const {
  192. return center_x;
  193. }
  194. void GridMap::set_center_y(bool p_enable) {
  195. center_y = p_enable;
  196. _recreate_octant_data();
  197. }
  198. bool GridMap::get_center_y() const {
  199. return center_y;
  200. }
  201. void GridMap::set_center_z(bool p_enable) {
  202. center_z = p_enable;
  203. _recreate_octant_data();
  204. }
  205. bool GridMap::get_center_z() const {
  206. return center_z;
  207. }
  208. void GridMap::set_cell_item(int p_x, int p_y, int p_z, int p_item, int p_rot) {
  209. if (baked_meshes.size() && !recreating_octants) {
  210. //if you set a cell item, baked meshes go good bye
  211. clear_baked_meshes();
  212. _recreate_octant_data();
  213. }
  214. ERR_FAIL_INDEX(ABS(p_x), 1 << 20);
  215. ERR_FAIL_INDEX(ABS(p_y), 1 << 20);
  216. ERR_FAIL_INDEX(ABS(p_z), 1 << 20);
  217. IndexKey key;
  218. key.x = p_x;
  219. key.y = p_y;
  220. key.z = p_z;
  221. OctantKey ok;
  222. ok.x = p_x / octant_size;
  223. ok.y = p_y / octant_size;
  224. ok.z = p_z / octant_size;
  225. if (p_item < 0) {
  226. //erase
  227. if (cell_map.has(key)) {
  228. OctantKey octantkey = ok;
  229. ERR_FAIL_COND(!octant_map.has(octantkey));
  230. Octant &g = *octant_map[octantkey];
  231. g.cells.erase(key);
  232. g.dirty = true;
  233. cell_map.erase(key);
  234. _queue_octants_dirty();
  235. }
  236. return;
  237. }
  238. OctantKey octantkey = ok;
  239. if (!octant_map.has(octantkey)) {
  240. //create octant because it does not exist
  241. Octant *g = memnew(Octant);
  242. g->dirty = true;
  243. g->static_body = PhysicsServer::get_singleton()->body_create(PhysicsServer::BODY_MODE_STATIC);
  244. PhysicsServer::get_singleton()->body_attach_object_instance_id(g->static_body, get_instance_id());
  245. PhysicsServer::get_singleton()->body_set_collision_layer(g->static_body, collision_layer);
  246. PhysicsServer::get_singleton()->body_set_collision_mask(g->static_body, collision_mask);
  247. SceneTree *st = SceneTree::get_singleton();
  248. if (st && st->is_debugging_collisions_hint()) {
  249. g->collision_debug = VisualServer::get_singleton()->mesh_create();
  250. g->collision_debug_instance = VisualServer::get_singleton()->instance_create();
  251. VisualServer::get_singleton()->instance_set_base(g->collision_debug_instance, g->collision_debug);
  252. }
  253. octant_map[octantkey] = g;
  254. if (is_inside_world()) {
  255. _octant_enter_world(octantkey);
  256. _octant_transform(octantkey);
  257. }
  258. }
  259. Octant &g = *octant_map[octantkey];
  260. g.cells.insert(key);
  261. g.dirty = true;
  262. _queue_octants_dirty();
  263. Cell c;
  264. c.item = p_item;
  265. c.rot = p_rot;
  266. cell_map[key] = c;
  267. }
  268. int GridMap::get_cell_item(int p_x, int p_y, int p_z) const {
  269. ERR_FAIL_INDEX_V(ABS(p_x), 1 << 20, INVALID_CELL_ITEM);
  270. ERR_FAIL_INDEX_V(ABS(p_y), 1 << 20, INVALID_CELL_ITEM);
  271. ERR_FAIL_INDEX_V(ABS(p_z), 1 << 20, INVALID_CELL_ITEM);
  272. IndexKey key;
  273. key.x = p_x;
  274. key.y = p_y;
  275. key.z = p_z;
  276. if (!cell_map.has(key))
  277. return INVALID_CELL_ITEM;
  278. return cell_map[key].item;
  279. }
  280. int GridMap::get_cell_item_orientation(int p_x, int p_y, int p_z) const {
  281. ERR_FAIL_INDEX_V(ABS(p_x), 1 << 20, -1);
  282. ERR_FAIL_INDEX_V(ABS(p_y), 1 << 20, -1);
  283. ERR_FAIL_INDEX_V(ABS(p_z), 1 << 20, -1);
  284. IndexKey key;
  285. key.x = p_x;
  286. key.y = p_y;
  287. key.z = p_z;
  288. if (!cell_map.has(key))
  289. return -1;
  290. return cell_map[key].rot;
  291. }
  292. Vector3 GridMap::world_to_map(const Vector3 &p_world_pos) const {
  293. Vector3 map_pos = p_world_pos / cell_size;
  294. map_pos.x = floor(map_pos.x);
  295. map_pos.y = floor(map_pos.y);
  296. map_pos.z = floor(map_pos.z);
  297. return map_pos;
  298. }
  299. Vector3 GridMap::map_to_world(int p_x, int p_y, int p_z) const {
  300. Vector3 offset = _get_offset();
  301. Vector3 world_pos(
  302. p_x * cell_size.x + offset.x,
  303. p_y * cell_size.y + offset.y,
  304. p_z * cell_size.z + offset.z);
  305. return world_pos;
  306. }
  307. void GridMap::_octant_transform(const OctantKey &p_key) {
  308. ERR_FAIL_COND(!octant_map.has(p_key));
  309. Octant &g = *octant_map[p_key];
  310. PhysicsServer::get_singleton()->body_set_state(g.static_body, PhysicsServer::BODY_STATE_TRANSFORM, get_global_transform());
  311. if (g.collision_debug_instance.is_valid()) {
  312. VS::get_singleton()->instance_set_transform(g.collision_debug_instance, get_global_transform());
  313. }
  314. for (int i = 0; i < g.multimesh_instances.size(); i++) {
  315. VS::get_singleton()->instance_set_transform(g.multimesh_instances[i].instance, get_global_transform());
  316. }
  317. }
  318. bool GridMap::_octant_update(const OctantKey &p_key) {
  319. ERR_FAIL_COND_V(!octant_map.has(p_key), false);
  320. Octant &g = *octant_map[p_key];
  321. if (!g.dirty)
  322. return false;
  323. //erase body shapes
  324. PhysicsServer::get_singleton()->body_clear_shapes(g.static_body);
  325. //erase body shapes debug
  326. if (g.collision_debug.is_valid()) {
  327. VS::get_singleton()->mesh_clear(g.collision_debug);
  328. }
  329. //erase navigation
  330. if (navigation) {
  331. for (Map<IndexKey, Octant::NavMesh>::Element *E = g.navmesh_ids.front(); E; E = E->next()) {
  332. navigation->navmesh_remove(E->get().id);
  333. }
  334. g.navmesh_ids.clear();
  335. }
  336. //erase multimeshes
  337. for (int i = 0; i < g.multimesh_instances.size(); i++) {
  338. VS::get_singleton()->free(g.multimesh_instances[i].instance);
  339. VS::get_singleton()->free(g.multimesh_instances[i].multimesh);
  340. }
  341. g.multimesh_instances.clear();
  342. if (g.cells.size() == 0) {
  343. //octant no longer needed
  344. _octant_clean_up(p_key);
  345. return true;
  346. }
  347. PoolVector<Vector3> col_debug;
  348. /*
  349. * foreach item in this octant,
  350. * set item's multimesh's instance count to number of cells which have this item
  351. * and set said multimesh bounding box to one containing all cells which have this item
  352. */
  353. Map<int, List<Pair<Transform, IndexKey> > > multimesh_items;
  354. for (Set<IndexKey>::Element *E = g.cells.front(); E; E = E->next()) {
  355. ERR_CONTINUE(!cell_map.has(E->get()));
  356. const Cell &c = cell_map[E->get()];
  357. if (!mesh_library.is_valid() || !mesh_library->has_item(c.item))
  358. continue;
  359. Vector3 cellpos = Vector3(E->get().x, E->get().y, E->get().z);
  360. Vector3 ofs = _get_offset();
  361. Transform xform;
  362. if (clip && ((clip_above && cellpos[clip_axis] > clip_floor) || (!clip_above && cellpos[clip_axis] < clip_floor))) {
  363. } else {
  364. }
  365. xform.basis.set_orthogonal_index(c.rot);
  366. xform.set_origin(cellpos * cell_size + ofs);
  367. xform.basis.scale(Vector3(cell_scale, cell_scale, cell_scale));
  368. if (baked_meshes.size() == 0) {
  369. if (mesh_library->get_item_mesh(c.item).is_valid()) {
  370. if (!multimesh_items.has(c.item)) {
  371. multimesh_items[c.item] = List<Pair<Transform, IndexKey> >();
  372. }
  373. Pair<Transform, IndexKey> p;
  374. p.first = xform;
  375. p.second = E->get();
  376. multimesh_items[c.item].push_back(p);
  377. }
  378. }
  379. Vector<MeshLibrary::ShapeData> shapes = mesh_library->get_item_shapes(c.item);
  380. // add the item's shape at given xform to octant's static_body
  381. for (int i = 0; i < shapes.size(); i++) {
  382. // add the item's shape
  383. if (!shapes[i].shape.is_valid())
  384. continue;
  385. PhysicsServer::get_singleton()->body_add_shape(g.static_body, shapes[i].shape->get_rid(), xform * shapes[i].local_transform);
  386. if (g.collision_debug.is_valid()) {
  387. shapes.write[i].shape->add_vertices_to_array(col_debug, xform * shapes[i].local_transform);
  388. }
  389. }
  390. // add the item's navmesh at given xform to GridMap's Navigation ancestor
  391. Ref<NavigationMesh> navmesh = mesh_library->get_item_navmesh(c.item);
  392. if (navmesh.is_valid()) {
  393. Octant::NavMesh nm;
  394. nm.xform = xform;
  395. if (navigation) {
  396. nm.id = navigation->navmesh_add(navmesh, xform, this);
  397. } else {
  398. nm.id = -1;
  399. }
  400. g.navmesh_ids[E->get()] = nm;
  401. }
  402. }
  403. //update multimeshes, only if not baked
  404. if (baked_meshes.size() == 0) {
  405. for (Map<int, List<Pair<Transform, IndexKey> > >::Element *E = multimesh_items.front(); E; E = E->next()) {
  406. Octant::MultimeshInstance mmi;
  407. RID mm = VS::get_singleton()->multimesh_create();
  408. VS::get_singleton()->multimesh_allocate(mm, E->get().size(), VS::MULTIMESH_TRANSFORM_3D, VS::MULTIMESH_COLOR_NONE);
  409. VS::get_singleton()->multimesh_set_mesh(mm, mesh_library->get_item_mesh(E->key())->get_rid());
  410. int idx = 0;
  411. for (List<Pair<Transform, IndexKey> >::Element *F = E->get().front(); F; F = F->next()) {
  412. VS::get_singleton()->multimesh_instance_set_transform(mm, idx, F->get().first);
  413. #ifdef TOOLS_ENABLED
  414. Octant::MultimeshInstance::Item it;
  415. it.index = idx;
  416. it.transform = F->get().first;
  417. it.key = F->get().second;
  418. mmi.items.push_back(it);
  419. #endif
  420. idx++;
  421. }
  422. RID instance = VS::get_singleton()->instance_create();
  423. VS::get_singleton()->instance_set_base(instance, mm);
  424. if (is_inside_tree()) {
  425. VS::get_singleton()->instance_set_scenario(instance, get_world()->get_scenario());
  426. VS::get_singleton()->instance_set_transform(instance, get_global_transform());
  427. }
  428. mmi.multimesh = mm;
  429. mmi.instance = instance;
  430. g.multimesh_instances.push_back(mmi);
  431. }
  432. }
  433. if (col_debug.size()) {
  434. Array arr;
  435. arr.resize(VS::ARRAY_MAX);
  436. arr[VS::ARRAY_VERTEX] = col_debug;
  437. VS::get_singleton()->mesh_add_surface_from_arrays(g.collision_debug, VS::PRIMITIVE_LINES, arr);
  438. SceneTree *st = SceneTree::get_singleton();
  439. if (st) {
  440. VS::get_singleton()->mesh_surface_set_material(g.collision_debug, 0, st->get_debug_collision_material()->get_rid());
  441. }
  442. }
  443. g.dirty = false;
  444. return false;
  445. }
  446. void GridMap::_reset_physic_bodies_collision_filters() {
  447. for (Map<OctantKey, Octant *>::Element *E = octant_map.front(); E; E = E->next()) {
  448. PhysicsServer::get_singleton()->body_set_collision_layer(E->get()->static_body, collision_layer);
  449. PhysicsServer::get_singleton()->body_set_collision_mask(E->get()->static_body, collision_mask);
  450. }
  451. }
  452. void GridMap::_octant_enter_world(const OctantKey &p_key) {
  453. ERR_FAIL_COND(!octant_map.has(p_key));
  454. Octant &g = *octant_map[p_key];
  455. PhysicsServer::get_singleton()->body_set_state(g.static_body, PhysicsServer::BODY_STATE_TRANSFORM, get_global_transform());
  456. PhysicsServer::get_singleton()->body_set_space(g.static_body, get_world()->get_space());
  457. if (g.collision_debug_instance.is_valid()) {
  458. VS::get_singleton()->instance_set_scenario(g.collision_debug_instance, get_world()->get_scenario());
  459. VS::get_singleton()->instance_set_transform(g.collision_debug_instance, get_global_transform());
  460. }
  461. for (int i = 0; i < g.multimesh_instances.size(); i++) {
  462. VS::get_singleton()->instance_set_scenario(g.multimesh_instances[i].instance, get_world()->get_scenario());
  463. VS::get_singleton()->instance_set_transform(g.multimesh_instances[i].instance, get_global_transform());
  464. }
  465. if (navigation && mesh_library.is_valid()) {
  466. for (Map<IndexKey, Octant::NavMesh>::Element *F = g.navmesh_ids.front(); F; F = F->next()) {
  467. if (cell_map.has(F->key()) && F->get().id < 0) {
  468. Ref<NavigationMesh> nm = mesh_library->get_item_navmesh(cell_map[F->key()].item);
  469. if (nm.is_valid()) {
  470. F->get().id = navigation->navmesh_add(nm, F->get().xform, this);
  471. }
  472. }
  473. }
  474. }
  475. }
  476. void GridMap::_octant_exit_world(const OctantKey &p_key) {
  477. ERR_FAIL_COND(!octant_map.has(p_key));
  478. Octant &g = *octant_map[p_key];
  479. PhysicsServer::get_singleton()->body_set_state(g.static_body, PhysicsServer::BODY_STATE_TRANSFORM, get_global_transform());
  480. PhysicsServer::get_singleton()->body_set_space(g.static_body, RID());
  481. if (g.collision_debug_instance.is_valid()) {
  482. VS::get_singleton()->instance_set_scenario(g.collision_debug_instance, RID());
  483. }
  484. for (int i = 0; i < g.multimesh_instances.size(); i++) {
  485. VS::get_singleton()->instance_set_scenario(g.multimesh_instances[i].instance, RID());
  486. }
  487. if (navigation) {
  488. for (Map<IndexKey, Octant::NavMesh>::Element *F = g.navmesh_ids.front(); F; F = F->next()) {
  489. if (F->get().id >= 0) {
  490. navigation->navmesh_remove(F->get().id);
  491. F->get().id = -1;
  492. }
  493. }
  494. }
  495. }
  496. void GridMap::_octant_clean_up(const OctantKey &p_key) {
  497. ERR_FAIL_COND(!octant_map.has(p_key));
  498. Octant &g = *octant_map[p_key];
  499. if (g.collision_debug.is_valid())
  500. VS::get_singleton()->free(g.collision_debug);
  501. if (g.collision_debug_instance.is_valid())
  502. VS::get_singleton()->free(g.collision_debug_instance);
  503. PhysicsServer::get_singleton()->free(g.static_body);
  504. //erase navigation
  505. if (navigation) {
  506. for (Map<IndexKey, Octant::NavMesh>::Element *E = g.navmesh_ids.front(); E; E = E->next()) {
  507. navigation->navmesh_remove(E->get().id);
  508. }
  509. g.navmesh_ids.clear();
  510. }
  511. //erase multimeshes
  512. for (int i = 0; i < g.multimesh_instances.size(); i++) {
  513. VS::get_singleton()->free(g.multimesh_instances[i].instance);
  514. VS::get_singleton()->free(g.multimesh_instances[i].multimesh);
  515. }
  516. g.multimesh_instances.clear();
  517. }
  518. void GridMap::_notification(int p_what) {
  519. switch (p_what) {
  520. case NOTIFICATION_ENTER_WORLD: {
  521. Spatial *c = this;
  522. while (c) {
  523. navigation = Object::cast_to<Navigation>(c);
  524. if (navigation) {
  525. break;
  526. }
  527. c = Object::cast_to<Spatial>(c->get_parent());
  528. }
  529. last_transform = get_global_transform();
  530. for (Map<OctantKey, Octant *>::Element *E = octant_map.front(); E; E = E->next()) {
  531. _octant_enter_world(E->key());
  532. }
  533. for (int i = 0; i < baked_meshes.size(); i++) {
  534. VS::get_singleton()->instance_set_scenario(baked_meshes[i].instance, get_world()->get_scenario());
  535. VS::get_singleton()->instance_set_transform(baked_meshes[i].instance, get_global_transform());
  536. }
  537. } break;
  538. case NOTIFICATION_TRANSFORM_CHANGED: {
  539. Transform new_xform = get_global_transform();
  540. if (new_xform == last_transform)
  541. break;
  542. //update run
  543. for (Map<OctantKey, Octant *>::Element *E = octant_map.front(); E; E = E->next()) {
  544. _octant_transform(E->key());
  545. }
  546. last_transform = new_xform;
  547. for (int i = 0; i < baked_meshes.size(); i++) {
  548. VS::get_singleton()->instance_set_transform(baked_meshes[i].instance, get_global_transform());
  549. }
  550. } break;
  551. case NOTIFICATION_EXIT_WORLD: {
  552. for (Map<OctantKey, Octant *>::Element *E = octant_map.front(); E; E = E->next()) {
  553. _octant_exit_world(E->key());
  554. }
  555. navigation = NULL;
  556. //_queue_octants_dirty(MAP_DIRTY_INSTANCES|MAP_DIRTY_TRANSFORMS);
  557. //_update_octants_callback();
  558. //_update_area_instances();
  559. for (int i = 0; i < baked_meshes.size(); i++) {
  560. VS::get_singleton()->instance_set_scenario(baked_meshes[i].instance, RID());
  561. }
  562. } break;
  563. case NOTIFICATION_VISIBILITY_CHANGED: {
  564. _update_visibility();
  565. } break;
  566. }
  567. }
  568. void GridMap::_update_visibility() {
  569. if (!is_inside_tree())
  570. return;
  571. _change_notify("visible");
  572. for (Map<OctantKey, Octant *>::Element *e = octant_map.front(); e; e = e->next()) {
  573. Octant *octant = e->value();
  574. for (int i = 0; i < octant->multimesh_instances.size(); i++) {
  575. const Octant::MultimeshInstance &mi = octant->multimesh_instances[i];
  576. VS::get_singleton()->instance_set_visible(mi.instance, is_visible());
  577. }
  578. }
  579. }
  580. void GridMap::_queue_octants_dirty() {
  581. if (awaiting_update)
  582. return;
  583. MessageQueue::get_singleton()->push_call(this, "_update_octants_callback");
  584. awaiting_update = true;
  585. }
  586. void GridMap::_recreate_octant_data() {
  587. recreating_octants = true;
  588. Map<IndexKey, Cell> cell_copy = cell_map;
  589. _clear_internal();
  590. for (Map<IndexKey, Cell>::Element *E = cell_copy.front(); E; E = E->next()) {
  591. set_cell_item(E->key().x, E->key().y, E->key().z, E->get().item, E->get().rot);
  592. }
  593. recreating_octants = false;
  594. }
  595. void GridMap::_clear_internal() {
  596. for (Map<OctantKey, Octant *>::Element *E = octant_map.front(); E; E = E->next()) {
  597. if (is_inside_world())
  598. _octant_exit_world(E->key());
  599. _octant_clean_up(E->key());
  600. memdelete(E->get());
  601. }
  602. octant_map.clear();
  603. cell_map.clear();
  604. }
  605. void GridMap::clear() {
  606. _clear_internal();
  607. clear_baked_meshes();
  608. }
  609. void GridMap::resource_changed(const RES &p_res) {
  610. _recreate_octant_data();
  611. }
  612. void GridMap::_update_octants_callback() {
  613. if (!awaiting_update)
  614. return;
  615. List<OctantKey> to_delete;
  616. for (Map<OctantKey, Octant *>::Element *E = octant_map.front(); E; E = E->next()) {
  617. if (_octant_update(E->key())) {
  618. to_delete.push_back(E->key());
  619. }
  620. }
  621. while (to_delete.front()) {
  622. octant_map.erase(to_delete.front()->get());
  623. to_delete.pop_back();
  624. }
  625. _update_visibility();
  626. awaiting_update = false;
  627. }
  628. void GridMap::_bind_methods() {
  629. ClassDB::bind_method(D_METHOD("set_collision_layer", "layer"), &GridMap::set_collision_layer);
  630. ClassDB::bind_method(D_METHOD("get_collision_layer"), &GridMap::get_collision_layer);
  631. ClassDB::bind_method(D_METHOD("set_collision_mask", "mask"), &GridMap::set_collision_mask);
  632. ClassDB::bind_method(D_METHOD("get_collision_mask"), &GridMap::get_collision_mask);
  633. ClassDB::bind_method(D_METHOD("set_collision_mask_bit", "bit", "value"), &GridMap::set_collision_mask_bit);
  634. ClassDB::bind_method(D_METHOD("get_collision_mask_bit", "bit"), &GridMap::get_collision_mask_bit);
  635. ClassDB::bind_method(D_METHOD("set_collision_layer_bit", "bit", "value"), &GridMap::set_collision_layer_bit);
  636. ClassDB::bind_method(D_METHOD("get_collision_layer_bit", "bit"), &GridMap::get_collision_layer_bit);
  637. #ifndef DISABLE_DEPRECATED
  638. ClassDB::bind_method(D_METHOD("set_theme", "theme"), &GridMap::set_theme);
  639. ClassDB::bind_method(D_METHOD("get_theme"), &GridMap::get_theme);
  640. #endif // DISABLE_DEPRECATED
  641. ClassDB::bind_method(D_METHOD("set_mesh_library", "mesh_library"), &GridMap::set_mesh_library);
  642. ClassDB::bind_method(D_METHOD("get_mesh_library"), &GridMap::get_mesh_library);
  643. ClassDB::bind_method(D_METHOD("set_cell_size", "size"), &GridMap::set_cell_size);
  644. ClassDB::bind_method(D_METHOD("get_cell_size"), &GridMap::get_cell_size);
  645. ClassDB::bind_method(D_METHOD("set_cell_scale", "scale"), &GridMap::set_cell_scale);
  646. ClassDB::bind_method(D_METHOD("get_cell_scale"), &GridMap::get_cell_scale);
  647. ClassDB::bind_method(D_METHOD("set_octant_size", "size"), &GridMap::set_octant_size);
  648. ClassDB::bind_method(D_METHOD("get_octant_size"), &GridMap::get_octant_size);
  649. ClassDB::bind_method(D_METHOD("set_cell_item", "x", "y", "z", "item", "orientation"), &GridMap::set_cell_item, DEFVAL(0));
  650. ClassDB::bind_method(D_METHOD("get_cell_item", "x", "y", "z"), &GridMap::get_cell_item);
  651. ClassDB::bind_method(D_METHOD("get_cell_item_orientation", "x", "y", "z"), &GridMap::get_cell_item_orientation);
  652. ClassDB::bind_method(D_METHOD("world_to_map", "pos"), &GridMap::world_to_map);
  653. ClassDB::bind_method(D_METHOD("map_to_world", "x", "y", "z"), &GridMap::map_to_world);
  654. ClassDB::bind_method(D_METHOD("_update_octants_callback"), &GridMap::_update_octants_callback);
  655. ClassDB::bind_method(D_METHOD("resource_changed", "resource"), &GridMap::resource_changed);
  656. ClassDB::bind_method(D_METHOD("set_center_x", "enable"), &GridMap::set_center_x);
  657. ClassDB::bind_method(D_METHOD("get_center_x"), &GridMap::get_center_x);
  658. ClassDB::bind_method(D_METHOD("set_center_y", "enable"), &GridMap::set_center_y);
  659. ClassDB::bind_method(D_METHOD("get_center_y"), &GridMap::get_center_y);
  660. ClassDB::bind_method(D_METHOD("set_center_z", "enable"), &GridMap::set_center_z);
  661. ClassDB::bind_method(D_METHOD("get_center_z"), &GridMap::get_center_z);
  662. ClassDB::bind_method(D_METHOD("set_clip", "enabled", "clipabove", "floor", "axis"), &GridMap::set_clip, DEFVAL(true), DEFVAL(0), DEFVAL(Vector3::AXIS_X));
  663. ClassDB::bind_method(D_METHOD("clear"), &GridMap::clear);
  664. ClassDB::bind_method(D_METHOD("get_used_cells"), &GridMap::get_used_cells);
  665. ClassDB::bind_method(D_METHOD("get_meshes"), &GridMap::get_meshes);
  666. ClassDB::bind_method(D_METHOD("get_bake_meshes"), &GridMap::get_bake_meshes);
  667. ClassDB::bind_method(D_METHOD("get_bake_mesh_instance", "idx"), &GridMap::get_bake_mesh_instance);
  668. ClassDB::bind_method(D_METHOD("clear_baked_meshes"), &GridMap::clear_baked_meshes);
  669. ClassDB::bind_method(D_METHOD("make_baked_meshes", "gen_lightmap_uv", "lightmap_uv_texel_size"), &GridMap::make_baked_meshes, DEFVAL(false), DEFVAL(0.1));
  670. #ifndef DISABLE_DEPRECATED
  671. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "theme", PROPERTY_HINT_RESOURCE_TYPE, "MeshLibrary", 0), "set_theme", "get_theme");
  672. #endif // DISABLE_DEPRECATED
  673. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "mesh_library", PROPERTY_HINT_RESOURCE_TYPE, "MeshLibrary"), "set_mesh_library", "get_mesh_library");
  674. ADD_GROUP("Cell", "cell_");
  675. ADD_PROPERTY(PropertyInfo(Variant::VECTOR3, "cell_size"), "set_cell_size", "get_cell_size");
  676. ADD_PROPERTY(PropertyInfo(Variant::INT, "cell_octant_size", PROPERTY_HINT_RANGE, "1,1024,1"), "set_octant_size", "get_octant_size");
  677. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "cell_center_x"), "set_center_x", "get_center_x");
  678. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "cell_center_y"), "set_center_y", "get_center_y");
  679. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "cell_center_z"), "set_center_z", "get_center_z");
  680. ADD_PROPERTY(PropertyInfo(Variant::REAL, "cell_scale"), "set_cell_scale", "get_cell_scale");
  681. ADD_GROUP("Collision", "collision_");
  682. ADD_PROPERTY(PropertyInfo(Variant::INT, "collision_layer", PROPERTY_HINT_LAYERS_3D_PHYSICS), "set_collision_layer", "get_collision_layer");
  683. ADD_PROPERTY(PropertyInfo(Variant::INT, "collision_mask", PROPERTY_HINT_LAYERS_3D_PHYSICS), "set_collision_mask", "get_collision_mask");
  684. BIND_CONSTANT(INVALID_CELL_ITEM);
  685. }
  686. void GridMap::set_clip(bool p_enabled, bool p_clip_above, int p_floor, Vector3::Axis p_axis) {
  687. if (!p_enabled && !clip)
  688. return;
  689. if (clip && p_enabled && clip_floor == p_floor && p_clip_above == clip_above && p_axis == clip_axis)
  690. return;
  691. clip = p_enabled;
  692. clip_floor = p_floor;
  693. clip_axis = p_axis;
  694. clip_above = p_clip_above;
  695. //make it all update
  696. for (Map<OctantKey, Octant *>::Element *E = octant_map.front(); E; E = E->next()) {
  697. Octant *g = E->get();
  698. g->dirty = true;
  699. }
  700. awaiting_update = true;
  701. _update_octants_callback();
  702. }
  703. void GridMap::set_cell_scale(float p_scale) {
  704. cell_scale = p_scale;
  705. _recreate_octant_data();
  706. }
  707. float GridMap::get_cell_scale() const {
  708. return cell_scale;
  709. }
  710. Array GridMap::get_used_cells() const {
  711. Array a;
  712. a.resize(cell_map.size());
  713. int i = 0;
  714. for (Map<IndexKey, Cell>::Element *E = cell_map.front(); E; E = E->next()) {
  715. Vector3 p(E->key().x, E->key().y, E->key().z);
  716. a[i++] = p;
  717. }
  718. return a;
  719. }
  720. Array GridMap::get_meshes() {
  721. if (mesh_library.is_null())
  722. return Array();
  723. Vector3 ofs = _get_offset();
  724. Array meshes;
  725. for (Map<IndexKey, Cell>::Element *E = cell_map.front(); E; E = E->next()) {
  726. int id = E->get().item;
  727. if (!mesh_library->has_item(id))
  728. continue;
  729. Ref<Mesh> mesh = mesh_library->get_item_mesh(id);
  730. if (mesh.is_null())
  731. continue;
  732. IndexKey ik = E->key();
  733. Vector3 cellpos = Vector3(ik.x, ik.y, ik.z);
  734. Transform xform;
  735. xform.basis.set_orthogonal_index(E->get().rot);
  736. xform.set_origin(cellpos * cell_size + ofs);
  737. xform.basis.scale(Vector3(cell_scale, cell_scale, cell_scale));
  738. meshes.push_back(xform);
  739. meshes.push_back(mesh);
  740. }
  741. return meshes;
  742. }
  743. Vector3 GridMap::_get_offset() const {
  744. return Vector3(
  745. cell_size.x * 0.5 * int(center_x),
  746. cell_size.y * 0.5 * int(center_y),
  747. cell_size.z * 0.5 * int(center_z));
  748. }
  749. void GridMap::clear_baked_meshes() {
  750. for (int i = 0; i < baked_meshes.size(); i++) {
  751. VS::get_singleton()->free(baked_meshes[i].instance);
  752. }
  753. baked_meshes.clear();
  754. _recreate_octant_data();
  755. }
  756. void GridMap::make_baked_meshes(bool p_gen_lightmap_uv, float p_lightmap_uv_texel_size) {
  757. if (!mesh_library.is_valid())
  758. return;
  759. //generate
  760. Map<OctantKey, Map<Ref<Material>, Ref<SurfaceTool> > > surface_map;
  761. for (Map<IndexKey, Cell>::Element *E = cell_map.front(); E; E = E->next()) {
  762. IndexKey key = E->key();
  763. int item = E->get().item;
  764. if (!mesh_library->has_item(item))
  765. continue;
  766. Ref<Mesh> mesh = mesh_library->get_item_mesh(item);
  767. if (!mesh.is_valid())
  768. continue;
  769. Vector3 cellpos = Vector3(key.x, key.y, key.z);
  770. Vector3 ofs = _get_offset();
  771. Transform xform;
  772. xform.basis.set_orthogonal_index(E->get().rot);
  773. xform.set_origin(cellpos * cell_size + ofs);
  774. xform.basis.scale(Vector3(cell_scale, cell_scale, cell_scale));
  775. OctantKey ok;
  776. ok.x = key.x / octant_size;
  777. ok.y = key.y / octant_size;
  778. ok.z = key.z / octant_size;
  779. if (!surface_map.has(ok)) {
  780. surface_map[ok] = Map<Ref<Material>, Ref<SurfaceTool> >();
  781. }
  782. Map<Ref<Material>, Ref<SurfaceTool> > &mat_map = surface_map[ok];
  783. for (int i = 0; i < mesh->get_surface_count(); i++) {
  784. if (mesh->surface_get_primitive_type(i) != Mesh::PRIMITIVE_TRIANGLES)
  785. continue;
  786. Ref<Material> surf_mat = mesh->surface_get_material(i);
  787. if (!mat_map.has(surf_mat)) {
  788. Ref<SurfaceTool> st;
  789. st.instance();
  790. st->begin(Mesh::PRIMITIVE_TRIANGLES);
  791. st->set_material(surf_mat);
  792. mat_map[surf_mat] = st;
  793. }
  794. mat_map[surf_mat]->append_from(mesh, i, xform);
  795. }
  796. }
  797. for (Map<OctantKey, Map<Ref<Material>, Ref<SurfaceTool> > >::Element *E = surface_map.front(); E; E = E->next()) {
  798. Ref<ArrayMesh> mesh;
  799. mesh.instance();
  800. for (Map<Ref<Material>, Ref<SurfaceTool> >::Element *F = E->get().front(); F; F = F->next()) {
  801. F->get()->commit(mesh);
  802. }
  803. BakedMesh bm;
  804. bm.mesh = mesh;
  805. bm.instance = VS::get_singleton()->instance_create();
  806. VS::get_singleton()->get_singleton()->instance_set_base(bm.instance, bm.mesh->get_rid());
  807. VS::get_singleton()->instance_attach_object_instance_id(bm.instance, get_instance_id());
  808. if (is_inside_tree()) {
  809. VS::get_singleton()->instance_set_scenario(bm.instance, get_world()->get_scenario());
  810. VS::get_singleton()->instance_set_transform(bm.instance, get_global_transform());
  811. }
  812. if (p_gen_lightmap_uv) {
  813. mesh->lightmap_unwrap(get_global_transform(), p_lightmap_uv_texel_size);
  814. }
  815. baked_meshes.push_back(bm);
  816. }
  817. _recreate_octant_data();
  818. }
  819. Array GridMap::get_bake_meshes() {
  820. if (!baked_meshes.size()) {
  821. make_baked_meshes(true);
  822. }
  823. Array arr;
  824. for (int i = 0; i < baked_meshes.size(); i++) {
  825. arr.push_back(baked_meshes[i].mesh);
  826. arr.push_back(Transform());
  827. }
  828. return arr;
  829. }
  830. RID GridMap::get_bake_mesh_instance(int p_idx) {
  831. ERR_FAIL_INDEX_V(p_idx, baked_meshes.size(), RID());
  832. return baked_meshes[p_idx].instance;
  833. }
  834. GridMap::GridMap() {
  835. collision_layer = 1;
  836. collision_mask = 1;
  837. cell_size = Vector3(2, 2, 2);
  838. octant_size = 8;
  839. awaiting_update = false;
  840. _in_tree = false;
  841. center_x = true;
  842. center_y = true;
  843. center_z = true;
  844. clip = false;
  845. clip_floor = 0;
  846. clip_axis = Vector3::AXIS_Z;
  847. clip_above = true;
  848. cell_scale = 1.0;
  849. navigation = NULL;
  850. set_notify_transform(true);
  851. recreating_octants = false;
  852. }
  853. GridMap::~GridMap() {
  854. if (!mesh_library.is_null())
  855. mesh_library->unregister_owner(this);
  856. clear();
  857. }