mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-26 00:38:44 -06:00
add fullscreen mode, release shader compiler after loading shader prefabs
This commit is contained in:
parent
f15d2b1510
commit
ce8ad9098f
|
@ -97,4 +97,5 @@ pub fn load_prefabs(
|
||||||
&renderer.display
|
&renderer.display
|
||||||
)
|
)
|
||||||
));
|
));
|
||||||
|
renderer.display.release_shader_compiler();
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,12 +4,12 @@ use glium::{
|
||||||
Version, Api,
|
Version, Api,
|
||||||
glutin::{
|
glutin::{
|
||||||
event_loop::EventLoop,
|
event_loop::EventLoop,
|
||||||
window::WindowBuilder,
|
window::{WindowBuilder, Fullscreen},
|
||||||
ContextBuilder, GlProfile
|
ContextBuilder, GlProfile,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
use glam::{Vec3, UVec2};
|
use glam::{Vec3, UVec2};
|
||||||
use crate::{events::WindowResizedEvent, settings::GameSettings};
|
use crate::{events::WindowResizedEvent, settings::{GameSettings, FullscreenMode}};
|
||||||
|
|
||||||
pub mod primitives;
|
pub mod primitives;
|
||||||
pub mod world;
|
pub mod world;
|
||||||
|
@ -31,19 +31,67 @@ pub struct Renderer {
|
||||||
impl Renderer {
|
impl Renderer {
|
||||||
pub fn init(event_loop: &EventLoop<()>, settings: &GameSettings) -> Self {
|
pub fn init(event_loop: &EventLoop<()>, settings: &GameSettings) -> Self {
|
||||||
log::info!("initializing display");
|
log::info!("initializing display");
|
||||||
|
|
||||||
let wb = WindowBuilder::new()
|
let wb = WindowBuilder::new()
|
||||||
.with_title("uwu")
|
.with_title("uwu")
|
||||||
|
.with_fullscreen({
|
||||||
|
if let Some(fs_settings) = &settings.fullscreen {
|
||||||
|
let monitor = event_loop.primary_monitor().or_else(|| {
|
||||||
|
event_loop.available_monitors().next()
|
||||||
|
});
|
||||||
|
if let Some(monitor) = monitor {
|
||||||
|
log::info!("monitor: {}", monitor.name().unwrap_or_else(|| "generic".into()));
|
||||||
|
match fs_settings.mode {
|
||||||
|
FullscreenMode::Borderless => {
|
||||||
|
log::info!("starting in borderless fullscreen mode");
|
||||||
|
Some(Fullscreen::Borderless(Some(monitor)))
|
||||||
|
},
|
||||||
|
FullscreenMode::Exclusive => {
|
||||||
|
log::info!("starting in exclusive fullscreen mode");
|
||||||
|
//TODO: grabbing the first video mode is probably not the best idea...
|
||||||
|
monitor.video_modes().next()
|
||||||
|
.map(|vmode| {
|
||||||
|
log::info!("video mode: {}", vmode.to_string());
|
||||||
|
Some(Fullscreen::Exclusive(vmode))
|
||||||
|
})
|
||||||
|
.unwrap_or_else(|| {
|
||||||
|
log::warn!("no valid video modes found, falling back to windowed mode instead");
|
||||||
|
None
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
log::warn!("no monitors found, falling back to windowed mode");
|
||||||
|
None
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
log::info!("starting in windowed mode");
|
||||||
|
None
|
||||||
|
}
|
||||||
|
})
|
||||||
.with_maximized(true);
|
.with_maximized(true);
|
||||||
|
|
||||||
let cb = ContextBuilder::new()
|
let cb = ContextBuilder::new()
|
||||||
.with_depth_buffer(24)
|
.with_depth_buffer(24)
|
||||||
.with_multisampling(settings.msaa.unwrap_or_default())
|
.with_multisampling(settings.msaa.unwrap_or_default())
|
||||||
.with_gl_profile(GlProfile::Core);
|
.with_gl_profile(GlProfile::Core);
|
||||||
|
|
||||||
let display = Display::new(wb, cb, event_loop)
|
let display = Display::new(wb, cb, event_loop)
|
||||||
.expect("Failed to create a glium Display");
|
.expect("Failed to create a glium Display");
|
||||||
|
|
||||||
|
log::info!("Vendor: {}", display.get_opengl_vendor_string());
|
||||||
log::info!("Renderer: {}", display.get_opengl_renderer_string());
|
log::info!("Renderer: {}", display.get_opengl_renderer_string());
|
||||||
log::info!("OpenGL {}", display.get_opengl_version_string());
|
log::info!("OpenGL {}", display.get_opengl_version_string());
|
||||||
log::info!("Supports GLES {:?}", display.get_supported_glsl_version());
|
log::info!("Supports GLSL {:?}", display.get_supported_glsl_version());
|
||||||
|
if display.is_context_loss_possible() {
|
||||||
|
log::warn!("ogl context loss possible");
|
||||||
|
}
|
||||||
|
if display.is_robust() {
|
||||||
|
log::warn!("ogl implementation is not robust");
|
||||||
|
}
|
||||||
|
|
||||||
assert!(display.is_glsl_version_supported(&Version(Api::GlEs, 3, 0)), "GLES 3.0 is not supported");
|
assert!(display.is_glsl_version_supported(&Version(Api::GlEs, 3, 0)), "GLES 3.0 is not supported");
|
||||||
|
|
||||||
Self { display }
|
Self { display }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,17 @@
|
||||||
use shipyard::{Unique, AllStoragesView};
|
use shipyard::{Unique, AllStoragesView};
|
||||||
|
|
||||||
|
pub enum FullscreenMode {
|
||||||
|
Borderless,
|
||||||
|
Exclusive,
|
||||||
|
}
|
||||||
|
|
||||||
|
pub struct FullscreenSettings {
|
||||||
|
pub mode: FullscreenMode,
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Unique)]
|
#[derive(Unique)]
|
||||||
pub struct GameSettings {
|
pub struct GameSettings {
|
||||||
|
pub fullscreen: Option<FullscreenSettings>,
|
||||||
pub msaa: Option<u16>,
|
pub msaa: Option<u16>,
|
||||||
pub max_anisotropy: Option<u16>,
|
pub max_anisotropy: Option<u16>,
|
||||||
/// there's a 1 chunk border of loaded but invisible around this
|
/// there's a 1 chunk border of loaded but invisible around this
|
||||||
|
@ -12,6 +22,7 @@ pub struct GameSettings {
|
||||||
impl Default for GameSettings {
|
impl Default for GameSettings {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
|
fullscreen: None,
|
||||||
msaa: Some(4), //not used yet
|
msaa: Some(4), //not used yet
|
||||||
max_anisotropy: Some(16),
|
max_anisotropy: Some(16),
|
||||||
render_distance: 6,
|
render_distance: 6,
|
||||||
|
|
Loading…
Reference in a new issue