2023-10-03 23:37:51 -04:00
|
|
|
# StartRNR
|
2023-08-25 22:12:47 -04:00
|
|
|
|
2023-10-03 23:47:40 -04:00
|
|
|
**StartRNR** is an implementation of the cutting-edge player rating system known
|
|
|
|
as **Relative Network Rating (RNR)** for competitive gaming. It uses
|
|
|
|
[start.gg](https://www.start.gg/)'s tournament data to generate and maintain a
|
|
|
|
network of relative advantages between players.
|
2023-08-25 22:12:47 -04:00
|
|
|
|
2023-10-03 23:47:40 -04:00
|
|
|
Once the advantage network is generated, StartRNR can be used to predict the
|
|
|
|
probability of a player winning a match, generate provably optimal seedings for
|
2023-10-04 17:58:54 -04:00
|
|
|
tournaments, inspect the match history of two players, and create competitive
|
|
|
|
rankings automatically.
|
2023-10-03 23:47:40 -04:00
|
|
|
|
|
|
|
**All of these features work for any game, in any region, without restriction.**
|
2023-08-25 23:13:33 -04:00
|
|
|
|
2023-09-23 03:37:22 -04:00
|
|
|
> **Warning**<br>
|
2023-10-13 18:15:10 -04:00
|
|
|
> StartRNR is unstable and under active development. The design and user
|
|
|
|
> interface of this program is experimental and may be subject to change.
|
|
|
|
>
|
|
|
|
> Currently, only generating datasets has been implemented.
|
2023-08-25 22:12:47 -04:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2023-09-23 03:37:22 -04:00
|
|
|
*For more information, see the [installation page](INSTALL.md).*
|
|
|
|
|
2023-10-03 23:37:51 -04:00
|
|
|
Build and install StartRNR using `cargo`:
|
2023-09-23 03:37:22 -04:00
|
|
|
|
|
|
|
``` sh
|
2023-10-03 23:37:51 -04:00
|
|
|
cargo install --git https://github.com/kiana-S/StartRNR
|
2023-09-23 03:37:22 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
Alternatively, if you use Nix:
|
|
|
|
|
|
|
|
``` sh
|
2023-10-03 23:37:51 -04:00
|
|
|
nix profile install github:kiana-S/StartRNR
|
2023-09-23 03:37:22 -04:00
|
|
|
```
|
2023-08-25 22:12:47 -04:00
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
2023-10-03 23:37:51 -04:00
|
|
|
StartRNR stores its rating databases in its config directory, which is located at:
|
2023-08-25 22:12:47 -04:00
|
|
|
|
2023-10-03 23:37:51 -04:00
|
|
|
- Windows: `%APPDATA%\Roaming\startrnr`
|
|
|
|
- MacOS: `~/Library/Application Support/startrnr`
|
|
|
|
- Linux: `~/.config/startrnr`
|
2023-08-25 22:12:47 -04:00
|
|
|
|
2023-10-13 18:15:10 -04:00
|
|
|
This directory can be used to store the authentication token, which is required
|
|
|
|
for using StartRNR.
|
2023-08-25 22:12:47 -04:00
|
|
|
|
2023-10-13 18:15:10 -04:00
|
|
|
## Details - The RNR System
|
2023-08-25 22:12:47 -04:00
|
|
|
|
2023-10-13 18:15:10 -04:00
|
|
|
*For more information on RNR, see the [details page](DETAILS.md).*
|