Skip to content

Commit aecfb77

Browse files
author
turist
committed
Updated unittests for test_bounds
1 parent 320eb0f commit aecfb77

File tree

7 files changed

+396
-50
lines changed

7 files changed

+396
-50
lines changed

Cargo.lock

+115-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ categories = ["data-structures"]
1616
[dev_dependencies]
1717
rayon = "1.5"
1818
glium = "0.30"
19+
rand ="0.8.5"
20+
rand_derive = "0.5.0"

examples/glium.rs

+27-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
use std::f32::consts::PI;
2+
use std::thread::sleep;
3+
use std::time::Duration;
24
use glium::index::PrimitiveType;
35
use glium::{glutin, implement_vertex, program, uniform, Surface, Program, Display, VertexBuffer, IndexBuffer};
46
use glium::glutin::event_loop::EventLoop;
@@ -159,12 +161,12 @@ fn draw(mouse_pos: (f32, f32),
159161
) {
160162
// position should already have been set, so we can just change the visibility
161163
for chunk in tree.iter_chunks_to_activate_mut() {
162-
chunk.visible = true;
164+
chunk.visible = false;
163165
// chunk.cache_state |= 1;
164166
}
165167

166168
for chunk in tree.iter_chunks_to_deactivate_mut() {
167-
//chunk.visible = false;
169+
chunk.visible = false;
168170
}
169171

170172
// and make chunks that are cached visible
@@ -182,6 +184,29 @@ fn draw(mouse_pos: (f32, f32),
182184
tree.search_around(qv, 7, | c|{
183185
c.chunk.cache_state = 4
184186
});
187+
let min = QuadVec::new(0, 0, 4);
188+
let max = QuadVec::new(2, 2, 4);
189+
let mut count = 0;
190+
191+
for i in tree.iter_all_chunks_in_bounds_and_tree_mut(min, max, 4){
192+
193+
//sleep(Duration::from_secs_f32(0.1));
194+
195+
if !i.0.contains_child_node(QuadVec::new(i.0.x<<1, i.0.y<<1, 4))&&i.1.visible {
196+
197+
println!(" YES CHUNK x: {:?} y: {:?}, on depth: {:?}", i.0.x, i.0.y, i.0.depth);
198+
count += 1;
199+
}
200+
201+
else{println!(" NO CHUNK x: {:?} y: {:?}, on depth: {:?}", i.0.x, i.0.y, i.0.depth);
202+
count += 1;}
203+
println!("{:?}", count);
204+
}
205+
206+
207+
208+
209+
185210
// go over all chunks in the tree and set them to not be selected
186211
for chunk in tree.iter_chunks_mut() {
187212
chunk.selected = false;

0 commit comments

Comments
 (0)