1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
//! Utilities for game state management. use amethyst_input::is_close_requested; use derivative::Derivative; use crate::{ecs::World, GameData, StateEvent}; use std::fmt::{Debug, Display, Formatter, Result as FmtResult}; #[cfg(feature = "profiler")] use thread_profiler::profile_scope; /// Error type for errors occurring in `StateMachine` #[derive(Debug)] pub enum StateError { NoStatesPresent, } impl Display for StateError { fn fmt(&self, fmt: &mut Formatter<'_>) -> FmtResult { match *self { StateError::NoStatesPresent => write!( fmt, "Tried to start state machine without any states present" ), } } } /// State data encapsulates the data sent to all state functions from the application main loop. #[allow(missing_debug_implementations)] pub struct StateData<'a, T> { /// Main `World` pub world: &'a mut World, /// User defined game data pub data: &'a mut T, } impl<'a, T> StateData<'a, T> where T: 'a, { /// Create a new state data pub fn new(world: &'a mut World, data: &'a mut T) -> Self { StateData { world, data } } } /// Types of state transitions. /// T is the type of shared data between states. /// E is the type of events pub enum Trans<T, E> { /// Continue as normal. None, /// Remove the active state and resume the next state on the stack or stop /// if there are none. Pop, /// Pause the active state and push a new state onto the stack. Push(Box<dyn State<T, E>>), /// Remove the current state on the stack and insert a different one. Switch(Box<dyn State<T, E>>), /// Stop and remove all states and shut down the engine. Quit, } impl<T, E> Debug for Trans<T, E> { fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult { match *self { Trans::None => f.write_str("None"), Trans::Pop => f.write_str("Pop"), Trans::Push(_) => f.write_str("Push"), Trans::Switch(_) => f.write_str("Switch"), Trans::Quit => f.write_str("Quit"), } } } /// Event queue to trigger state `Trans` from other places than a `State`'s methods. /// # Example: /// ```rust, ignore /// world.write_resource::<EventChannel<TransEvent<MyGameData, StateEvent>>>().single_write(Box::new(|| Trans::Quit)); /// ``` /// /// Transitions will be executed sequentially by Amethyst's `CoreApplication` update loop. pub type TransEvent<T, E> = Box<dyn Fn() -> Trans<T, E> + Send + Sync + 'static>; /// An empty `Trans`. Made to be used with `EmptyState`. pub type EmptyTrans = Trans<(), StateEvent>; /// A simple default `Trans`. Made to be used with `SimpleState`. /// By default it contains a `GameData` as its `StateData` and doesn't have a custom event type. pub type SimpleTrans = Trans<GameData<'static, 'static>, StateEvent>; /// A trait which defines game states that can be used by the state machine. pub trait State<T, E: Send + Sync + 'static> { /// Executed when the game state begins. fn on_start(&mut self, _data: StateData<'_, T>) {} /// Executed when the game state exits. fn on_stop(&mut self, _data: StateData<'_, T>) {} /// Executed when a different game state is pushed onto the stack. fn on_pause(&mut self, _data: StateData<'_, T>) {} /// Executed when the application returns to this game state once again. fn on_resume(&mut self, _data: StateData<'_, T>) {} /// Executed on every frame before updating, for use in reacting to events. fn handle_event(&mut self, _data: StateData<'_, T>, _event: E) -> Trans<T, E> { Trans::None } /// Executed repeatedly at stable, predictable intervals (1/60th of a second /// by default), /// if this is the active state. fn fixed_update(&mut self, _data: StateData<'_, T>) -> Trans<T, E> { Trans::None } /// Executed on every frame immediately, as fast as the engine will allow (taking into account the frame rate limit), /// if this is the active state. fn update(&mut self, _data: StateData<'_, T>) -> Trans<T, E> { Trans::None } /// Executed repeatedly at stable, predictable intervals (1/60th of a second /// by default), /// even when this is not the active state, /// as long as this state is on the [StateMachine](struct.StateMachine.html)'s state-stack. fn shadow_fixed_update(&mut self, _data: StateData<'_, T>) {} /// Executed on every frame immediately, as fast as the engine will allow (taking into account the frame rate limit), /// even when this is not the active state, /// as long as this state is on the [StateMachine](struct.StateMachine.html)'s state-stack. fn shadow_update(&mut self, _data: StateData<'_, T>) {} } /// An empty `State` trait. It contains no `StateData` or custom `StateEvent`. pub trait EmptyState { /// Executed when the game state begins. fn on_start(&mut self, _data: StateData<'_, ()>) {} /// Executed when the game state exits. fn on_stop(&mut self, _data: StateData<'_, ()>) {} /// Executed when a different game state is pushed onto the stack. fn on_pause(&mut self, _data: StateData<'_, ()>) {} /// Executed when the application returns to this game state once again. fn on_resume(&mut self, _data: StateData<'_, ()>) {} /// Executed on every frame before updating, for use in reacting to events. fn handle_event(&mut self, _data: StateData<'_, ()>, event: StateEvent) -> EmptyTrans { if let StateEvent::Window(event) = &event { if is_close_requested(&event) { Trans::Quit } else { Trans::None } } else { Trans::None } } /// Executed repeatedly at stable, predictable intervals (1/60th of a second /// by default). fn fixed_update(&mut self, _data: StateData<'_, ()>) -> EmptyTrans { Trans::None } /// Executed on every frame immediately, as fast as the engine will allow (taking into account the frame rate limit). fn update(&mut self, _data: StateData<'_, ()>) -> EmptyTrans { Trans::None } /// Executed repeatedly at stable, predictable intervals (1/60th of a second /// by default), /// even when this is not the active state, /// as long as this state is on the [StateMachine](struct.StateMachine.html)'s state-stack. fn shadow_fixed_update(&mut self, _data: StateData<'_, ()>) {} /// Executed on every frame immediately, as fast as the engine will allow (taking into account the frame rate limit), /// even when this is not the active state, /// as long as this state is on the [StateMachine](struct.StateMachine.html)'s state-stack. fn shadow_update(&mut self, _data: StateData<'_, ()>) {} } impl<T: EmptyState> State<(), StateEvent> for T { /// Executed when the game state begins. fn on_start(&mut self, data: StateData<'_, ()>) { self.on_start(data) } /// Executed when the game state exits. fn on_stop(&mut self, data: StateData<'_, ()>) { self.on_stop(data) } /// Executed when a different game state is pushed onto the stack. fn on_pause(&mut self, data: StateData<'_, ()>) { self.on_pause(data) } /// Executed when the application returns to this game state once again. fn on_resume(&mut self, data: StateData<'_, ()>) { self.on_resume(data) } /// Executed on every frame before updating, for use in reacting to events. fn handle_event(&mut self, data: StateData<'_, ()>, event: StateEvent) -> EmptyTrans { self.handle_event(data, event) } /// Executed repeatedly at stable, predictable intervals (1/60th of a second /// by default). fn fixed_update(&mut self, data: StateData<'_, ()>) -> EmptyTrans { self.fixed_update(data) } /// Executed on every frame immediately, as fast as the engine will allow (taking into account the frame rate limit). fn update(&mut self, data: StateData<'_, ()>) -> EmptyTrans { self.update(data) } /// Executed repeatedly at stable, predictable intervals (1/60th of a second /// by default), /// even when this is not the active state, /// as long as this state is on the [StateMachine](struct.StateMachine.html)'s state-stack. fn shadow_fixed_update(&mut self, data: StateData<'_, ()>) { self.shadow_fixed_update(data); } /// Executed on every frame immediately, as fast as the engine will allow (taking into account the frame rate limit), /// even when this is not the active state, /// as long as this state is on the [StateMachine](struct.StateMachine.html)'s state-stack. fn shadow_update(&mut self, data: StateData<'_, ()>) { self.shadow_update(data); } } /// A simple `State` trait. It contains `GameData` as its `StateData` and no custom `StateEvent`. pub trait SimpleState { /// Executed when the game state begins. fn on_start(&mut self, _data: StateData<'_, GameData<'_, '_>>) {} /// Executed when the game state exits. fn on_stop(&mut self, _data: StateData<'_, GameData<'_, '_>>) {} /// Executed when a different game state is pushed onto the stack. fn on_pause(&mut self, _data: StateData<'_, GameData<'_, '_>>) {} /// Executed when the application returns to this game state once again. fn on_resume(&mut self, _data: StateData<'_, GameData<'_, '_>>) {} /// Executed on every frame before updating, for use in reacting to events. fn handle_event( &mut self, _data: StateData<'_, GameData<'_, '_>>, event: StateEvent, ) -> SimpleTrans { if let StateEvent::Window(event) = &event { if is_close_requested(&event) { Trans::Quit } else { Trans::None } } else { Trans::None } } /// Executed repeatedly at stable, predictable intervals (1/60th of a second /// by default). fn fixed_update(&mut self, _data: StateData<'_, GameData<'_, '_>>) -> SimpleTrans { Trans::None } /// Executed on every frame immediately, as fast as the engine will allow (taking into account the frame rate limit). fn update(&mut self, _data: &mut StateData<'_, GameData<'_, '_>>) -> SimpleTrans { Trans::None } /// Executed repeatedly at stable, predictable intervals (1/60th of a second /// by default), /// even when this is not the active state, /// as long as this state is on the [StateMachine](struct.StateMachine.html)'s state-stack. fn shadow_fixed_update(&mut self, _data: StateData<'_, GameData<'_, '_>>) {} /// Executed on every frame immediately, as fast as the engine will allow (taking into account the frame rate limit), /// even when this is not the active state, /// as long as this state is on the [StateMachine](struct.StateMachine.html)'s state-stack. fn shadow_update(&mut self, _data: StateData<'_, GameData<'_, '_>>) {} } impl<T: SimpleState> State<GameData<'static, 'static>, StateEvent> for T { //pub trait SimpleState<'a,'b>: State<GameData<'a,'b>,()> { /// Executed when the game state begins. fn on_start(&mut self, data: StateData<'_, GameData<'_, '_>>) { self.on_start(data) } /// Executed when the game state exits. fn on_stop(&mut self, data: StateData<'_, GameData<'_, '_>>) { self.on_stop(data) } /// Executed when a different game state is pushed onto the stack. fn on_pause(&mut self, data: StateData<'_, GameData<'_, '_>>) { self.on_pause(data) } /// Executed when the application returns to this game state once again. fn on_resume(&mut self, data: StateData<'_, GameData<'_, '_>>) { self.on_resume(data) } /// Executed on every frame before updating, for use in reacting to events. fn handle_event( &mut self, data: StateData<'_, GameData<'_, '_>>, event: StateEvent, ) -> SimpleTrans { self.handle_event(data, event) } /// Executed repeatedly at stable, predictable intervals (1/60th of a second /// by default). fn fixed_update(&mut self, data: StateData<'_, GameData<'_, '_>>) -> SimpleTrans { self.fixed_update(data) } /// Executed on every frame immediately, as fast as the engine will allow (taking into account the frame rate limit). fn update(&mut self, mut data: StateData<'_, GameData<'_, '_>>) -> SimpleTrans { let r = self.update(&mut data); data.data.update(&data.world); r } /// Executed repeatedly at stable, predictable intervals (1/60th of a second /// by default), /// even when this is not the active state, /// as long as this state is on the [StateMachine](struct.StateMachine.html)'s state-stack. fn shadow_fixed_update(&mut self, data: StateData<'_, GameData<'_, '_>>) { self.shadow_fixed_update(data); } /// Executed on every frame immediately, as fast as the engine will allow (taking into account the frame rate limit), /// even when this is not the active state, /// as long as this state is on the [StateMachine](struct.StateMachine.html)'s state-stack. fn shadow_update(&mut self, data: StateData<'_, GameData<'_, '_>>) { self.shadow_update(data); } } /// A simple stack-based state machine (pushdown automaton). #[derive(Derivative)] #[derivative(Debug)] pub struct StateMachine<'a, T, E> { running: bool, #[derivative(Debug = "ignore")] state_stack: Vec<Box<dyn State<T, E> + 'a>>, } impl<'a, T, E: Send + Sync + 'static> StateMachine<'a, T, E> { /// Creates a new state machine with the given initial state. pub fn new<S: State<T, E> + 'a>(initial_state: S) -> StateMachine<'a, T, E> { StateMachine { running: false, state_stack: vec![Box::new(initial_state)], } } /// Checks whether the state machine is running. pub fn is_running(&self) -> bool { self.running } /// Initializes the state machine. pub fn start(&mut self, data: StateData<'_, T>) -> Result<(), StateError> { if !self.running { let state = self .state_stack .last_mut() .ok_or(StateError::NoStatesPresent)?; state.on_start(data); self.running = true; } Ok(()) } /// Passes a single event to the active state to handle. pub fn handle_event(&mut self, data: StateData<'_, T>, event: E) { let StateData { world, data } = data; if self.running { let trans = match self.state_stack.last_mut() { Some(state) => state.handle_event(StateData { world, data }, event), None => Trans::None, }; self.transition(trans, StateData { world, data }); } } /// Updates the currently active state at a steady, fixed interval. pub fn fixed_update(&mut self, data: StateData<'_, T>) { let StateData { world, data } = data; if self.running { let trans = match self.state_stack.last_mut() { Some(state) => { #[cfg(feature = "profiler")] profile_scope!("stack fixed_update"); state.fixed_update(StateData { world, data }) } None => Trans::None, }; for state in &mut self.state_stack { #[cfg(feature = "profiler")] profile_scope!("stack shadow_fixed_update"); state.shadow_fixed_update(StateData { world, data }); } { #[cfg(feature = "profiler")] profile_scope!("stack fixed transition"); self.transition(trans, StateData { world, data }); } } } /// Updates the currently active state immediately. pub fn update(&mut self, data: StateData<'_, T>) { let StateData { world, data } = data; if self.running { let trans = match self.state_stack.last_mut() { Some(state) => { #[cfg(feature = "profiler")] profile_scope!("stack update"); state.update(StateData { world, data }) } None => Trans::None, }; for state in &mut self.state_stack { #[cfg(feature = "profiler")] profile_scope!("stack shadow_update"); state.shadow_update(StateData { world, data }); } { #[cfg(feature = "profiler")] profile_scope!("stack transition"); self.transition(trans, StateData { world, data }); } } } /// Performs a state transition. /// Usually called by update or fixed_update by the user's defined `State`. /// This method can also be called when there are one or multiple `Trans` stored in the /// global `EventChannel<TransEvent<T, E>>`. Such `Trans` will be passed to this method /// sequentially in the order of insertion. pub fn transition(&mut self, request: Trans<T, E>, data: StateData<'_, T>) { if self.running { match request { Trans::None => (), Trans::Pop => self.pop(data), Trans::Push(state) => self.push(state, data), Trans::Switch(state) => self.switch(state, data), Trans::Quit => self.stop(data), } } } /// Removes the current state on the stack and inserts a different one. fn switch(&mut self, state: Box<dyn State<T, E>>, data: StateData<'_, T>) { if self.running { let StateData { world, data } = data; if let Some(mut state) = self.state_stack.pop() { state.on_stop(StateData { world, data }); } self.state_stack.push(state); //State was just pushed, thus pop will always succeed let new_state = self.state_stack.last_mut().unwrap(); new_state.on_start(StateData { world, data }); } } /// Pauses the active state and pushes a new state onto the state stack. fn push(&mut self, state: Box<dyn State<T, E>>, data: StateData<'_, T>) { if self.running { let StateData { world, data } = data; if let Some(state) = self.state_stack.last_mut() { state.on_pause(StateData { world, data }); } self.state_stack.push(state); //State was just pushed, thus pop will always succeed let new_state = self.state_stack.last_mut().unwrap(); new_state.on_start(StateData { world, data }); } } /// Stops and removes the active state and un-pauses the next state on the /// stack (if any). fn pop(&mut self, data: StateData<'_, T>) { if self.running { let StateData { world, data } = data; if let Some(mut state) = self.state_stack.pop() { state.on_stop(StateData { world, data }); } if let Some(state) = self.state_stack.last_mut() { state.on_resume(StateData { world, data }); } else { self.running = false; } } } /// Shuts the state machine down. pub(crate) fn stop(&mut self, data: StateData<'_, T>) { if self.running { let StateData { world, data } = data; while let Some(mut state) = self.state_stack.pop() { state.on_stop(StateData { world, data }); } self.running = false; } } } #[cfg(test)] mod tests { use super::*; struct State1(u8); struct State2; impl State<(), ()> for State1 { fn update(&mut self, _: StateData<'_, ()>) -> Trans<(), ()> { if self.0 > 0 { self.0 -= 1; Trans::None } else { Trans::Switch(Box::new(State2)) } } } impl State<(), ()> for State2 { fn update(&mut self, _: StateData<'_, ()>) -> Trans<(), ()> { Trans::Pop } } #[test] fn switch_pop() { use crate::ecs::prelude::{World, WorldExt}; let mut world = World::new(); let mut sm = StateMachine::new(State1(7)); // Unwrap here is fine because start can only fail when there are no states in the machine. sm.start(StateData::new(&mut world, &mut ())).unwrap(); for _ in 0..8 { sm.update(StateData::new(&mut world, &mut ())); assert!(sm.is_running()); } sm.update(StateData::new(&mut world, &mut ())); assert!(!sm.is_running()); } }