|
|
@ -5,6 +5,7 @@ pub mod grid_renderer;
|
|
|
|
mod rendered_window;
|
|
|
|
mod rendered_window;
|
|
|
|
|
|
|
|
|
|
|
|
use crate::WindowSettings;
|
|
|
|
use crate::WindowSettings;
|
|
|
|
|
|
|
|
use std::cmp::Ordering;
|
|
|
|
use std::collections::{hash_map::Entry, HashMap};
|
|
|
|
use std::collections::{hash_map::Entry, HashMap};
|
|
|
|
use std::sync::mpsc::Receiver;
|
|
|
|
use std::sync::mpsc::Receiver;
|
|
|
|
use std::sync::Arc;
|
|
|
|
use std::sync::Arc;
|
|
|
@ -120,13 +121,8 @@ impl Renderer {
|
|
|
|
|
|
|
|
|
|
|
|
root_windows
|
|
|
|
root_windows
|
|
|
|
.sort_by(|window_a, window_b| window_a.id.partial_cmp(&window_b.id).unwrap());
|
|
|
|
.sort_by(|window_a, window_b| window_a.id.partial_cmp(&window_b.id).unwrap());
|
|
|
|
floating_windows.sort_by(|window_a, window_b| {
|
|
|
|
|
|
|
|
window_a
|
|
|
|
floating_windows.sort_by(floating_sort);
|
|
|
|
.floating_order
|
|
|
|
|
|
|
|
.unwrap()
|
|
|
|
|
|
|
|
.partial_cmp(&window_b.floating_order.unwrap())
|
|
|
|
|
|
|
|
.unwrap()
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
root_windows
|
|
|
|
root_windows
|
|
|
|
.into_iter()
|
|
|
|
.into_iter()
|
|
|
@ -212,3 +208,30 @@ impl Renderer {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Defines how floating windows are sorted.
|
|
|
|
|
|
|
|
fn floating_sort(window_a: &&mut RenderedWindow, window_b: &&mut RenderedWindow) -> Ordering {
|
|
|
|
|
|
|
|
// First, compare floating order
|
|
|
|
|
|
|
|
let mut ord = window_a
|
|
|
|
|
|
|
|
.floating_order
|
|
|
|
|
|
|
|
.unwrap()
|
|
|
|
|
|
|
|
.partial_cmp(&window_b.floating_order.unwrap())
|
|
|
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
if ord == Ordering::Equal {
|
|
|
|
|
|
|
|
// If equal, compare grid pos x
|
|
|
|
|
|
|
|
ord = window_a
|
|
|
|
|
|
|
|
.grid_current_position
|
|
|
|
|
|
|
|
.x
|
|
|
|
|
|
|
|
.partial_cmp(&window_b.grid_current_position.x)
|
|
|
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
if ord == Ordering::Equal {
|
|
|
|
|
|
|
|
// If equal, compare grid pos z
|
|
|
|
|
|
|
|
ord = window_a
|
|
|
|
|
|
|
|
.grid_current_position
|
|
|
|
|
|
|
|
.y
|
|
|
|
|
|
|
|
.partial_cmp(&window_b.grid_current_position.y)
|
|
|
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ord
|
|
|
|
|
|
|
|
}
|
|
|
|