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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
use crate::core::geometry::{Point2f, Point2i};
use crate::core::paramset::ParamSet;
use crate::core::pbrt::Float;
use crate::core::rng::Rng;
use crate::core::sampler::Sampler;
pub struct RandomSampler {
pub samples_per_pixel: i64,
rng: Rng,
current_pixel: Point2i,
current_pixel_sample_index: i64,
samples_1d_array_sizes: Vec<i32>,
samples_2d_array_sizes: Vec<i32>,
sample_array_1d: Vec<Vec<Float>>,
sample_array_2d: Vec<Vec<Point2f>>,
array_1d_offset: usize,
array_2d_offset: usize,
}
impl RandomSampler {
pub fn new(samples_per_pixel: i64) -> Self {
RandomSampler {
samples_per_pixel,
rng: Rng::default(),
current_pixel: Point2i::default(),
current_pixel_sample_index: 0_i64,
samples_1d_array_sizes: Vec::new(),
samples_2d_array_sizes: Vec::new(),
sample_array_1d: Vec::new(),
sample_array_2d: Vec::new(),
array_1d_offset: 0_usize,
array_2d_offset: 0_usize,
}
}
pub fn clone_with_seed(&self, seed: u64) -> Box<Sampler> {
let mut random_sampler = RandomSampler::new(self.samples_per_pixel);
random_sampler.rng.set_sequence(seed);
random_sampler.current_pixel = self.current_pixel;
random_sampler.current_pixel_sample_index = self.current_pixel_sample_index;
random_sampler.samples_1d_array_sizes = self.samples_1d_array_sizes.to_vec();
random_sampler.samples_2d_array_sizes = self.samples_2d_array_sizes.to_vec();
random_sampler.sample_array_1d = self.sample_array_1d.to_vec();
random_sampler.sample_array_2d = self.sample_array_2d.to_vec();
random_sampler.array_1d_offset = self.array_1d_offset;
random_sampler.array_2d_offset = self.array_2d_offset;
let sampler = Sampler::Random(random_sampler);
Box::new(sampler)
}
pub fn create(params: &ParamSet) -> Box<Sampler> {
let nsamp: i32 = params.find_one_int("pixelsamples", 4);
Box::new(Sampler::Random(RandomSampler::new(nsamp as i64)))
}
pub fn start_pixel(&mut self, p: Point2i) {
for i in 0..self.sample_array_1d.len() {
for j in 0..self.sample_array_1d[i].len() {
self.sample_array_1d[i][j] = self.rng.uniform_float();
}
}
for i in 0..self.sample_array_2d.len() {
for j in 0..self.sample_array_2d[i].len() {
let x = self.rng.uniform_float();
let y = self.rng.uniform_float();
self.sample_array_2d[i][j] = Point2f { x, y };
}
}
self.current_pixel = p;
self.current_pixel_sample_index = 0_i64;
self.array_1d_offset = 0_usize;
self.array_2d_offset = 0_usize;
}
pub fn get_1d(&mut self) -> Float {
assert!(self.current_pixel_sample_index < self.samples_per_pixel);
self.rng.uniform_float()
}
pub fn get_2d(&mut self) -> Point2f {
assert!(self.current_pixel_sample_index < self.samples_per_pixel);
let x = self.rng.uniform_float();
let y = self.rng.uniform_float();
Point2f { x, y }
}
pub fn get_2d_sample(&self, array_idx: usize, idx: usize) -> Point2f {
self.sample_array_2d[array_idx][idx]
}
pub fn reseed(&mut self, seed: u64) {
self.rng.set_sequence(seed);
}
pub fn request_2d_array(&mut self, n: i32) {
assert_eq!(self.round_count(n), n);
self.samples_2d_array_sizes.push(n);
let size: usize = (n * self.samples_per_pixel as i32) as usize;
let additional_points: Vec<Point2f> = vec![Point2f::default(); size];
self.sample_array_2d.push(additional_points);
}
pub fn round_count(&self, count: i32) -> i32 {
count
}
pub fn get_2d_array(&mut self, n: i32) -> Option<&[Point2f]> {
if self.array_2d_offset == self.sample_array_2d.len() {
return None;
}
assert_eq!(self.samples_2d_array_sizes[self.array_2d_offset], n);
assert!(self.current_pixel_sample_index < self.samples_per_pixel);
let start: usize = (self.current_pixel_sample_index * n as i64) as usize;
let end: usize = start + n as usize;
self.array_2d_offset += 1;
Some(&self.sample_array_2d[self.array_2d_offset - 1][start..end])
}
pub fn get_2d_array_idxs(&mut self, n: i32) -> (bool, usize, usize) {
if self.array_2d_offset == self.sample_array_2d.len() {
return (true, 0_usize, 0_usize);
}
assert_eq!(self.samples_2d_array_sizes[self.array_2d_offset], n);
assert!(self.current_pixel_sample_index < self.samples_per_pixel);
let start: usize = (self.current_pixel_sample_index * n as i64) as usize;
let idx: usize = self.array_2d_offset;
self.array_2d_offset += 1;
(false, idx, start)
}
pub fn start_next_sample(&mut self) -> bool {
self.array_1d_offset = 0_usize;
self.array_2d_offset = 0_usize;
self.current_pixel_sample_index += 1_i64;
self.current_pixel_sample_index < self.samples_per_pixel
}
pub fn get_current_pixel(&self) -> Point2i {
self.current_pixel
}
pub fn get_current_sample_number(&self) -> i64 {
self.current_pixel_sample_index
}
pub fn get_samples_per_pixel(&self) -> i64 {
self.samples_per_pixel
}
}