BogChamp: a multi-player word game web-app written in rust.
Play now at BogChamp.io
Includes:
bog-rs
. A backend which generates the character grid. and 'solves' the grid efficiently using a trie.BogChamp
. A frontend web app built usingactix-web
andtera
to serve a dynamic webpage.
- Fix shared state across multiple sessions.
- Multiplayer beta (rooms, real-time scoring, synchronised timing, etc.).
- Multiplayer stable release (inc. pretty UI).
- Fix bug with CSS in FireFox
- Update server to store state in concurrent hashmap (
DashMap< >
) rather thanMutex<HashMap< >>
. - Use
actix_actors::ws
for Websockets