-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbvh.h
120 lines (76 loc) · 3.24 KB
/
bvh.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#ifndef BVH_H
#define BVH_H
#include <algorithm>
#include "rtweekend.h"
#include "hittable.h"
#include "hittable_list.h"
inline bool box_compare(const shared_ptr<hittable> a, const shared_ptr<hittable> b, int axis){
aabb box_a, box_b;
if(!a -> bounding_box(0,0, box_a) || !b -> bounding_box(0,0,box_b)){
std::cerr << "No bounding box in bvh_node constructor.\n";
}
return box_a.min().e[axis] < box_b.min().e[axis];
}
bool box_x_compare(const shared_ptr<hittable> a, const shared_ptr<hittable> b){
return box_compare(a,b,0);
}
bool box_y_compare(const shared_ptr<hittable> a, const shared_ptr<hittable> b){
return box_compare(a,b,1);
}
bool box_z_compare(const shared_ptr<hittable> a, const shared_ptr<hittable> b){
return box_compare(a,b,2);
}
class bvh_node : public hittable {
public:
bvh_node();
bvh_node(hittable_list& list, double time0, double time1)
: bvh_node(list.objects, 0, list.objects.size(), time0, time1){}
bvh_node(std::vector<shared_ptr<hittable>>& src_objects,
size_t start, size_t end, double time0, double time1);
virtual bool hit(const ray& r, double t_min, double t_max, hit_record& rec) const override;
virtual bool bounding_box(double time0, double time1, aabb& output_box) const override;
public:
shared_ptr<hittable> left;
shared_ptr<hittable> right;
aabb box;
};
bool bvh_node::bounding_box(double time0, double time1, aabb& output_box) const {
output_box = box;
return true;
}
bool bvh_node::hit(const ray& r, double t_min, double t_max, hit_record& rec) const{
if(!box.hit(r, t_min, t_max))
return false;
bool hit_left = left->hit(r,t_min, t_max, rec);
bool hit_right = right->hit(r,t_min, hit_left ? rec.t : t_max, rec);
return hit_left || hit_right;
}
bvh_node::bvh_node(std::vector<shared_ptr<hittable>>& src_objects,
size_t start, size_t end, double time0, double time1){
int axis = random_int(0,2);
auto comparator = (axis == 0) ? box_x_compare
: (axis == 1) ? box_y_compare
: box_z_compare;
size_t object_span = end - start;
if(object_span == 1){
left = right = src_objects[start];
}else if(object_span == 2){
if(comparator(src_objects[start], src_objects[start + 1])){
left = src_objects[start];
right = src_objects[start + 1];
}else{
left = src_objects[start + 1];
right = src_objects[start];
}
}else{
std::sort(src_objects.begin() + start, src_objects.begin() + end, comparator);
auto mid = start + object_span/2;
left = make_shared<bvh_node>(src_objects, start, mid, time0, time1);
right = make_shared<bvh_node>(src_objects, mid, end, time0, time1);
}
aabb box_left, box_right;
if(!left -> bounding_box(time0,time1,box_left) || !right -> bounding_box(time0,time1,box_right))
std::cerr << "No bounding box in bvh_node constructor.\n";
box = surrounding_box(box_left, box_right);
}
#endif