leoschwarz / opensim-networking

OpenSimulator Networking Client, written in Rust (WIP)
GNU General Public License v3.0
1 stars 1 forks source link
opensimulator protocol rust

Goal

This project's aim is to implement an efficient networking client for the OpenSimulator network protocol in Rust. The goal is to provide a client of high enough quality to implement a new viewer on top of it with matches or surpasses the performance of current viewers.

Compiler version

You need nightly Rust for this, as I decided that using futures-await is going to save more than enough development time to make this worth it already.

Status

As the documentation of the protocol is rather sparse and this library is still not that far, consider this an early work in progress. There are multiple coexisting "protocols" so following is a list of them and the respective status of their implementation in this library.

Implemented:

Currently being worked on:

Soon to be worked on:

Backlog:

Protocol

The main goal of this library is to stay compatible with current versions of OpenSimulator. Since Second Life is diverting from their protocol this library will most likely stop being usable with their servers (if it isn't already the case).

I'm in the progress of collecting as much documentation on the protocol as possible, to write a good and correct client for it. Many pieces of information are found across the internet and in various sources, so I'm collecting my own conclusions on the protocol in the repo opensim-protocol. Ideally it should be an exact specification of the network protocol implemented by this client.