gamer

Crates.iogamer
lib.rsgamer
version0.1.0
sourcesrc
created_at2018-02-18 19:42:41.383825
updated_at2018-02-18 19:42:41.383825
descriptionGame-Agnostic Matchmaking Engine for Rust
homepage
repositoryhttps://github.com/Dentosal/rust-gamer
max_upload_size
id51762
size5,846
core (github:3a-technologies:core)

documentation

README

gamer - Game-Agnostic Matchmaking Engine for Rust

Matchers

Matcher is a tool to find out what game should be played next.

There are two types of matchers: simple and continuous.

Simple

Simple matchers have fixed input set, and they create a fixed number of games. For example RoundRobin matcher always generates (0..n).sum() games from n participants.

Continuous

Continuous matchers create an infinite stream games. They may also have dynamic input set, that allows adding (and removing) participants. Continuous matcher can also accept feedback, e.g. score or result of a match, to select future pairs.

Commit count: 2

cargo fmt