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
use crate::{
    client::Client,
    resource::{Network, NetworkHost},
    server::Server,
};
use core::ecs::{System, WriteExpect};
use std::marker::PhantomData;

pub struct NetworkSystem<C>
where
    C: Client + 'static,
{
    _phantom: PhantomData<C>,
}

impl<C> Default for NetworkSystem<C>
where
    C: Client + 'static,
{
    fn default() -> Self {
        Self {
            _phantom: Default::default(),
        }
    }
}

impl<'s, C> System<'s> for NetworkSystem<C>
where
    C: Client + 'static,
{
    type SystemData = WriteExpect<'s, Network<C>>;

    fn run(&mut self, mut network: Self::SystemData) {
        network.process();
    }
}

pub struct NetworkHostSystem<S>
where
    S: Server + 'static,
{
    _phantom: PhantomData<S>,
}

impl<S> Default for NetworkHostSystem<S>
where
    S: Server + 'static,
{
    fn default() -> Self {
        Self {
            _phantom: Default::default(),
        }
    }
}

impl<'s, S> System<'s> for NetworkHostSystem<S>
where
    S: Server + 'static,
{
    type SystemData = WriteExpect<'s, NetworkHost<S>>;

    fn run(&mut self, mut network: Self::SystemData) {
        network.process();
    }
}