mirror of
https://github.com/bevyengine/bevy
synced 2024-12-25 20:43:07 +00:00
946d5d1024
fixes unintialized global resource memory
69 lines
2 KiB
Rust
69 lines
2 KiB
Rust
use super::{App, AppBuilder};
|
|
use std::{thread, time::Duration};
|
|
use crate::{event::{Events, EventReader}, plugin::AppPlugin, app::AppExit};
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
|
pub enum RunMode {
|
|
Loop { wait: Option<Duration> },
|
|
Once,
|
|
}
|
|
|
|
impl Default for RunMode {
|
|
fn default() -> Self {
|
|
RunMode::Loop { wait: None }
|
|
}
|
|
}
|
|
|
|
#[derive(Default)]
|
|
pub struct ScheduleRunnerPlugin {
|
|
pub run_mode: RunMode,
|
|
}
|
|
|
|
impl ScheduleRunnerPlugin {
|
|
pub fn run_once() -> Self {
|
|
ScheduleRunnerPlugin {
|
|
run_mode: RunMode::Once,
|
|
}
|
|
}
|
|
|
|
pub fn run_loop(wait_duration: Duration) -> Self {
|
|
ScheduleRunnerPlugin {
|
|
run_mode: RunMode::Loop {
|
|
wait: Some(wait_duration),
|
|
},
|
|
}
|
|
}
|
|
}
|
|
|
|
impl AppPlugin for ScheduleRunnerPlugin {
|
|
fn build(&self, app: &mut AppBuilder) {
|
|
let run_mode = self.run_mode;
|
|
app.set_runner(move |mut app: App| {
|
|
let mut app_exit_event_reader = EventReader::<AppExit>::default();
|
|
match run_mode {
|
|
RunMode::Once => {
|
|
app.schedule.run(&mut app.world, &mut app.resources);
|
|
}
|
|
RunMode::Loop { wait } => loop {
|
|
if let Some(app_exit_events) = app.resources.get_mut::<Events<AppExit>>() {
|
|
if app_exit_event_reader.latest(&app_exit_events).is_some() {
|
|
break;
|
|
}
|
|
}
|
|
|
|
app.schedule.run(&mut app.world, &mut app.resources);
|
|
|
|
if let Some(app_exit_events) = app.resources.get_mut::<Events<AppExit>>() {
|
|
if app_exit_event_reader.latest(&app_exit_events).is_some() {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if let Some(wait) = wait {
|
|
thread::sleep(wait);
|
|
}
|
|
},
|
|
}
|
|
});
|
|
}
|
|
}
|