voxelizer.cpp 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012
  1. /**************************************************************************/
  2. /* voxelizer.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 "voxelizer.h"
  31. #include "core/config/project_settings.h"
  32. static _FORCE_INLINE_ void get_uv_and_normal(const Vector3 &p_pos, const Vector3 *p_vtx, const Vector2 *p_uv, const Vector3 *p_normal, Vector2 &r_uv, Vector3 &r_normal) {
  33. if (p_pos.is_equal_approx(p_vtx[0])) {
  34. r_uv = p_uv[0];
  35. r_normal = p_normal[0];
  36. return;
  37. }
  38. if (p_pos.is_equal_approx(p_vtx[1])) {
  39. r_uv = p_uv[1];
  40. r_normal = p_normal[1];
  41. return;
  42. }
  43. if (p_pos.is_equal_approx(p_vtx[2])) {
  44. r_uv = p_uv[2];
  45. r_normal = p_normal[2];
  46. return;
  47. }
  48. Vector3 v0 = p_vtx[1] - p_vtx[0];
  49. Vector3 v1 = p_vtx[2] - p_vtx[0];
  50. Vector3 v2 = p_pos - p_vtx[0];
  51. real_t d00 = v0.dot(v0);
  52. real_t d01 = v0.dot(v1);
  53. real_t d11 = v1.dot(v1);
  54. real_t d20 = v2.dot(v0);
  55. real_t d21 = v2.dot(v1);
  56. real_t denom = (d00 * d11 - d01 * d01);
  57. if (denom == 0) {
  58. r_uv = p_uv[0];
  59. r_normal = p_normal[0];
  60. return;
  61. }
  62. real_t v = (d11 * d20 - d01 * d21) / denom;
  63. real_t w = (d00 * d21 - d01 * d20) / denom;
  64. real_t u = 1.0f - v - w;
  65. r_uv = p_uv[0] * u + p_uv[1] * v + p_uv[2] * w;
  66. r_normal = (p_normal[0] * u + p_normal[1] * v + p_normal[2] * w).normalized();
  67. }
  68. void Voxelizer::_plot_face(int p_idx, int p_level, int p_x, int p_y, int p_z, const Vector3 *p_vtx, const Vector3 *p_normal, const Vector2 *p_uv, const MaterialCache &p_material, const AABB &p_aabb) {
  69. if (p_level == cell_subdiv) {
  70. //plot the face by guessing its albedo and emission value
  71. //find best axis to map to, for scanning values
  72. int closest_axis = 0;
  73. real_t closest_dot = 0;
  74. Plane plane = Plane(p_vtx[0], p_vtx[1], p_vtx[2]);
  75. Vector3 normal = plane.normal;
  76. for (int i = 0; i < 3; i++) {
  77. Vector3 axis;
  78. axis[i] = 1.0;
  79. real_t dot = ABS(normal.dot(axis));
  80. if (i == 0 || dot > closest_dot) {
  81. closest_axis = i;
  82. closest_dot = dot;
  83. }
  84. }
  85. Vector3 axis;
  86. axis[closest_axis] = 1.0;
  87. Vector3 t1;
  88. t1[(closest_axis + 1) % 3] = 1.0;
  89. Vector3 t2;
  90. t2[(closest_axis + 2) % 3] = 1.0;
  91. t1 *= p_aabb.size[(closest_axis + 1) % 3] / real_t(color_scan_cell_width);
  92. t2 *= p_aabb.size[(closest_axis + 2) % 3] / real_t(color_scan_cell_width);
  93. Color albedo_accum;
  94. Color emission_accum;
  95. Vector3 normal_accum;
  96. float alpha = 0.0;
  97. //map to a grid average in the best axis for this face
  98. for (int i = 0; i < color_scan_cell_width; i++) {
  99. Vector3 ofs_i = real_t(i) * t1;
  100. for (int j = 0; j < color_scan_cell_width; j++) {
  101. Vector3 ofs_j = real_t(j) * t2;
  102. Vector3 from = p_aabb.position + ofs_i + ofs_j;
  103. Vector3 to = from + t1 + t2 + axis * p_aabb.size[closest_axis];
  104. Vector3 half = (to - from) * 0.5;
  105. //is in this cell?
  106. if (!Geometry3D::triangle_box_overlap(from + half, half, p_vtx)) {
  107. continue; //face does not span this cell
  108. }
  109. //go from -size to +size*2 to avoid skipping collisions
  110. Vector3 ray_from = from + (t1 + t2) * 0.5 - axis * p_aabb.size[closest_axis];
  111. Vector3 ray_to = ray_from + axis * p_aabb.size[closest_axis] * 2;
  112. if (normal.dot(ray_from - ray_to) < 0) {
  113. SWAP(ray_from, ray_to);
  114. }
  115. Vector3 intersection;
  116. if (!plane.intersects_segment(ray_from, ray_to, &intersection)) {
  117. if (ABS(plane.distance_to(ray_from)) < ABS(plane.distance_to(ray_to))) {
  118. intersection = plane.project(ray_from);
  119. } else {
  120. intersection = plane.project(ray_to);
  121. }
  122. }
  123. intersection = Face3(p_vtx[0], p_vtx[1], p_vtx[2]).get_closest_point_to(intersection);
  124. Vector2 uv;
  125. Vector3 lnormal;
  126. get_uv_and_normal(intersection, p_vtx, p_uv, p_normal, uv, lnormal);
  127. if (lnormal == Vector3()) { //just in case normal is not provided
  128. lnormal = normal;
  129. }
  130. int uv_x = CLAMP(int(Math::fposmod(uv.x, (real_t)1.0) * bake_texture_size), 0, bake_texture_size - 1);
  131. int uv_y = CLAMP(int(Math::fposmod(uv.y, (real_t)1.0) * bake_texture_size), 0, bake_texture_size - 1);
  132. int ofs = uv_y * bake_texture_size + uv_x;
  133. albedo_accum.r += p_material.albedo[ofs].r;
  134. albedo_accum.g += p_material.albedo[ofs].g;
  135. albedo_accum.b += p_material.albedo[ofs].b;
  136. albedo_accum.a += p_material.albedo[ofs].a;
  137. emission_accum.r += p_material.emission[ofs].r;
  138. emission_accum.g += p_material.emission[ofs].g;
  139. emission_accum.b += p_material.emission[ofs].b;
  140. normal_accum += lnormal;
  141. alpha += 1.0;
  142. }
  143. }
  144. if (alpha == 0) {
  145. //could not in any way get texture information.. so use closest point to center
  146. Face3 f(p_vtx[0], p_vtx[1], p_vtx[2]);
  147. Vector3 inters = f.get_closest_point_to(p_aabb.get_center());
  148. Vector3 lnormal;
  149. Vector2 uv;
  150. get_uv_and_normal(inters, p_vtx, p_uv, p_normal, uv, normal);
  151. if (lnormal == Vector3()) { //just in case normal is not provided
  152. lnormal = normal;
  153. }
  154. int uv_x = CLAMP(Math::fposmod(uv.x, (real_t)1.0) * bake_texture_size, 0, bake_texture_size - 1);
  155. int uv_y = CLAMP(Math::fposmod(uv.y, (real_t)1.0) * bake_texture_size, 0, bake_texture_size - 1);
  156. int ofs = uv_y * bake_texture_size + uv_x;
  157. alpha = 1.0 / (color_scan_cell_width * color_scan_cell_width);
  158. albedo_accum.r = p_material.albedo[ofs].r * alpha;
  159. albedo_accum.g = p_material.albedo[ofs].g * alpha;
  160. albedo_accum.b = p_material.albedo[ofs].b * alpha;
  161. albedo_accum.a = p_material.albedo[ofs].a * alpha;
  162. emission_accum.r = p_material.emission[ofs].r * alpha;
  163. emission_accum.g = p_material.emission[ofs].g * alpha;
  164. emission_accum.b = p_material.emission[ofs].b * alpha;
  165. normal_accum = lnormal * alpha;
  166. } else {
  167. float accdiv = 1.0 / (color_scan_cell_width * color_scan_cell_width);
  168. alpha *= accdiv;
  169. albedo_accum.r *= accdiv;
  170. albedo_accum.g *= accdiv;
  171. albedo_accum.b *= accdiv;
  172. albedo_accum.a *= accdiv;
  173. emission_accum.r *= accdiv;
  174. emission_accum.g *= accdiv;
  175. emission_accum.b *= accdiv;
  176. normal_accum *= accdiv;
  177. }
  178. //put this temporarily here, corrected in a later step
  179. bake_cells.write[p_idx].albedo[0] += albedo_accum.r;
  180. bake_cells.write[p_idx].albedo[1] += albedo_accum.g;
  181. bake_cells.write[p_idx].albedo[2] += albedo_accum.b;
  182. bake_cells.write[p_idx].emission[0] += emission_accum.r;
  183. bake_cells.write[p_idx].emission[1] += emission_accum.g;
  184. bake_cells.write[p_idx].emission[2] += emission_accum.b;
  185. bake_cells.write[p_idx].normal[0] += normal_accum.x;
  186. bake_cells.write[p_idx].normal[1] += normal_accum.y;
  187. bake_cells.write[p_idx].normal[2] += normal_accum.z;
  188. bake_cells.write[p_idx].alpha += alpha;
  189. } else {
  190. //go down
  191. int half = (1 << cell_subdiv) >> (p_level + 1);
  192. for (int i = 0; i < 8; i++) {
  193. AABB aabb = p_aabb;
  194. aabb.size *= 0.5;
  195. int nx = p_x;
  196. int ny = p_y;
  197. int nz = p_z;
  198. if (i & 1) {
  199. aabb.position.x += aabb.size.x;
  200. nx += half;
  201. }
  202. if (i & 2) {
  203. aabb.position.y += aabb.size.y;
  204. ny += half;
  205. }
  206. if (i & 4) {
  207. aabb.position.z += aabb.size.z;
  208. nz += half;
  209. }
  210. //make sure to not plot beyond limits
  211. if (nx < 0 || nx >= axis_cell_size[0] || ny < 0 || ny >= axis_cell_size[1] || nz < 0 || nz >= axis_cell_size[2]) {
  212. continue;
  213. }
  214. {
  215. AABB test_aabb = aabb;
  216. //test_aabb.grow_by(test_aabb.get_longest_axis_size()*0.05); //grow a bit to avoid numerical error in real-time
  217. Vector3 qsize = test_aabb.size * 0.5; //quarter size, for fast aabb test
  218. if (!Geometry3D::triangle_box_overlap(test_aabb.position + qsize, qsize, p_vtx)) {
  219. //if (!Face3(p_vtx[0],p_vtx[1],p_vtx[2]).intersects_aabb2(aabb)) {
  220. //does not fit in child, go on
  221. continue;
  222. }
  223. }
  224. if (bake_cells[p_idx].children[i] == CHILD_EMPTY) {
  225. //sub cell must be created
  226. uint32_t child_idx = bake_cells.size();
  227. bake_cells.write[p_idx].children[i] = child_idx;
  228. bake_cells.resize(bake_cells.size() + 1);
  229. bake_cells.write[child_idx].level = p_level + 1;
  230. bake_cells.write[child_idx].x = nx / half;
  231. bake_cells.write[child_idx].y = ny / half;
  232. bake_cells.write[child_idx].z = nz / half;
  233. }
  234. _plot_face(bake_cells[p_idx].children[i], p_level + 1, nx, ny, nz, p_vtx, p_normal, p_uv, p_material, aabb);
  235. }
  236. }
  237. }
  238. Vector<Color> Voxelizer::_get_bake_texture(Ref<Image> p_image, const Color &p_color_mul, const Color &p_color_add) {
  239. Vector<Color> ret;
  240. if (p_image.is_null() || p_image->is_empty()) {
  241. ret.resize(bake_texture_size * bake_texture_size);
  242. for (int i = 0; i < bake_texture_size * bake_texture_size; i++) {
  243. ret.write[i] = p_color_add;
  244. }
  245. return ret;
  246. }
  247. p_image = p_image->duplicate();
  248. if (p_image->is_compressed()) {
  249. p_image->decompress();
  250. }
  251. p_image->convert(Image::FORMAT_RGBA8);
  252. p_image->resize(bake_texture_size, bake_texture_size, Image::INTERPOLATE_CUBIC);
  253. const uint8_t *r = p_image->get_data().ptr();
  254. ret.resize(bake_texture_size * bake_texture_size);
  255. for (int i = 0; i < bake_texture_size * bake_texture_size; i++) {
  256. Color c;
  257. c.r = (r[i * 4 + 0] / 255.0) * p_color_mul.r + p_color_add.r;
  258. c.g = (r[i * 4 + 1] / 255.0) * p_color_mul.g + p_color_add.g;
  259. c.b = (r[i * 4 + 2] / 255.0) * p_color_mul.b + p_color_add.b;
  260. c.a = r[i * 4 + 3] / 255.0;
  261. ret.write[i] = c;
  262. }
  263. return ret;
  264. }
  265. Voxelizer::MaterialCache Voxelizer::_get_material_cache(Ref<Material> p_material) {
  266. // This way of obtaining materials is inaccurate and also does not support some compressed formats very well.
  267. Ref<BaseMaterial3D> mat = p_material;
  268. Ref<Material> material = mat; //hack for now
  269. if (material_cache.has(material)) {
  270. return material_cache[material];
  271. }
  272. MaterialCache mc;
  273. if (mat.is_valid()) {
  274. Ref<Texture2D> albedo_tex = mat->get_texture(BaseMaterial3D::TEXTURE_ALBEDO);
  275. Ref<Image> img_albedo;
  276. if (albedo_tex.is_valid()) {
  277. img_albedo = albedo_tex->get_image();
  278. mc.albedo = _get_bake_texture(img_albedo, mat->get_albedo(), Color(0, 0, 0)); // albedo texture, color is multiplicative
  279. } else {
  280. mc.albedo = _get_bake_texture(img_albedo, Color(1, 1, 1), mat->get_albedo()); // no albedo texture, color is additive
  281. }
  282. if (mat->get_feature(BaseMaterial3D::FEATURE_EMISSION)) {
  283. Ref<Texture2D> emission_tex = mat->get_texture(BaseMaterial3D::TEXTURE_EMISSION);
  284. Color emission_col = mat->get_emission();
  285. float emission_energy = mat->get_emission_energy_multiplier() * exposure_normalization;
  286. if (GLOBAL_GET("rendering/lights_and_shadows/use_physical_light_units")) {
  287. emission_energy *= mat->get_emission_intensity();
  288. }
  289. Ref<Image> img_emission;
  290. if (emission_tex.is_valid()) {
  291. img_emission = emission_tex->get_image();
  292. }
  293. if (mat->get_emission_operator() == BaseMaterial3D::EMISSION_OP_ADD) {
  294. mc.emission = _get_bake_texture(img_emission, Color(1, 1, 1) * emission_energy, emission_col * emission_energy);
  295. } else {
  296. mc.emission = _get_bake_texture(img_emission, emission_col * emission_energy, Color(0, 0, 0));
  297. }
  298. } else {
  299. Ref<Image> empty;
  300. mc.emission = _get_bake_texture(empty, Color(0, 0, 0), Color(0, 0, 0));
  301. }
  302. } else {
  303. Ref<Image> empty;
  304. mc.albedo = _get_bake_texture(empty, Color(0, 0, 0), Color(1, 1, 1));
  305. mc.emission = _get_bake_texture(empty, Color(0, 0, 0), Color(0, 0, 0));
  306. }
  307. material_cache[p_material] = mc;
  308. return mc;
  309. }
  310. void Voxelizer::plot_mesh(const Transform3D &p_xform, Ref<Mesh> &p_mesh, const Vector<Ref<Material>> &p_materials, const Ref<Material> &p_override_material) {
  311. for (int i = 0; i < p_mesh->get_surface_count(); i++) {
  312. if (p_mesh->surface_get_primitive_type(i) != Mesh::PRIMITIVE_TRIANGLES) {
  313. continue; //only triangles
  314. }
  315. Ref<Material> src_material;
  316. if (p_override_material.is_valid()) {
  317. src_material = p_override_material;
  318. } else if (i < p_materials.size() && p_materials[i].is_valid()) {
  319. src_material = p_materials[i];
  320. } else {
  321. src_material = p_mesh->surface_get_material(i);
  322. }
  323. MaterialCache material = _get_material_cache(src_material);
  324. Array a = p_mesh->surface_get_arrays(i);
  325. Vector<Vector3> vertices = a[Mesh::ARRAY_VERTEX];
  326. const Vector3 *vr = vertices.ptr();
  327. Vector<Vector2> uv = a[Mesh::ARRAY_TEX_UV];
  328. const Vector2 *uvr = nullptr;
  329. Vector<Vector3> normals = a[Mesh::ARRAY_NORMAL];
  330. const Vector3 *nr = nullptr;
  331. Vector<int> index = a[Mesh::ARRAY_INDEX];
  332. if (uv.size()) {
  333. uvr = uv.ptr();
  334. }
  335. if (normals.size()) {
  336. nr = normals.ptr();
  337. }
  338. if (index.size()) {
  339. int facecount = index.size() / 3;
  340. const int *ir = index.ptr();
  341. for (int j = 0; j < facecount; j++) {
  342. Vector3 vtxs[3];
  343. Vector2 uvs[3];
  344. Vector3 normal[3];
  345. for (int k = 0; k < 3; k++) {
  346. vtxs[k] = p_xform.xform(vr[ir[j * 3 + k]]);
  347. }
  348. if (uvr) {
  349. for (int k = 0; k < 3; k++) {
  350. uvs[k] = uvr[ir[j * 3 + k]];
  351. }
  352. }
  353. if (nr) {
  354. for (int k = 0; k < 3; k++) {
  355. normal[k] = nr[ir[j * 3 + k]];
  356. }
  357. }
  358. //test against original bounds
  359. if (!Geometry3D::triangle_box_overlap(original_bounds.get_center(), original_bounds.size * 0.5, vtxs)) {
  360. continue;
  361. }
  362. //plot
  363. _plot_face(0, 0, 0, 0, 0, vtxs, normal, uvs, material, po2_bounds);
  364. }
  365. } else {
  366. int facecount = vertices.size() / 3;
  367. for (int j = 0; j < facecount; j++) {
  368. Vector3 vtxs[3];
  369. Vector2 uvs[3];
  370. Vector3 normal[3];
  371. for (int k = 0; k < 3; k++) {
  372. vtxs[k] = p_xform.xform(vr[j * 3 + k]);
  373. }
  374. if (uvr) {
  375. for (int k = 0; k < 3; k++) {
  376. uvs[k] = uvr[j * 3 + k];
  377. }
  378. }
  379. if (nr) {
  380. for (int k = 0; k < 3; k++) {
  381. normal[k] = nr[j * 3 + k];
  382. }
  383. }
  384. //test against original bounds
  385. if (!Geometry3D::triangle_box_overlap(original_bounds.get_center(), original_bounds.size * 0.5, vtxs)) {
  386. continue;
  387. }
  388. //plot face
  389. _plot_face(0, 0, 0, 0, 0, vtxs, normal, uvs, material, po2_bounds);
  390. }
  391. }
  392. }
  393. max_original_cells = bake_cells.size();
  394. }
  395. void Voxelizer::_sort() {
  396. // cells need to be sorted by level and coordinates
  397. // it is important that level has more priority (for compute), and that Z has the least,
  398. // given it may aid older implementations plot using GPU
  399. Vector<CellSort> sorted_cells;
  400. uint32_t cell_count = bake_cells.size();
  401. sorted_cells.resize(cell_count);
  402. {
  403. CellSort *sort_cellsp = sorted_cells.ptrw();
  404. const Cell *bake_cellsp = bake_cells.ptr();
  405. for (uint32_t i = 0; i < cell_count; i++) {
  406. sort_cellsp[i].x = bake_cellsp[i].x;
  407. sort_cellsp[i].y = bake_cellsp[i].y;
  408. sort_cellsp[i].z = bake_cellsp[i].z;
  409. sort_cellsp[i].level = bake_cellsp[i].level;
  410. sort_cellsp[i].index = i;
  411. }
  412. }
  413. sorted_cells.sort();
  414. //verify just in case, index 0 must be level 0
  415. ERR_FAIL_COND(sorted_cells[0].level != 0);
  416. Vector<Cell> new_bake_cells;
  417. new_bake_cells.resize(cell_count);
  418. Vector<uint32_t> reverse_map;
  419. {
  420. reverse_map.resize(cell_count);
  421. const CellSort *sort_cellsp = sorted_cells.ptr();
  422. uint32_t *reverse_mapp = reverse_map.ptrw();
  423. for (uint32_t i = 0; i < cell_count; i++) {
  424. reverse_mapp[sort_cellsp[i].index] = i;
  425. }
  426. }
  427. {
  428. const CellSort *sort_cellsp = sorted_cells.ptr();
  429. const Cell *bake_cellsp = bake_cells.ptr();
  430. const uint32_t *reverse_mapp = reverse_map.ptr();
  431. Cell *new_bake_cellsp = new_bake_cells.ptrw();
  432. for (uint32_t i = 0; i < cell_count; i++) {
  433. //copy to new cell
  434. new_bake_cellsp[i] = bake_cellsp[sort_cellsp[i].index];
  435. //remap children
  436. for (uint32_t j = 0; j < 8; j++) {
  437. if (new_bake_cellsp[i].children[j] != CHILD_EMPTY) {
  438. new_bake_cellsp[i].children[j] = reverse_mapp[new_bake_cellsp[i].children[j]];
  439. }
  440. }
  441. }
  442. }
  443. bake_cells = new_bake_cells;
  444. sorted = true;
  445. }
  446. void Voxelizer::_fixup_plot(int p_idx, int p_level) {
  447. if (p_level == cell_subdiv) {
  448. leaf_voxel_count++;
  449. float alpha = bake_cells[p_idx].alpha;
  450. bake_cells.write[p_idx].albedo[0] /= alpha;
  451. bake_cells.write[p_idx].albedo[1] /= alpha;
  452. bake_cells.write[p_idx].albedo[2] /= alpha;
  453. //transfer emission to light
  454. bake_cells.write[p_idx].emission[0] /= alpha;
  455. bake_cells.write[p_idx].emission[1] /= alpha;
  456. bake_cells.write[p_idx].emission[2] /= alpha;
  457. bake_cells.write[p_idx].normal[0] /= alpha;
  458. bake_cells.write[p_idx].normal[1] /= alpha;
  459. bake_cells.write[p_idx].normal[2] /= alpha;
  460. Vector3 n(bake_cells[p_idx].normal[0], bake_cells[p_idx].normal[1], bake_cells[p_idx].normal[2]);
  461. if (n.length() < 0.01) {
  462. //too much fight over normal, zero it
  463. bake_cells.write[p_idx].normal[0] = 0;
  464. bake_cells.write[p_idx].normal[1] = 0;
  465. bake_cells.write[p_idx].normal[2] = 0;
  466. } else {
  467. n.normalize();
  468. bake_cells.write[p_idx].normal[0] = n.x;
  469. bake_cells.write[p_idx].normal[1] = n.y;
  470. bake_cells.write[p_idx].normal[2] = n.z;
  471. }
  472. bake_cells.write[p_idx].alpha = 1.0;
  473. /*if (bake_light.size()) {
  474. for(int i=0;i<6;i++) {
  475. }
  476. }*/
  477. } else {
  478. //go down
  479. bake_cells.write[p_idx].emission[0] = 0;
  480. bake_cells.write[p_idx].emission[1] = 0;
  481. bake_cells.write[p_idx].emission[2] = 0;
  482. bake_cells.write[p_idx].normal[0] = 0;
  483. bake_cells.write[p_idx].normal[1] = 0;
  484. bake_cells.write[p_idx].normal[2] = 0;
  485. bake_cells.write[p_idx].albedo[0] = 0;
  486. bake_cells.write[p_idx].albedo[1] = 0;
  487. bake_cells.write[p_idx].albedo[2] = 0;
  488. float alpha_average = 0;
  489. for (int i = 0; i < 8; i++) {
  490. uint32_t child = bake_cells[p_idx].children[i];
  491. if (child == CHILD_EMPTY) {
  492. continue;
  493. }
  494. _fixup_plot(child, p_level + 1);
  495. alpha_average += bake_cells[child].alpha;
  496. }
  497. bake_cells.write[p_idx].alpha = alpha_average / 8.0;
  498. }
  499. }
  500. void Voxelizer::begin_bake(int p_subdiv, const AABB &p_bounds, float p_exposure_normalization) {
  501. sorted = false;
  502. original_bounds = p_bounds;
  503. cell_subdiv = p_subdiv;
  504. exposure_normalization = p_exposure_normalization;
  505. bake_cells.resize(1);
  506. material_cache.clear();
  507. //find out the actual real bounds, power of 2, which gets the highest subdivision
  508. po2_bounds = p_bounds;
  509. int longest_axis = po2_bounds.get_longest_axis_index();
  510. axis_cell_size[longest_axis] = 1 << cell_subdiv;
  511. leaf_voxel_count = 0;
  512. for (int i = 0; i < 3; i++) {
  513. if (i == longest_axis) {
  514. continue;
  515. }
  516. axis_cell_size[i] = axis_cell_size[longest_axis];
  517. real_t axis_size = po2_bounds.size[longest_axis];
  518. //shrink until fit subdiv
  519. while (axis_size / 2.0 >= po2_bounds.size[i]) {
  520. axis_size /= 2.0;
  521. axis_cell_size[i] >>= 1;
  522. }
  523. po2_bounds.size[i] = po2_bounds.size[longest_axis];
  524. }
  525. Transform3D to_bounds;
  526. to_bounds.basis.scale(Vector3(po2_bounds.size[longest_axis], po2_bounds.size[longest_axis], po2_bounds.size[longest_axis]));
  527. to_bounds.origin = po2_bounds.position;
  528. Transform3D to_grid;
  529. to_grid.basis.scale(Vector3(axis_cell_size[longest_axis], axis_cell_size[longest_axis], axis_cell_size[longest_axis]));
  530. to_cell_space = to_grid * to_bounds.affine_inverse();
  531. cell_size = po2_bounds.size[longest_axis] / axis_cell_size[longest_axis];
  532. }
  533. void Voxelizer::end_bake() {
  534. if (!sorted) {
  535. _sort();
  536. }
  537. _fixup_plot(0, 0);
  538. }
  539. //create the data for rendering server
  540. int Voxelizer::get_voxel_gi_octree_depth() const {
  541. return cell_subdiv;
  542. }
  543. Vector3i Voxelizer::get_voxel_gi_octree_size() const {
  544. return Vector3i(axis_cell_size[0], axis_cell_size[1], axis_cell_size[2]);
  545. }
  546. int Voxelizer::get_voxel_gi_cell_count() const {
  547. return bake_cells.size();
  548. }
  549. Vector<uint8_t> Voxelizer::get_voxel_gi_octree_cells() const {
  550. Vector<uint8_t> data;
  551. data.resize((8 * 4) * bake_cells.size()); //8 uint32t values
  552. {
  553. uint8_t *w = data.ptrw();
  554. uint32_t *children_cells = (uint32_t *)w;
  555. const Cell *cells = bake_cells.ptr();
  556. uint32_t cell_count = bake_cells.size();
  557. for (uint32_t i = 0; i < cell_count; i++) {
  558. for (uint32_t j = 0; j < 8; j++) {
  559. children_cells[i * 8 + j] = cells[i].children[j];
  560. }
  561. }
  562. }
  563. return data;
  564. }
  565. Vector<uint8_t> Voxelizer::get_voxel_gi_data_cells() const {
  566. Vector<uint8_t> data;
  567. data.resize((4 * 4) * bake_cells.size()); //8 uint32t values
  568. {
  569. uint8_t *w = data.ptrw();
  570. uint32_t *dataptr = (uint32_t *)w;
  571. const Cell *cells = bake_cells.ptr();
  572. uint32_t cell_count = bake_cells.size();
  573. for (uint32_t i = 0; i < cell_count; i++) {
  574. { //position
  575. uint32_t x = cells[i].x;
  576. uint32_t y = cells[i].y;
  577. uint32_t z = cells[i].z;
  578. uint32_t position = x;
  579. position |= y << 11;
  580. position |= z << 21;
  581. dataptr[i * 4 + 0] = position;
  582. }
  583. { //albedo + alpha
  584. uint32_t rgba = uint32_t(CLAMP(cells[i].alpha * 255.0, 0, 255)) << 24; //a
  585. rgba |= uint32_t(CLAMP(cells[i].albedo[2] * 255.0, 0, 255)) << 16; //b
  586. rgba |= uint32_t(CLAMP(cells[i].albedo[1] * 255.0, 0, 255)) << 8; //g
  587. rgba |= uint32_t(CLAMP(cells[i].albedo[0] * 255.0, 0, 255)); //r
  588. dataptr[i * 4 + 1] = rgba;
  589. }
  590. { //emission, as rgbe9995
  591. Color emission = Color(cells[i].emission[0], cells[i].emission[1], cells[i].emission[2]);
  592. dataptr[i * 4 + 2] = emission.to_rgbe9995();
  593. }
  594. { //normal
  595. Vector3 n(bake_cells[i].normal[0], bake_cells[i].normal[1], bake_cells[i].normal[2]);
  596. n.normalize();
  597. uint32_t normal = uint32_t(uint8_t(int8_t(CLAMP(n.x * 127.0, -128, 127))));
  598. normal |= uint32_t(uint8_t(int8_t(CLAMP(n.y * 127.0, -128, 127)))) << 8;
  599. normal |= uint32_t(uint8_t(int8_t(CLAMP(n.z * 127.0, -128, 127)))) << 16;
  600. dataptr[i * 4 + 3] = normal;
  601. }
  602. }
  603. }
  604. return data;
  605. }
  606. Vector<int> Voxelizer::get_voxel_gi_level_cell_count() const {
  607. uint32_t cell_count = bake_cells.size();
  608. const Cell *cells = bake_cells.ptr();
  609. Vector<int> level_count;
  610. level_count.resize(cell_subdiv + 1); //remember, always x+1 levels for x subdivisions
  611. {
  612. int *w = level_count.ptrw();
  613. for (int i = 0; i < cell_subdiv + 1; i++) {
  614. w[i] = 0;
  615. }
  616. for (uint32_t i = 0; i < cell_count; i++) {
  617. w[cells[i].level]++;
  618. }
  619. }
  620. return level_count;
  621. }
  622. // euclidean distance computation based on:
  623. // https://prideout.net/blog/distance_fields/
  624. #define square(m_s) ((m_s) * (m_s))
  625. #define INF 1e20
  626. /* dt of 1d function using squared distance */
  627. static void edt(float *f, int stride, int n) {
  628. float *d = (float *)alloca(sizeof(float) * n + sizeof(int) * n + sizeof(float) * (n + 1));
  629. int *v = reinterpret_cast<int *>(&(d[n]));
  630. float *z = reinterpret_cast<float *>(&v[n]);
  631. int k = 0;
  632. v[0] = 0;
  633. z[0] = -INF;
  634. z[1] = +INF;
  635. for (int q = 1; q <= n - 1; q++) {
  636. float s = ((f[q * stride] + square(q)) - (f[v[k] * stride] + square(v[k]))) / (2 * q - 2 * v[k]);
  637. while (s <= z[k]) {
  638. k--;
  639. s = ((f[q * stride] + square(q)) - (f[v[k] * stride] + square(v[k]))) / (2 * q - 2 * v[k]);
  640. }
  641. k++;
  642. v[k] = q;
  643. z[k] = s;
  644. z[k + 1] = +INF;
  645. }
  646. k = 0;
  647. for (int q = 0; q <= n - 1; q++) {
  648. while (z[k + 1] < q) {
  649. k++;
  650. }
  651. d[q] = square(q - v[k]) + f[v[k] * stride];
  652. }
  653. for (int i = 0; i < n; i++) {
  654. f[i * stride] = d[i];
  655. }
  656. }
  657. #undef square
  658. Vector<uint8_t> Voxelizer::get_sdf_3d_image() const {
  659. Vector3i octree_size = get_voxel_gi_octree_size();
  660. uint32_t float_count = octree_size.x * octree_size.y * octree_size.z;
  661. float *work_memory = memnew_arr(float, float_count);
  662. for (uint32_t i = 0; i < float_count; i++) {
  663. work_memory[i] = INF;
  664. }
  665. uint32_t y_mult = octree_size.x;
  666. uint32_t z_mult = y_mult * octree_size.y;
  667. //plot solid cells
  668. {
  669. const Cell *cells = bake_cells.ptr();
  670. uint32_t cell_count = bake_cells.size();
  671. for (uint32_t i = 0; i < cell_count; i++) {
  672. if (cells[i].level < (cell_subdiv - 1)) {
  673. continue; //do not care about this level
  674. }
  675. work_memory[cells[i].x + cells[i].y * y_mult + cells[i].z * z_mult] = 0;
  676. }
  677. }
  678. //process in each direction
  679. //xy->z
  680. for (int i = 0; i < octree_size.x; i++) {
  681. for (int j = 0; j < octree_size.y; j++) {
  682. edt(&work_memory[i + j * y_mult], z_mult, octree_size.z);
  683. }
  684. }
  685. //xz->y
  686. for (int i = 0; i < octree_size.x; i++) {
  687. for (int j = 0; j < octree_size.z; j++) {
  688. edt(&work_memory[i + j * z_mult], y_mult, octree_size.y);
  689. }
  690. }
  691. //yz->x
  692. for (int i = 0; i < octree_size.y; i++) {
  693. for (int j = 0; j < octree_size.z; j++) {
  694. edt(&work_memory[i * y_mult + j * z_mult], 1, octree_size.x);
  695. }
  696. }
  697. Vector<uint8_t> image3d;
  698. image3d.resize(float_count);
  699. {
  700. uint8_t *w = image3d.ptrw();
  701. for (uint32_t i = 0; i < float_count; i++) {
  702. uint32_t d = uint32_t(Math::sqrt(work_memory[i]));
  703. if (d == 0) {
  704. w[i] = 0;
  705. } else {
  706. w[i] = MIN(d, 254u) + 1;
  707. }
  708. }
  709. }
  710. return image3d;
  711. }
  712. #undef INF
  713. void Voxelizer::_debug_mesh(int p_idx, int p_level, const AABB &p_aabb, Ref<MultiMesh> &p_multimesh, int &idx) {
  714. if (p_level == cell_subdiv - 1) {
  715. Vector3 center = p_aabb.get_center();
  716. Transform3D xform;
  717. xform.origin = center;
  718. xform.basis.scale(p_aabb.size * 0.5);
  719. p_multimesh->set_instance_transform(idx, xform);
  720. Color col;
  721. col = Color(bake_cells[p_idx].albedo[0], bake_cells[p_idx].albedo[1], bake_cells[p_idx].albedo[2]);
  722. //Color col = Color(bake_cells[p_idx].emission[0], bake_cells[p_idx].emission[1], bake_cells[p_idx].emission[2]);
  723. p_multimesh->set_instance_color(idx, col);
  724. idx++;
  725. } else {
  726. for (int i = 0; i < 8; i++) {
  727. uint32_t child = bake_cells[p_idx].children[i];
  728. if (child == CHILD_EMPTY || child >= (uint32_t)max_original_cells) {
  729. continue;
  730. }
  731. AABB aabb = p_aabb;
  732. aabb.size *= 0.5;
  733. if (i & 1) {
  734. aabb.position.x += aabb.size.x;
  735. }
  736. if (i & 2) {
  737. aabb.position.y += aabb.size.y;
  738. }
  739. if (i & 4) {
  740. aabb.position.z += aabb.size.z;
  741. }
  742. _debug_mesh(bake_cells[p_idx].children[i], p_level + 1, aabb, p_multimesh, idx);
  743. }
  744. }
  745. }
  746. Ref<MultiMesh> Voxelizer::create_debug_multimesh() {
  747. Ref<MultiMesh> mm;
  748. mm.instantiate();
  749. mm->set_transform_format(MultiMesh::TRANSFORM_3D);
  750. mm->set_use_colors(true);
  751. mm->set_instance_count(leaf_voxel_count);
  752. Ref<ArrayMesh> mesh;
  753. mesh.instantiate();
  754. {
  755. Array arr;
  756. arr.resize(Mesh::ARRAY_MAX);
  757. Vector<Vector3> vertices;
  758. Vector<Color> colors;
  759. #define ADD_VTX(m_idx) \
  760. vertices.push_back(face_points[m_idx]); \
  761. colors.push_back(Color(1, 1, 1, 1));
  762. for (int i = 0; i < 6; i++) {
  763. Vector3 face_points[4];
  764. for (int j = 0; j < 4; j++) {
  765. real_t v[3];
  766. v[0] = 1.0;
  767. v[1] = 1 - 2 * ((j >> 1) & 1);
  768. v[2] = v[1] * (1 - 2 * (j & 1));
  769. for (int k = 0; k < 3; k++) {
  770. if (i < 3) {
  771. face_points[j][(i + k) % 3] = v[k];
  772. } else {
  773. face_points[3 - j][(i + k) % 3] = -v[k];
  774. }
  775. }
  776. }
  777. //tri 1
  778. ADD_VTX(0);
  779. ADD_VTX(1);
  780. ADD_VTX(2);
  781. //tri 2
  782. ADD_VTX(2);
  783. ADD_VTX(3);
  784. ADD_VTX(0);
  785. }
  786. arr[Mesh::ARRAY_VERTEX] = vertices;
  787. arr[Mesh::ARRAY_COLOR] = colors;
  788. mesh->add_surface_from_arrays(Mesh::PRIMITIVE_TRIANGLES, arr);
  789. }
  790. {
  791. Ref<StandardMaterial3D> fsm;
  792. fsm.instantiate();
  793. fsm->set_flag(StandardMaterial3D::FLAG_SRGB_VERTEX_COLOR, true);
  794. fsm->set_flag(StandardMaterial3D::FLAG_ALBEDO_FROM_VERTEX_COLOR, true);
  795. fsm->set_shading_mode(StandardMaterial3D::SHADING_MODE_UNSHADED);
  796. fsm->set_albedo(Color(1, 1, 1, 1));
  797. mesh->surface_set_material(0, fsm);
  798. }
  799. mm->set_mesh(mesh);
  800. int idx = 0;
  801. _debug_mesh(0, 0, po2_bounds, mm, idx);
  802. return mm;
  803. }
  804. Transform3D Voxelizer::get_to_cell_space_xform() const {
  805. return to_cell_space;
  806. }
  807. Voxelizer::Voxelizer() {
  808. }