This repository has been archived on 2022-02-23. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
depreciate 4f8ff50bc3 added rating 2019-02-12 03:22:35 +10:30
constants Initial commit 2018-12-09 00:15:56 -05:00
handlers added rating 2019-02-12 03:22:35 +10:30
helpers Show score for loved maps on relax rather than PP 2018-12-10 04:12:36 -05:00
objects added rating 2019-02-12 03:22:35 +10:30
pp fixed values 2019-01-26 16:43:22 +01:00
pubSubHandlers Initial commit 2018-12-09 00:15:56 -05:00
secret/achievements Initial commit 2018-12-09 00:15:56 -05:00
.gitignore a 2018-12-09 10:08:40 -05:00
.gitmodules Initial commit 2018-12-09 00:15:56 -05:00
.landscape.yaml Initial commit 2018-12-09 00:15:56 -05:00
LICENSE Initial commit 2018-12-09 00:15:56 -05:00
README.md Initial commit 2018-12-09 00:15:56 -05:00
full_build.sh Initial commit 2018-12-09 00:15:56 -05:00
lets.py added rating 2019-02-12 03:22:35 +10:30
personalBestCache.py Initial commit 2018-12-09 00:15:56 -05:00
requirements.txt Initial commit 2018-12-09 00:15:56 -05:00
run.sh Initial commit 2018-12-09 00:15:56 -05:00
setup.py Initial commit 2018-12-09 00:15:56 -05:00
tomejerry.py Initial commit 2018-12-09 00:15:56 -05:00
tomejerryrelax.py Initial commit 2018-12-09 00:15:56 -05:00
userStatsCache.py Initial commit 2018-12-09 00:15:56 -05:00
version Initial commit 2018-12-09 00:15:56 -05:00

README.md

Discord

LETS

Latest Essential Tatoe Server

This server handles every non real time client feature, so:

  • Ingame scoreboards
  • Score submission
  • Screenshots
  • Replays
  • osu!direct, thanks to cheesegull
  • Tillerino-like API (partially broken)
  • osu!standard and taiko pp calculation with oppai-ng, made by Franc[e]sco
  • osu!mania pp calculation with a slightly edited version of osu-tools, made by the osu! team
  • catch the beat pp calculation with catch-the-pp, made by Sunpy and cythonized by Nyo

Requirements

  • Python 3.6
  • Cython
  • C compiler

How to set up LETS

First of all, initialize and update the submodules

$ git submodule init && git submodule update

afterwards, install the required dependencies with pip

$ pip install -r requirements.txt

compile all *.pyx files to *.so or *.dll files using setup.py (distutils file). This compiles catch-the-pp as well.

$ python3 setup.py build_ext --inplace

then, run LETS once to create the default config file and edit it

$ python3 lets.py
$ nano config.ini

finally, compile oppai-ng (inside pp/oppai-ng) and osu-tools (inside pp/maniapp-osu-tools).

tomejerry.py

tomejerry.py is a tool that allows you to calculate pp for specific scores. It's extremely useful to do mass PP recalculations if you mess something up. It uses lets' config and packages, so make sure lets is installed and configured correctly before using it.

usage: tomejerry.py [-h]
                    [-r | -z | -i ID | -m MODS | -g GAMEMODE | -u USERID | -b BEATMAPID | -fhd]
                    [-w WORKERS] [-cs CHUNKSIZE] [-v]

pp recalc tool for ripple, new version.

optional arguments:
  -h, --help            show this help message and exit
  -r, --recalc          calculates pp for all high scores
  -z, --zero            calculates pp for 0 pp high scores
  -i ID, --id ID        calculates pp for the score with this score_id
  -m MODS, --mods MODS  calculates pp for high scores with these mods (flags)
  -g GAMEMODE, --gamemode GAMEMODE
                        calculates pp for scores played on this game mode
                        (std:0, taiko:1, ctb:2, mania:3)
  -u USERID, --userid USERID
                        calculates pp for high scores set by a specific user
                        (user_id)
  -b BEATMAPID, --beatmapid BEATMAPID
                        calculates pp for high scores played on a specific
                        beatmap (beatmap_id)
  -fhd, --fixstdhd      calculates pp for std hd high scores (14/05/2018 pp
                        algorithm changes)
  -w WORKERS, --workers WORKERS
                        number of workers. 16 by default. Max 32
  -cs CHUNKSIZE, --chunksize CHUNKSIZE
                        score chunks size
  -v, --verbose         verbose/debug mode

License

This project is licensed under the GNU AGPL 3 License.
See the "LICENSE" file for more information.