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
use std::sync::Arc;

use bevy::app::{App, Plugin, Update};
use bevy::ecs::system::SystemParam;
use bevy::prelude::{Commands, Event, EventReader};

use crate::extension::AppUndoEx;
use crate::prelude::UndoScheduler;

#[derive(SystemParam)]
pub struct UndoCallbackScheduler<'w>(UndoScheduler<'w, UndoCallbackEvent>);

impl<'w> UndoCallbackScheduler<'w> {
    #[inline(always)]
    pub fn register(&mut self, f: impl Fn(&mut Commands) + Send + Sync + 'static) {
        self.0.register(UndoCallbackEvent::new(f));
    }
}


#[derive(Copy, Clone, Hash, Eq, PartialEq, Debug, Default)]
pub(crate) struct UndoCallbackEventPlugin;

impl Plugin for UndoCallbackEventPlugin {
    #[inline]
    fn build(&self, app: &mut App) {
        app
            .add_undo_event::<UndoCallbackEvent>()
            .add_systems(Update, undo_callback_event_system);
    }
}


#[derive(Event, Clone)]
pub(crate) struct UndoCallbackEvent(Arc<dyn Fn(&mut Commands) + Send + Sync + 'static>);


impl UndoCallbackEvent {
    #[inline(always)]
    pub fn new(f: impl Fn(&mut Commands) + Send + Sync + 'static) -> Self {
        Self(Arc::new(f))
    }
}


#[inline]
pub(crate) fn undo_callback_event_system(
    mut commands: Commands,
    mut er: EventReader<UndoCallbackEvent>,
) {
    for e in er.iter() {
        e.0(&mut commands);
    }
}