Allow blank window rendering

This commit is contained in:
Evan Pratten 2022-03-17 16:48:10 -04:00
parent 6a6f268a6c
commit fdf4b5c82c
6 changed files with 41 additions and 4 deletions

View File

@ -1,3 +1,7 @@
{ {
"git.detectSubmodules": false "git.detectSubmodules": false,
"cSpell.words": [
"msaa",
"vsync"
]
} }

View File

@ -1,6 +1,9 @@
//! This file is the main entry point for the game logic. //! This file is the main entry point for the game logic.
use std::borrow::Borrow;
pub(crate) mod persistent; pub(crate) mod persistent;
pub(crate) mod rendering;
/// This is the game logic entrypoint. Despite being async, /// This is the game logic entrypoint. Despite being async,
/// this is expected to block the main thread for rendering and stuff. /// this is expected to block the main thread for rendering and stuff.
@ -15,7 +18,13 @@ pub async fn entrypoint() {
let mut save_state = persistent::save_state::GameSaveState::load_or_create() let mut save_state = persistent::save_state::GameSaveState::load_or_create()
.expect("Failed to parse game save state from disk. Possibly corrupt file?"); .expect("Failed to parse game save state from disk. Possibly corrupt file?");
// TODO: Blocking game loop goes here // Blocking call to the graphics rendering loop.
rendering::event_loop::handle_graphics_blocking(
|builder| {
builder.msaa_4x().vsync();
},
settings.target_fps,
);
// Clean up any resources // Clean up any resources
settings settings

View File

@ -9,13 +9,14 @@ use serde::{Deserialize, Serialize};
/// Please don't add anything relating to gameplay though (no coins, health, etc.). /// Please don't add anything relating to gameplay though (no coins, health, etc.).
#[derive(Debug, Clone, Serialize, Deserialize)] #[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PersistentGameSettings { pub struct PersistentGameSettings {
// TODO: Add settings here. /// The target framerate for the game
pub target_fps: u32,
} }
// Add any default values here. // Add any default values here.
impl Default for PersistentGameSettings { impl Default for PersistentGameSettings {
fn default() -> Self { fn default() -> Self {
Self {} Self { target_fps: 60 }
} }
} }

View File

@ -0,0 +1,20 @@
use raylib::RaylibBuilder;
pub fn handle_graphics_blocking<ConfigBuilder>(config: ConfigBuilder, target_frames_per_second: u32)
where
ConfigBuilder: FnOnce(&mut RaylibBuilder),
{
// Let the caller configure Raylib's internal window stuff
let (mut raylib_handle, raylib_thread) = {
let mut builder = raylib::init();
config(&mut builder);
builder.build()
};
// Set some important settings on the window
raylib_handle.set_exit_key(None);
raylib_handle.set_target_fps(target_frames_per_second);
// Run the event loop
while !raylib_handle.window_should_close() {}
}

View File

@ -0,0 +1,3 @@
//! This module contains lower level rendering logic.
pub mod event_loop;