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
use std::{marker::PhantomData, net::SocketAddr};
use serde::{de::DeserializeOwned, Serialize};
use amethyst_core::{bundle::SystemBundle, ecs::World, shred::DispatcherBuilder};
use amethyst_error::{Error, ResultExt};
use crate::{server::ServerConfig, NetSocketSystem};
#[allow(missing_debug_implementations)]
pub struct NetworkBundle<T> {
config: ServerConfig,
_data: PhantomData<T>,
}
impl<T> NetworkBundle<T> {
pub fn new(udp_socket_addr: SocketAddr) -> Self {
let config = ServerConfig {
udp_socket_addr,
..Default::default()
};
NetworkBundle {
config,
_data: PhantomData,
}
}
pub fn from_config(config: ServerConfig) -> NetworkBundle<T> {
NetworkBundle {
config,
_data: PhantomData,
}
}
}
impl<'a, 'b, T> SystemBundle<'a, 'b> for NetworkBundle<T>
where
T: Send + Sync + PartialEq + Serialize + Clone + DeserializeOwned + 'static,
{
fn build(
self,
_world: &mut World,
builder: &mut DispatcherBuilder<'_, '_>,
) -> Result<(), Error> {
let socket_system = NetSocketSystem::<T>::new(self.config)
.with_context(|_| Error::from_string("Failed to open network system."))?;
builder.add(socket_system, "net_socket", &[]);
Ok(())
}
}