Bevy Prototype Networking Laminar Plugin

MIT License

Warning: This is a prototype and not ready for production use

This is a prototype of a networking crate for bevy. This create provides a low-level networking plugin built on top of laminar, which adds some simple reliability, ordering, and virtual connection options on top of a UDP socket.

Getting Started

  1. Add bevy_prototype_networking_laminar to Cargo.toml

[dependencies] bevy = "0.1.3" bevy_prototype_networking_laminar = { git = "https://github.com/ncallaway/bevy_prototype_networking_laminar" }

  1. Add the NetworkPlugin to your bevy app setup

``` use bevyprototypenetworking_laminar::NetworkingPlugin;

...

app .adddefaultplugins()

.addplugin(NetworkingPlugin) .addsystem(...) ```

  1. Use the NetworkResource to bind to a socket and send/broadcast messages

``` fn startup_system(net: ResMut) { net.bind("127.0.0.1:12350").unwrap(); }

fn greeting_system(net: Res) { net.broadcast(b"How is everybody?", NetworkDelivery::ReliableSequenced(Some(1))); } ```

  1. Listen for NetworkEvents to receive incoming messages

```

[derive(Default)]

struct NetworkListenerState { network_events: EventReader, }

App::build() .adddefaultplugins() .add_plugin(NetworkingPlugin)

.initresource::() .addsystem(printnetworkevents.system()) .run();

fn printnetworkevents( mut state: ResMut, networkevents: Res>, ) { for event in state.networkevents.iter(&network_events) { println!("Received a NetworkEvent: {:?}", event); } } ```

Examples

Testbed

The testbed is a simple project that provides a more comprehensive example of using bevy_prototype_networking_laminar.

Testbed Screenshot

The testbed is also is intended to serve as a testbed for any other networking prototypes or attempts. All interaction with bevy_prototype_networking_laminar is contained to examples/testbed/net/prototype.rs. Using the testbed with a different networking plugin should be as simple as updating prototype.rs to interact with the other networking plugin. Contributions to the testbed to improve the code quality, or make the testbed more comprehensive by adding other prototypical network interactions are welcome.

Server

When on the server, you:

Client

When on the client, you:

simple

The simple example shows a very bare bones bevy application that will send messages back and forth.

Network Event: Message(Connection { addr: V4(127.0.0.1:12351), socket: SocketHandle { identifier: 0 } }, b"How are things over there?") Network Event: Connected(Connection { addr: V4(127.0.0.1:12351), socket: SocketHandle { identifier: 0 } }) Network Event: Disconnected(Connection { addr: V4(127.0.0.1:12351), socket: SocketHandle { identifier: 0 } }) Network Event: Message(Connection { addr: V4(127.0.0.1:12351), socket: SocketHandle { identifier: 0 } }, b"How are things over there?") Network Event: Connected(Connection { addr: V4(127.0.0.1:12351), socket: SocketHandle { identifier: 0 } }) Network Event: Disconnected(Connection { addr: V4(127.0.0.1:12351), socket: SocketHandle { identifier: 0 } })

Future Work

The current prototype implementation is extremely rough and early. The current work is mostly about exploring to discover a Network Plugin API that fits the bevy design. Listed here is the current low-hanging fruit for improving this prototype:

License

Licesened under the MIT license.