Added 60 FPS framerate cap for title/menu screens

This commit is contained in:
Ben Wallis 2021-06-05 13:55:58 +01:00
parent f574015c39
commit 1a93e3d84f
6 changed files with 28 additions and 3 deletions

View File

@ -152,6 +152,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed an issue where prices weren't properly making their way from econsim to the actual trade values. - Fixed an issue where prices weren't properly making their way from econsim to the actual trade values.
- Fixed entities with voxel colliders being off by one physics tick for collision. - Fixed entities with voxel colliders being off by one physics tick for collision.
- Airships no longer oscillate dramatically into the sky due to mistaking velocity for acceleration. - Airships no longer oscillate dramatically into the sky due to mistaking velocity for acceleration.
- The login and character selection screens no longer cause high GPU usage when the framerate limit is set to Unlimited.
## [0.9.0] - 2021-03-20 ## [0.9.0] - 2021-03-20

View File

@ -132,6 +132,9 @@ pub trait PlayState {
/// Get a descriptive name for this state type. /// Get a descriptive name for this state type.
fn name(&self) -> &'static str; fn name(&self) -> &'static str;
/// Determines whether the play state should have an enforced FPS cap
fn capped_fps(&self) -> bool;
/// Draw the play state. /// Draw the play state.
fn render(&mut self, renderer: &mut Renderer, settings: &Settings); fn render(&mut self, renderer: &mut Renderer, settings: &Settings);
} }

View File

@ -232,6 +232,8 @@ impl PlayState for CharSelectionState {
fn name(&self) -> &'static str { "Character Selection" } fn name(&self) -> &'static str { "Character Selection" }
fn capped_fps(&self) -> bool { true }
fn render(&mut self, renderer: &mut Renderer, _: &Settings) { fn render(&mut self, renderer: &mut Renderer, _: &Settings) {
let mut drawer = match renderer let mut drawer = match renderer
.start_recording_frame(self.scene.global_bind_group()) .start_recording_frame(self.scene.global_bind_group())

View File

@ -317,6 +317,8 @@ impl PlayState for MainMenuState {
fn name(&self) -> &'static str { "Title" } fn name(&self) -> &'static str { "Title" }
fn capped_fps(&self) -> bool { true }
fn render(&mut self, renderer: &mut Renderer, _: &Settings) { fn render(&mut self, renderer: &mut Renderer, _: &Settings) {
let mut drawer = match renderer let mut drawer = match renderer
.start_recording_frame(self.scene.global_bind_group()) .start_recording_frame(self.scene.global_bind_group())

View File

@ -164,12 +164,15 @@ fn handle_main_events_cleared(
*control_flow = winit::event_loop::ControlFlow::Exit; *control_flow = winit::event_loop::ControlFlow::Exit;
} }
let mut capped_fps = false;
drop(guard); drop(guard);
if let Some(last) = states.last_mut() { if let Some(last) = states.last_mut() {
span!(guard, "Render"); span!(guard, "Render");
let renderer = global_state.window.renderer_mut(); let renderer = global_state.window.renderer_mut();
// Render the screen using the global renderer // Render the screen using the global renderer
last.render(renderer, &global_state.settings); last.render(renderer, &global_state.settings);
capped_fps = last.capped_fps();
drop(guard); drop(guard);
} }
@ -177,9 +180,21 @@ fn handle_main_events_cleared(
if !exit { if !exit {
// Wait for the next tick. // Wait for the next tick.
span!(guard, "Main thread sleep"); span!(guard, "Main thread sleep");
global_state.clock.set_target_dt(Duration::from_secs_f64(
1.0 / get_fps(global_state.settings.graphics.max_fps) as f64, // Enforce an FPS cap for the non-game session play states to prevent them
)); // running at hundreds/thousands of FPS resulting in high GPU usage for
// effectively doing nothing.
let max_fps = get_fps(global_state.settings.graphics.max_fps);
const TITLE_SCREEN_FPS_CAP: u32 = 60;
let target_fps = if capped_fps {
u32::min(TITLE_SCREEN_FPS_CAP, max_fps)
} else {
max_fps
};
global_state
.clock
.set_target_dt(Duration::from_secs_f64(1.0 / target_fps as f64));
global_state.clock.tick(); global_state.clock.tick();
drop(guard); drop(guard);
#[cfg(feature = "tracy")] #[cfg(feature = "tracy")]

View File

@ -1387,6 +1387,8 @@ impl PlayState for SessionState {
fn name(&self) -> &'static str { "Session" } fn name(&self) -> &'static str { "Session" }
fn capped_fps(&self) -> bool { false }
/// Render the session to the screen. /// Render the session to the screen.
/// ///
/// This method should be called once per frame. /// This method should be called once per frame.