blob: 74209a1f504b4061e341c3cfb9e207559492e6ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#!/bin/bash
cat <<EOF
usage: rtt <subcommand> [ arguments... ]
database management
init -- create database
run -- run server
backup -- backup database
game management
export -- export game
import -- import game
patch -- patch game state (using replay)
undo -- rewind game state (using replay)
module development
foreach -- run a command for each module
fuzz -- fuzz test a module
fuzz-rand -- fuzz test a module (random)
game debugging
show -- show game state
show-chat -- show game chat (for moderation)
show-replay -- show game replay log
show-snap -- show game rewind snapshot
miscellaneous tools
update-covers -- generate cover thumbnails
update-elo -- recalculate Elo ratings
archive database
archive-backup -- backup replay data into archive
archive-prune -- prune replay data from live database
archive-restore -- restore replay data from archive
EOF
|