StartRNR/README.md

47 lines
1.4 KiB
Markdown
Raw Normal View History

# 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
tournaments, and create rankings of players automatically.
**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-03 23:47:40 -04:00
> StartRNR is still under development; currently, it only supports generating the network.
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).*
Build and install StartRNR using `cargo`:
2023-09-23 03:37:22 -04:00
``` sh
cargo install --git https://github.com/kiana-S/StartRNR
2023-09-23 03:37:22 -04:00
```
Alternatively, if you use Nix:
``` sh
nix profile install github:kiana-S/StartRNR
2023-09-23 03:37:22 -04:00
```
2023-08-25 22:12:47 -04:00
## Configuration
StartRNR stores its rating databases in its config directory, which is located at:
2023-08-25 22:12:47 -04:00
- Windows: `%APPDATA%\Roaming\startrnr`
- MacOS: `~/Library/Application Support/startrnr`
- Linux: `~/.config/startrnr`
2023-08-25 22:12:47 -04:00
2023-09-23 03:37:22 -04:00
There are few reasons to access this directory directly, but you can if you want to transfer your
datasets between computers.
2023-08-25 22:12:47 -04:00
## RNR system basics
2023-08-25 22:12:47 -04:00
*For more information on StartRNR's rating system, see the [details page](DETAILS.md).*