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
//! The network events that are passed from machine to machine, and within the ECS event handling system. //! NetEvent are passed through the network //! NetOwnedEvent are passed through the ECS, and contains the event's source (remote connection, usually). use crate::Result; use serde::{de::DeserializeOwned, Deserialize, Serialize}; use std::net::SocketAddr; /// Network events which you can send or and receive from an endpoint. // TODO, Connect, connection refused, disconnect, disconnected #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] pub enum NetEvent<T> { /// Will be fired when a client connected. /// When this event occurs the `NetConnection` with this address was already automatically added to the world. Connected(SocketAddr), /// Will be fired when a client was disconnected. /// If this happens consider removing the `NetConnection` with this address from the world. Disconnected(SocketAddr), /// Send a packet to all connected clients Packet(NetPacket<T>), #[doc(hidden)] __Nonexhaustive, } impl<T> NetEvent<T> where T: Serialize + DeserializeOwned, { pub(crate) fn from_packet(packet: laminar::Packet) -> Result<Self> { match crate::deserialize_event::<T>(packet.payload()) { Ok(event) => { let net_event: NetEvent<T> = NetEvent::Packet(match packet.delivery_guarantee() { laminar::DeliveryGuarantee::Unreliable => match packet.order_guarantee() { laminar::OrderingGuarantee::None => NetPacket::<T>::unreliable(event), laminar::OrderingGuarantee::Sequenced(s) => { NetPacket::unreliable_sequenced(event, s) } _ => panic!("This is in no way possible"), }, laminar::DeliveryGuarantee::Reliable => match packet.order_guarantee() { laminar::OrderingGuarantee::None => NetPacket::reliable_unordered(event), laminar::OrderingGuarantee::Sequenced(s) => { NetPacket::reliable_sequenced(event, s) } laminar::OrderingGuarantee::Ordered(o) => { NetPacket::reliable_ordered(event, o) } }, }); Ok(net_event) } Err(e) => Err(e), } } } /// Enum to specify how a packet should be arranged. #[derive(Serialize, Deserialize, Copy, Clone, Debug, PartialOrd, PartialEq, Eq)] pub(crate) enum OrderingGuarantee { /// No arranging will be done. None, /// Packets will be arranged in sequence. Sequenced(Option<u8>), /// Packets will be arranged in order. Ordered(Option<u8>), } /// Enum to specify how a packet should be delivered. #[derive(Serialize, Deserialize, Copy, Clone, Debug, PartialOrd, PartialEq, Eq)] pub(crate) enum DeliveryGuarantee { /// Packet may or may not be delivered Unreliable, /// Packet will be delivered Reliable, } impl From<laminar::OrderingGuarantee> for OrderingGuarantee { fn from(ordering: laminar::OrderingGuarantee) -> Self { match ordering { laminar::OrderingGuarantee::None => OrderingGuarantee::None, laminar::OrderingGuarantee::Sequenced(s) => OrderingGuarantee::Sequenced(s), laminar::OrderingGuarantee::Ordered(o) => OrderingGuarantee::Ordered(o), } } } impl From<OrderingGuarantee> for laminar::OrderingGuarantee { fn from(ordering: OrderingGuarantee) -> Self { match ordering { OrderingGuarantee::None => laminar::OrderingGuarantee::None, OrderingGuarantee::Sequenced(s) => laminar::OrderingGuarantee::Sequenced(s), OrderingGuarantee::Ordered(o) => laminar::OrderingGuarantee::Ordered(o), } } } impl From<DeliveryGuarantee> for laminar::DeliveryGuarantee { fn from(delivery: DeliveryGuarantee) -> Self { match delivery { DeliveryGuarantee::Unreliable => laminar::DeliveryGuarantee::Unreliable, DeliveryGuarantee::Reliable => laminar::DeliveryGuarantee::Reliable, } } } impl Default for OrderingGuarantee { fn default() -> Self { OrderingGuarantee::None } } impl Default for DeliveryGuarantee { fn default() -> Self { DeliveryGuarantee::Unreliable } } /// Represents a packet which could have any serializable payload. /// /// A packet could have reliability guarantees to specify how it should be delivered and processed. /// /// | Reliability Type | Packet Drop | Packet Duplication | Packet Order | Packet Fragmentation |Packet Delivery| /// | :-------------: | :-------------: | :-------------: | :-------------: | :-------------: | :-------------: /// | **Unreliable Unordered** | Yes | Yes | No | No | No /// | **Unreliable Sequenced** | Yes | No | Sequenced | No | No /// | **Reliable Unordered** | No | No | No | Yes | Yes /// | **Reliable Ordered** | No | No | Ordered | Yes | Yes /// | **Reliable Sequenced** | No | No | Sequenced | Yes | Yes /// /// You are able to send packets with any the above guarantees. /// /// For more information please have a look at: https://amethyst.github.io/laminar/docs/reliability/reliability.html #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] pub struct NetPacket<T> { content: T, #[serde(skip)] ordering_guarantee: OrderingGuarantee, #[serde(skip)] delivery_guarantee: DeliveryGuarantee, } impl<T> NetPacket<T> { /// Create a new unreliable packet with the given content. /// /// Unreliable: Packets can be dropped, duplicated or arrive without order. /// /// **Details** /// /// | Packet Drop | Packet Duplication | Packet Order | Packet Fragmentation | Packet Delivery | /// | :-------------: | :-------------: | :-------------: | :-------------: | :-------------: | /// | Yes | Yes | No | No | No | /// /// Basically just bare UDP. The packet may or may not be delivered. pub fn unreliable(content: T) -> NetPacket<T> { NetPacket { ordering_guarantee: OrderingGuarantee::None, delivery_guarantee: DeliveryGuarantee::Unreliable, content, } } /// Create a new unreliable sequenced packet with the given content. /// /// Unreliable Sequenced; Packets can be dropped, but could not be duplicated and arrive in sequence. /// /// *Details* /// /// | Packet Drop | Packet Duplication | Packet Order | Packet Fragmentation | Packet Delivery | /// | :-------------: | :-------------: | :-------------: | :-------------: | :-------------: | /// | Yes | Yes | Sequenced | No | No | /// /// Basically just bare UDP, free to be dropped, but has some sequencing to it so that only the newest packets are kept. pub fn unreliable_sequenced(content: T, stream_id: Option<u8>) -> NetPacket<T> { NetPacket { ordering_guarantee: OrderingGuarantee::Sequenced(stream_id), delivery_guarantee: DeliveryGuarantee::Unreliable, content, } } /// Create a new packet with the given content. /// Reliable; All packets will be sent and received, but without order. /// /// *Details* /// /// | Packet Drop | Packet Duplication | Packet Order | Packet Fragmentation | Packet Delivery | /// | :-------------: | :-------------: | :-------------: | :-------------: | :-------------: | /// | No | No | No | Yes | Yes | /// /// Basically this is almost TCP without ordering of packets. pub fn reliable_unordered(content: T) -> NetPacket<T> { NetPacket { ordering_guarantee: OrderingGuarantee::None, delivery_guarantee: DeliveryGuarantee::Reliable, content, } } /// Create a new packet with the given content and optional stream on which the ordering will be done. /// /// Reliable; All packets will be sent and received, with order. /// /// *Details* /// /// | Packet Drop | Packet Duplication | Packet Order | Packet Fragmentation | Packet Delivery | /// | :-------------: | :-------------: | :-------------: | :-------------: | :-------------: | /// | No | No | Ordered | Yes | Yes | /// /// Basically this is almost TCP-like with ordering of packets. /// /// # Remark /// - When `stream_id` is specified as `None` the default stream will be used; if you are not sure what this is you can leave it at `None`. pub fn reliable_ordered(content: T, stream_id: Option<u8>) -> NetPacket<T> { NetPacket { ordering_guarantee: OrderingGuarantee::Ordered(stream_id), delivery_guarantee: DeliveryGuarantee::Reliable, content, } } /// Create a new packet with the given content and optional stream on which the sequencing will be done. /// /// Reliable; All packets will be sent and received, but arranged in sequence. /// Which means that only the newest packets will be let through, older packets will be received but they won't get to the user. /// /// *Details* /// /// | Packet Drop | Packet Duplication | Packet Order | Packet Fragmentation | Packet Delivery | /// | :-------------: | :-------------: | :-------------: | :-------------: | :-------------: | /// | Yes | No | Sequenced | Yes | Yes | /// /// Basically this is almost TCP-like but then sequencing instead of ordering. /// /// # Remark /// - When `stream_id` is specified as `None` the default stream will be used; if you are not sure what this is you can leave it at `None`. pub fn reliable_sequenced(content: T, stream_id: Option<u8>) -> NetPacket<T> { NetPacket { ordering_guarantee: OrderingGuarantee::Sequenced(stream_id), delivery_guarantee: DeliveryGuarantee::Reliable, content, } } /// Returns if this event is reliable. /// /// Each net event type is either reliable or unreliable. /// Reliable events always reach their destination, unreliable events may be lost. pub fn is_reliable(&self) -> bool { self.delivery_guarantee == DeliveryGuarantee::Reliable } /// Returns if this event is unreliable. /// /// Each net event type is either reliable or unreliable. /// Reliable events always reach their destination, unreliable events may be lost. pub fn is_unreliable(&self) -> bool { self.delivery_guarantee == DeliveryGuarantee::Unreliable } /// Returns whether this event is an ordered event. pub fn is_ordered(&self) -> bool { if let OrderingGuarantee::Ordered(_) = self.ordering_guarantee { return true; } false } /// Returns whether this event is an sequenced event. pub fn is_sequenced(&self) -> bool { if let OrderingGuarantee::Sequenced(_) = self.ordering_guarantee { return true; } false } /// Return if this event is neither ordered or sequenced. pub fn is_unordered(&self) -> bool { self.ordering_guarantee == OrderingGuarantee::None } /// Returns a immutable reference to the content. pub fn content(&self) -> &T { &self.content } /// Returns a immutable reference to the content. pub fn content_mut(&mut self) -> &mut T { &mut self.content } /// Returns the ordering guarantee pub(crate) fn ordering_guarantee(&self) -> OrderingGuarantee { self.ordering_guarantee } /// Returns the delivery guarantee pub(crate) fn delivery_guarantee(&self) -> DeliveryGuarantee { self.delivery_guarantee } } #[cfg(test)] mod tests { use crate::net_event::NetPacket; #[test] fn assure_creation_unreliable_packet() { let packet = NetPacket::unreliable(test_payload()); assert_eq!(packet.content(), &test_payload()); assert_eq!(packet.is_ordered(), false); assert_eq!(packet.is_sequenced(), false); assert_eq!(packet.is_reliable(), false); assert_eq!(packet.is_unreliable(), true); } #[test] fn assure_creation_unreliable_sequenced() { let packet = NetPacket::unreliable_sequenced(test_payload(), Some(1)); assert_eq!(packet.content(), &test_payload()); assert_eq!(packet.is_ordered(), false); assert_eq!(packet.is_sequenced(), true); assert_eq!(packet.is_reliable(), false); assert_eq!(packet.is_unreliable(), true); } #[test] fn assure_creation_reliable() { let packet = NetPacket::reliable_unordered(test_payload()); assert_eq!(packet.content(), &test_payload()); assert_eq!(packet.is_ordered(), false); assert_eq!(packet.is_sequenced(), false); assert_eq!(packet.is_reliable(), true); assert_eq!(packet.is_unreliable(), false); } #[test] fn assure_creation_reliable_ordered() { let packet = NetPacket::reliable_ordered(test_payload(), Some(1)); assert_eq!(packet.content(), &test_payload()); assert_eq!(packet.is_ordered(), true); assert_eq!(packet.is_sequenced(), false); assert_eq!(packet.is_reliable(), true); assert_eq!(packet.is_unreliable(), false); } #[test] fn assure_creation_reliable_sequence() { let packet = NetPacket::reliable_sequenced(test_payload(), Some(1)); assert_eq!(packet.content(), &test_payload()); assert_eq!(packet.is_ordered(), false); assert_eq!(packet.is_sequenced(), true); assert_eq!(packet.is_reliable(), true); assert_eq!(packet.is_unreliable(), false); } fn test_payload() -> Vec<u8> { b"test".to_vec() } }