grid_map.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. /*************************************************************************/
  2. /* grid_map.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 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. #ifndef GRID_MAP_H
  31. #define GRID_MAP_H
  32. #include "scene/3d/node_3d.h"
  33. #include "scene/resources/mesh_library.h"
  34. #include "scene/resources/multimesh.h"
  35. //heh heh, godotsphir!! this shares no code and the design is completely different with previous projects i've done..
  36. //should scale better with hardware that supports instancing
  37. class PhysicsMaterial;
  38. class GridMap : public Node3D {
  39. GDCLASS(GridMap, Node3D);
  40. enum {
  41. MAP_DIRTY_TRANSFORMS = 1,
  42. MAP_DIRTY_INSTANCES = 2,
  43. };
  44. union IndexKey {
  45. struct {
  46. int16_t x;
  47. int16_t y;
  48. int16_t z;
  49. };
  50. uint64_t key = 0;
  51. _FORCE_INLINE_ bool operator<(const IndexKey &p_key) const {
  52. return key < p_key.key;
  53. }
  54. _FORCE_INLINE_ operator Vector3i() const {
  55. return Vector3i(x, y, z);
  56. }
  57. IndexKey(Vector3i p_vector) {
  58. x = (int16_t)p_vector.x;
  59. y = (int16_t)p_vector.y;
  60. z = (int16_t)p_vector.z;
  61. }
  62. IndexKey() {}
  63. };
  64. /**
  65. * @brief A Cell is a single cell in the cube map space; it is defined by its coordinates and the populating Item, identified by int id.
  66. */
  67. union Cell {
  68. struct {
  69. unsigned int item : 16;
  70. unsigned int rot : 5;
  71. unsigned int layer : 8;
  72. };
  73. uint32_t cell = 0;
  74. };
  75. /**
  76. * @brief An Octant is a prism containing Cells, and possibly belonging to an Area.
  77. * A GridMap can have multiple Octants.
  78. */
  79. struct Octant {
  80. struct NavMesh {
  81. RID region;
  82. Transform3D xform;
  83. };
  84. struct MultimeshInstance {
  85. RID instance;
  86. RID multimesh;
  87. struct Item {
  88. int index = 0;
  89. Transform3D transform;
  90. IndexKey key;
  91. };
  92. Vector<Item> items; //tools only, for changing visibility
  93. };
  94. Vector<MultimeshInstance> multimesh_instances;
  95. Set<IndexKey> cells;
  96. RID collision_debug;
  97. RID collision_debug_instance;
  98. bool dirty = false;
  99. RID static_body;
  100. Map<IndexKey, NavMesh> navmesh_ids;
  101. };
  102. union OctantKey {
  103. struct {
  104. int16_t x;
  105. int16_t y;
  106. int16_t z;
  107. int16_t empty;
  108. };
  109. uint64_t key = 0;
  110. _FORCE_INLINE_ bool operator<(const OctantKey &p_key) const {
  111. return key < p_key.key;
  112. }
  113. //OctantKey(const IndexKey& p_k, int p_item) { indexkey=p_k.key; item=p_item; }
  114. OctantKey() {}
  115. };
  116. uint32_t collision_layer = 1;
  117. uint32_t collision_mask = 1;
  118. Ref<PhysicsMaterial> physics_material;
  119. bool bake_navigation = false;
  120. uint32_t navigation_layers = 1;
  121. Transform3D last_transform;
  122. bool _in_tree = false;
  123. Vector3 cell_size = Vector3(2, 2, 2);
  124. int octant_size = 8;
  125. bool center_x = true;
  126. bool center_y = true;
  127. bool center_z = true;
  128. float cell_scale = 1.0;
  129. bool recreating_octants = false;
  130. Ref<MeshLibrary> mesh_library;
  131. Map<OctantKey, Octant *> octant_map;
  132. Map<IndexKey, Cell> cell_map;
  133. void _recreate_octant_data();
  134. struct BakeLight {
  135. RS::LightType type = RS::LightType::LIGHT_DIRECTIONAL;
  136. Vector3 pos;
  137. Vector3 dir;
  138. float param[RS::LIGHT_PARAM_MAX] = {};
  139. };
  140. _FORCE_INLINE_ Vector3 _octant_get_offset(const OctantKey &p_key) const {
  141. return Vector3(p_key.x, p_key.y, p_key.z) * cell_size * octant_size;
  142. }
  143. void _reset_physic_bodies_collision_filters();
  144. void _octant_enter_world(const OctantKey &p_key);
  145. void _octant_exit_world(const OctantKey &p_key);
  146. bool _octant_update(const OctantKey &p_key);
  147. void _octant_clean_up(const OctantKey &p_key);
  148. void _octant_transform(const OctantKey &p_key);
  149. bool awaiting_update = false;
  150. void _queue_octants_dirty();
  151. void _update_octants_callback();
  152. void resource_changed(const Ref<Resource> &p_res);
  153. void _clear_internal();
  154. Vector3 _get_offset() const;
  155. struct BakedMesh {
  156. Ref<Mesh> mesh;
  157. RID instance;
  158. };
  159. Vector<BakedMesh> baked_meshes;
  160. protected:
  161. bool _set(const StringName &p_name, const Variant &p_value);
  162. bool _get(const StringName &p_name, Variant &r_ret) const;
  163. void _get_property_list(List<PropertyInfo> *p_list) const;
  164. void _notification(int p_what);
  165. void _update_visibility();
  166. static void _bind_methods();
  167. public:
  168. enum {
  169. INVALID_CELL_ITEM = -1
  170. };
  171. void set_collision_layer(uint32_t p_layer);
  172. uint32_t get_collision_layer() const;
  173. void set_collision_mask(uint32_t p_mask);
  174. uint32_t get_collision_mask() const;
  175. void set_collision_layer_value(int p_layer_number, bool p_value);
  176. bool get_collision_layer_value(int p_layer_number) const;
  177. void set_collision_mask_value(int p_layer_number, bool p_value);
  178. bool get_collision_mask_value(int p_layer_number) const;
  179. void set_physics_material(Ref<PhysicsMaterial> p_material);
  180. Ref<PhysicsMaterial> get_physics_material() const;
  181. Array get_collision_shapes() const;
  182. void set_bake_navigation(bool p_bake_navigation);
  183. bool is_baking_navigation();
  184. void set_navigation_layers(uint32_t p_layers);
  185. uint32_t get_navigation_layers();
  186. void set_mesh_library(const Ref<MeshLibrary> &p_mesh_library);
  187. Ref<MeshLibrary> get_mesh_library() const;
  188. void set_cell_size(const Vector3 &p_size);
  189. Vector3 get_cell_size() const;
  190. void set_octant_size(int p_size);
  191. int get_octant_size() const;
  192. void set_center_x(bool p_enable);
  193. bool get_center_x() const;
  194. void set_center_y(bool p_enable);
  195. bool get_center_y() const;
  196. void set_center_z(bool p_enable);
  197. bool get_center_z() const;
  198. void set_cell_item(const Vector3i &p_position, int p_item, int p_rot = 0);
  199. int get_cell_item(const Vector3i &p_position) const;
  200. int get_cell_item_orientation(const Vector3i &p_position) const;
  201. Vector3i world_to_map(const Vector3 &p_world_position) const;
  202. Vector3 map_to_world(const Vector3i &p_map_position) const;
  203. void set_cell_scale(float p_scale);
  204. float get_cell_scale() const;
  205. Array get_used_cells() const;
  206. Array get_used_cells_by_item(int p_item) const;
  207. Array get_meshes() const;
  208. void clear_baked_meshes();
  209. void make_baked_meshes(bool p_gen_lightmap_uv = false, float p_lightmap_uv_texel_size = 0.1);
  210. void clear();
  211. Array get_bake_meshes();
  212. RID get_bake_mesh_instance(int p_idx);
  213. GridMap();
  214. ~GridMap();
  215. };
  216. #endif // GRID_MAP_H