 7989cb2650
			
		
	
	
		7989cb2650
		
	
	
	
	
		
			
			# Objective - Make `Time` API more consistent. - Support time accel/decel/pause. ## Solution This is just the `Time` half of #3002. I was told that part isn't controversial. - Give the "delta time" and "total elapsed time" methods `f32`, `f64`, and `Duration` variants with consistent naming. - Implement accelerating / decelerating the passage of time. - Implement stopping time. --- ## Changelog - Changed `time_since_startup` to `elapsed` because `time.time_*` is just silly. - Added `relative_speed` and `set_relative_speed` methods. - Added `is_paused`, `pause`, `unpause` , and methods. (I'd prefer `resume`, but `unpause` matches `Timer` API.) - Added `raw_*` variants of the "delta time" and "total elapsed time" methods. - Added `first_update` method because there's a non-zero duration between startup and the first update. ## Migration Guide - `time.time_since_startup()` -> `time.elapsed()` - `time.seconds_since_startup()` -> `time.elapsed_seconds_f64()` - `time.seconds_since_startup_wrapped_f32()` -> `time.elapsed_seconds_wrapped()` If you aren't sure which to use, most systems should continue to use "scaled" time (e.g. `time.delta_seconds()`). The realtime "unscaled" time measurements (e.g. `time.raw_delta_seconds()`) are mostly for debugging and profiling.
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //! Illustrates how to change window settings and shows how to affect
 | |
| //! the mouse pointer in various ways.
 | |
| 
 | |
| use bevy::{
 | |
|     diagnostic::{FrameTimeDiagnosticsPlugin, LogDiagnosticsPlugin},
 | |
|     prelude::*,
 | |
|     window::{CursorGrabMode, PresentMode},
 | |
| };
 | |
| 
 | |
| fn main() {
 | |
|     App::new()
 | |
|         .insert_resource(WindowDescriptor {
 | |
|             title: "I am a window!".to_string(),
 | |
|             width: 500.,
 | |
|             height: 300.,
 | |
|             present_mode: PresentMode::AutoVsync,
 | |
|             ..default()
 | |
|         })
 | |
|         .add_plugins(DefaultPlugins)
 | |
|         .add_plugin(LogDiagnosticsPlugin::default())
 | |
|         .add_plugin(FrameTimeDiagnosticsPlugin)
 | |
|         .add_system(change_title)
 | |
|         .add_system(toggle_cursor)
 | |
|         .add_system(toggle_vsync)
 | |
|         .add_system(cycle_cursor_icon)
 | |
|         .run();
 | |
| }
 | |
| 
 | |
| /// This system toggles the vsync mode when pressing the button V.
 | |
| /// You'll see fps increase displayed in the console.
 | |
| fn toggle_vsync(input: Res<Input<KeyCode>>, mut windows: ResMut<Windows>) {
 | |
|     if input.just_pressed(KeyCode::V) {
 | |
|         let window = windows.primary_mut();
 | |
| 
 | |
|         window.set_present_mode(if matches!(window.present_mode(), PresentMode::AutoVsync) {
 | |
|             PresentMode::AutoNoVsync
 | |
|         } else {
 | |
|             PresentMode::AutoVsync
 | |
|         });
 | |
|         info!("PRESENT_MODE: {:?}", window.present_mode());
 | |
|     }
 | |
| }
 | |
| 
 | |
| /// This system will then change the title during execution
 | |
| fn change_title(time: Res<Time>, mut windows: ResMut<Windows>) {
 | |
|     let window = windows.primary_mut();
 | |
|     window.set_title(format!(
 | |
|         "Seconds since startup: {}",
 | |
|         time.elapsed_seconds().round()
 | |
|     ));
 | |
| }
 | |
| 
 | |
| /// This system toggles the cursor's visibility when the space bar is pressed
 | |
| fn toggle_cursor(input: Res<Input<KeyCode>>, mut windows: ResMut<Windows>) {
 | |
|     let window = windows.primary_mut();
 | |
|     if input.just_pressed(KeyCode::Space) {
 | |
|         window.set_cursor_grab_mode(match window.cursor_grab_mode() {
 | |
|             CursorGrabMode::None => CursorGrabMode::Locked,
 | |
|             CursorGrabMode::Locked | CursorGrabMode::Confined => CursorGrabMode::None,
 | |
|         });
 | |
|         window.set_cursor_visibility(!window.cursor_visible());
 | |
|     }
 | |
| }
 | |
| 
 | |
| /// This system cycles the cursor's icon through a small set of icons when clicking
 | |
| fn cycle_cursor_icon(
 | |
|     input: Res<Input<MouseButton>>,
 | |
|     mut windows: ResMut<Windows>,
 | |
|     mut index: Local<usize>,
 | |
| ) {
 | |
|     const ICONS: &[CursorIcon] = &[
 | |
|         CursorIcon::Default,
 | |
|         CursorIcon::Hand,
 | |
|         CursorIcon::Wait,
 | |
|         CursorIcon::Text,
 | |
|         CursorIcon::Copy,
 | |
|     ];
 | |
|     let window = windows.primary_mut();
 | |
|     if input.just_pressed(MouseButton::Left) {
 | |
|         *index = (*index + 1) % ICONS.len();
 | |
|         window.set_cursor_icon(ICONS[*index]);
 | |
|     } else if input.just_pressed(MouseButton::Right) {
 | |
|         *index = if *index == 0 {
 | |
|             ICONS.len() - 1
 | |
|         } else {
 | |
|             *index - 1
 | |
|         };
 | |
|         window.set_cursor_icon(ICONS[*index]);
 | |
|     }
 | |
| }
 |