blob: 57e42d1f1a47729bac51bcfd81a06c93afbe173d (
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
|
#!/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-chat -- show game chat (for moderation)
show-game -- show game state object
show-replay -- show game replay log
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
|