| Crates.io | evoke |
| lib.rs | evoke |
| version | 0.4.0 |
| created_at | 2021-10-20 10:00:08.876529+00 |
| updated_at | 2022-02-07 20:56:32.975267+00 |
| description | Powerful netcode for edict based game engines |
| homepage | https://github.com/arcana-engine/evoke |
| repository | https://github.com/arcana-engine/evoke |
| max_upload_size | |
| id | 467823 |
| size | 91,489 |
Evoke provides building blocks to add networking capabilities to game engines.
Evoke supports:
Client-Server model with authoritative server
For client-server model Evoke automatically performs state replication with delta compression from server to client
and commands replication from clients to server.
Evoke makes no assumption of components used in the game.
User needs to register server::Descriptor in server and client::Descriptor in client for components that need to be replicated.
There're blanket implementations for components that are comparable for equality and serializable.
For server and for client.
Evoke's core provides very abstract client and server sessions,
supporting sending and receiving commands like
Connect, AddPlayer, SendInput, Update etc
with generic payload.
Evoke's core is available as separate crate evoke-core and re-exported from this crate as evoke::core
Unlike the evoke crate (this one) evoke-core does not depends on edict and can be used
in any game engine, even written in language other than Rust if packed into FFI-ready library.
To start using Evoke simply configure and run ServerSystem and ClientSystem on server and client respectively.
To configure ServerSystem provide descriptors for components replication and RemotePlayer implementation.
/// Information associated with player.
#[derive(serde::Deserialize)]
struct MyPlayerInfo;
/// Player input serializable representation.
#[derive(serde::Deserialize)]
struct MyPlayerInput;
/// This type drives player lifecycle and input processing.
struct MyRemotePlayer;
impl evoke::server::RemotePlayer for MyRemotePlayer {
type Info = MyPlayerInfo;
type Input = MyPlayerInput;
fn accept(info: MyPlayerInfo, pid: evoke::PlayerId, world: &mut edict::World) -> eyre::Result<Self> {
// Decide here whether accept new player based on `info` provided.
// `Ok` signals that player is accepted.
// `Err` signals that player is rejected.
Ok(MyRemotePlayer)
}
fn apply_input(&mut self, entity: edict::EntityId, world: &mut edict::World, pack: MyPlayerInput) {
// Input is associated with provided entity.
// This code should transform input and put it where other systems would be able to consume it properly.
// Usually it do the reverse of [`client::LocalPlayer::replicate`].
}
}
/// Component that is own descriptor.
#[derive(Clone, Copy, PartialEq, serde::Serialize)]
pub struct MyComponent;
/// Prepare channel listener.
let listener = tokio::net::TcpListener::bind((std::net::Ipv4Addr::LOCALHOST, 12523)).await?;
/// Build server system.
let mut server = evoke::server::ServerSystem::builder()
.with_descriptor::<MyComponent>()
.with_player::<MyRemotePlayer>()
.build(listener);
let mut world = edict::World::new();
let scope = scoped_arena::Scope::new();
// game loop
loop {
//
// Game loop tick
//
// Run server every tick.
server.run(&mut world, &scope);
}
To configure ClientSystem provide descriptors for components replication and LocalPlayer implementation.
/// Information associated with player.
#[derive(serde::Serialize)]
struct MyPlayerInfo;
/// Player input serializable representation.
#[derive(serde::Serialize)]
struct MyPlayerInput;
/// This type drives player lifecycle and input processing.
struct MyLocalPlayer;
impl<'a> evoke::client::LocalPlayerPack<'a> for MyLocalPlayer {
type Pack = &'a MyPlayerInput;
}
impl evoke::client::LocalPlayer for MyLocalPlayer {
type Query = &'static MyPlayerInput;
fn replicate<'a>(item: &'a MyPlayerInput, _scope: &'a scoped_arena::Scope<'_>) -> &'a MyPlayerInput {
item
}
}
/// Component that is own descriptor.
#[derive(Clone, Copy, PartialEq, serde::Deserialize)]
pub struct MyComponent;
/// Build client system.
let mut client = evoke::client::ClientSystem::builder()
.with_descriptor::<MyComponent>()
.with_player::<MyLocalPlayer>()
.build();
let mut world = edict::World::new();
let scope = scoped_arena::Scope::new();
client.connect((std::net::Ipv4Addr::LOCALHOST, 12523), &scope).await?;
let player_id: evoke::PlayerId = client.add_player(&MyPlayerInfo, &scope).await?;
// The player can controls all entities to which server attaches same `PlayerId` as component.
// game loop
loop {
//
// Game loop tick
//
// Run client every tick.
client.run(&mut world, &scope);
}
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.