1
1
use std:: f32:: consts:: PI ;
2
+ use std:: thread:: sleep;
3
+ use std:: time:: Duration ;
2
4
use glium:: index:: PrimitiveType ;
3
5
use glium:: { glutin, implement_vertex, program, uniform, Surface , Program , Display , VertexBuffer , IndexBuffer } ;
4
6
use glium:: glutin:: event_loop:: EventLoop ;
@@ -159,12 +161,12 @@ fn draw(mouse_pos: (f32, f32),
159
161
) {
160
162
// position should already have been set, so we can just change the visibility
161
163
for chunk in tree. iter_chunks_to_activate_mut ( ) {
162
- chunk. visible = true ;
164
+ chunk. visible = false ;
163
165
// chunk.cache_state |= 1;
164
166
}
165
167
166
168
for chunk in tree. iter_chunks_to_deactivate_mut ( ) {
167
- // chunk.visible = false;
169
+ chunk. visible = false ;
168
170
}
169
171
170
172
// and make chunks that are cached visible
@@ -182,6 +184,29 @@ fn draw(mouse_pos: (f32, f32),
182
184
tree. search_around ( qv, 7 , | c|{
183
185
c. chunk . cache_state = 4
184
186
} ) ;
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
+
185
210
// go over all chunks in the tree and set them to not be selected
186
211
for chunk in tree. iter_chunks_mut ( ) {
187
212
chunk. selected = false ;
0 commit comments