Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/raycast/lightmap_raycaster_embree.cpp
10277 views
1
/**************************************************************************/
2
/* lightmap_raycaster_embree.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
31
#ifdef TOOLS_ENABLED
32
33
#include "lightmap_raycaster_embree.h"
34
35
#ifdef __SSE2__
36
#include <pmmintrin.h>
37
#endif
38
39
LightmapRaycaster *LightmapRaycasterEmbree::create_embree_raycaster() {
40
return memnew(LightmapRaycasterEmbree);
41
}
42
43
void LightmapRaycasterEmbree::make_default_raycaster() {
44
create_function = create_embree_raycaster;
45
}
46
47
void LightmapRaycasterEmbree::filter_function(const struct RTCFilterFunctionNArguments *p_args) {
48
RTCHit *hit = (RTCHit *)p_args->hit;
49
50
unsigned int geomID = hit->geomID;
51
float u = hit->u;
52
float v = hit->v;
53
54
LightmapRaycasterEmbree *scene = (LightmapRaycasterEmbree *)p_args->geometryUserPtr;
55
RTCGeometry geom = rtcGetGeometry(scene->embree_scene, geomID);
56
57
rtcInterpolate0(geom, hit->primID, hit->u, hit->v, RTC_BUFFER_TYPE_VERTEX_ATTRIBUTE, 0, &hit->u, 2);
58
59
if (scene->alpha_textures.has(geomID)) {
60
const AlphaTextureData &alpha_texture = scene->alpha_textures[geomID];
61
62
if (alpha_texture.sample(hit->u, hit->v) < 128) {
63
p_args->valid[0] = 0;
64
return;
65
}
66
}
67
68
rtcInterpolate0(geom, hit->primID, u, v, RTC_BUFFER_TYPE_VERTEX_ATTRIBUTE, 1, &hit->Ng_x, 3);
69
}
70
71
bool LightmapRaycasterEmbree::intersect(Ray &r_ray) {
72
RTCRayQueryContext context;
73
rtcInitRayQueryContext(&context);
74
RTCIntersectArguments args;
75
rtcInitIntersectArguments(&args);
76
args.context = &context;
77
rtcIntersect1(embree_scene, (RTCRayHit *)&r_ray, &args);
78
return r_ray.geomID != RTC_INVALID_GEOMETRY_ID;
79
}
80
81
void LightmapRaycasterEmbree::intersect(Vector<Ray> &r_rays) {
82
Ray *rays = r_rays.ptrw();
83
for (int i = 0; i < r_rays.size(); ++i) {
84
intersect(rays[i]);
85
}
86
}
87
88
void LightmapRaycasterEmbree::set_mesh_alpha_texture(Ref<Image> p_alpha_texture, unsigned int p_id) {
89
if (p_alpha_texture.is_valid() && p_alpha_texture->get_size() != Vector2i()) {
90
AlphaTextureData tex;
91
tex.size = p_alpha_texture->get_size();
92
tex.data = p_alpha_texture->get_data();
93
alpha_textures.insert(p_id, tex);
94
}
95
}
96
97
float blerp(float c00, float c10, float c01, float c11, float tx, float ty) {
98
return Math::lerp(Math::lerp(c00, c10, tx), Math::lerp(c01, c11, tx), ty);
99
}
100
101
uint8_t LightmapRaycasterEmbree::AlphaTextureData::sample(float u, float v) const {
102
float x = u * size.x;
103
float y = v * size.y;
104
int xi = (int)x;
105
int yi = (int)y;
106
107
uint8_t texels[4];
108
109
for (int i = 0; i < 4; ++i) {
110
int sample_x = CLAMP(xi + i % 2, 0, size.x - 1);
111
int sample_y = CLAMP(yi + i / 2, 0, size.y - 1);
112
texels[i] = data[sample_y * size.x + sample_x];
113
}
114
115
return Math::round(blerp(texels[0], texels[1], texels[2], texels[3], x - xi, y - yi));
116
}
117
118
void LightmapRaycasterEmbree::add_mesh(const Vector<Vector3> &p_vertices, const Vector<Vector3> &p_normals, const Vector<Vector2> &p_uv2s, unsigned int p_id) {
119
RTCGeometry embree_mesh = rtcNewGeometry(embree_device, RTC_GEOMETRY_TYPE_TRIANGLE);
120
121
rtcSetGeometryVertexAttributeCount(embree_mesh, 2);
122
123
int vertex_count = p_vertices.size();
124
125
ERR_FAIL_COND(vertex_count % 3 != 0);
126
ERR_FAIL_COND(vertex_count != p_uv2s.size());
127
ERR_FAIL_COND(!p_normals.is_empty() && vertex_count != p_normals.size());
128
129
Vector3 *embree_vertices = (Vector3 *)rtcSetNewGeometryBuffer(embree_mesh, RTC_BUFFER_TYPE_VERTEX, 0, RTC_FORMAT_FLOAT3, sizeof(Vector3), vertex_count);
130
memcpy(embree_vertices, p_vertices.ptr(), sizeof(Vector3) * vertex_count);
131
132
Vector2 *embree_light_uvs = (Vector2 *)rtcSetNewGeometryBuffer(embree_mesh, RTC_BUFFER_TYPE_VERTEX_ATTRIBUTE, 0, RTC_FORMAT_FLOAT2, sizeof(Vector2), vertex_count);
133
memcpy(embree_light_uvs, p_uv2s.ptr(), sizeof(Vector2) * vertex_count);
134
135
uint32_t *embree_triangles = (uint32_t *)rtcSetNewGeometryBuffer(embree_mesh, RTC_BUFFER_TYPE_INDEX, 0, RTC_FORMAT_UINT3, sizeof(uint32_t) * 3, vertex_count / 3);
136
for (int i = 0; i < vertex_count; i++) {
137
embree_triangles[i] = i;
138
}
139
140
if (!p_normals.is_empty()) {
141
Vector3 *embree_normals = (Vector3 *)rtcSetNewGeometryBuffer(embree_mesh, RTC_BUFFER_TYPE_VERTEX_ATTRIBUTE, 1, RTC_FORMAT_FLOAT3, sizeof(Vector3), vertex_count);
142
memcpy(embree_normals, p_normals.ptr(), sizeof(Vector3) * vertex_count);
143
}
144
145
rtcCommitGeometry(embree_mesh);
146
rtcSetGeometryIntersectFilterFunction(embree_mesh, filter_function);
147
rtcSetGeometryUserData(embree_mesh, this);
148
rtcAttachGeometryByID(embree_scene, embree_mesh, p_id);
149
rtcReleaseGeometry(embree_mesh);
150
}
151
152
void LightmapRaycasterEmbree::commit() {
153
rtcCommitScene(embree_scene);
154
}
155
156
void LightmapRaycasterEmbree::set_mesh_filter(const HashSet<int> &p_mesh_ids) {
157
for (const int &E : p_mesh_ids) {
158
rtcDisableGeometry(rtcGetGeometry(embree_scene, E));
159
}
160
rtcCommitScene(embree_scene);
161
filter_meshes = p_mesh_ids;
162
}
163
164
void LightmapRaycasterEmbree::clear_mesh_filter() {
165
for (const int &E : filter_meshes) {
166
rtcEnableGeometry(rtcGetGeometry(embree_scene, E));
167
}
168
rtcCommitScene(embree_scene);
169
filter_meshes.clear();
170
}
171
172
void embree_lm_error_handler(void *p_user_data, RTCError p_code, const char *p_str) {
173
print_error("Embree error: " + String(p_str));
174
}
175
176
LightmapRaycasterEmbree::LightmapRaycasterEmbree() {
177
#ifdef __SSE2__
178
_MM_SET_FLUSH_ZERO_MODE(_MM_FLUSH_ZERO_ON);
179
_MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON);
180
#endif
181
182
embree_device = rtcNewDevice(nullptr);
183
rtcSetDeviceErrorFunction(embree_device, &embree_lm_error_handler, nullptr);
184
embree_scene = rtcNewScene(embree_device);
185
}
186
187
LightmapRaycasterEmbree::~LightmapRaycasterEmbree() {
188
if (embree_scene != nullptr) {
189
rtcReleaseScene(embree_scene);
190
}
191
192
if (embree_device != nullptr) {
193
rtcReleaseDevice(embree_device);
194
}
195
}
196
197
#endif // TOOLS_ENABLED
198
199