summarylogtreecommitdiffstats
path: root/tshock.sh
blob: 4e3afbed47f717ccc6f8cd8b2cd1f334007e406e (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/bin/bash

CONFDIR='/etc/conf.d/tshock'

if [ -n "$2" ]; then
    INSTANCE=$2
else
    INSTANCE=default
fi

if [ -r ${CONFDIR}/${INSTANCE}.conf ]; then
    source ${CONFDIR}/${INSTANCE}.conf
else
    echo "TShock could not be started because ${CONFDIR}/${INSTANCE}.conf could not be read."
    exit 1
fi

TMUX_CONSOLE=tshock-console-${INSTANCE}

## The following parameters can be added to TShock to alter the way a server initializes.
## Options set via the command line will override all configuration options regardless.
## These can be used either for personal use or in a GSP environment for easier hosting without hassle:
## Terraria Server API Command Line:
##   -ip <ipv4>          - Starts the server bound to a given IPv4 address
##   -port <port>        - Starts the server bound to a given port
##   -maxplayers <count> - Starts the server with a given player count
##   -world <file.wld>   - Starts the server and immediately loads a given
##                         world file
##   -worldpath <path>   - Starts the server and changes the world path to a
##                         given path
##   -autocreate <1/2/3> - Starts the server and, if a world file isn't found,
##                         automatically create the world file with a given
##                         size, 1-3, 1 being small.
##   -config <file>      - Starts the server with a given config file
##   -connperip <n>      - Allows n number of connections per IP.
##   -killinactivesocket - Kills connections which have not started the
##                         protocol handshake.
##   -lang <type>        - Sets the server's language.
##   -ignoreversion      - Ignores API version checks for plugins allowing for
##                         old plugins to run.
##   -forceupdate        - Forces the server to continue running, and not
##                         hibernating when no players are on. This results in
##                         time passing, grass growing, and cpu running.
## TShock Command Line:
##   -configpath <path>     - The path tshock uses to resolve configs, log
##                            files, and sqlite db.
##   -worldpath <path>      - The path that Terraria Server uses to find all
##                            world files.
##   -logpath <path>        - Overrides the default log path and saves logs
##                            here.
##   -logformat <format>    - Format the name of log files, subject to C# date
##                            standard abbreviations,
##   -logclear <true/false> - Overwrites old config if it exists.
##   -dump                  - Dumps permissions and config file descriptions for
##                            wiki use.

case "$1" in
    start)
        if tmux has-session -t ${TMUX_CONSOLE} &> /dev/null ; then
            echo "This TShock instance is already running"
            exit 1
        else
            tmux new-session -d -s ${TMUX_CONSOLE} -d "cd ${BASEDIR}; mono --server --gc=sgen -O=all TerrariaServer.exe -port ${PORT} -worldpath ${WORLDDIR} -world ${WORLDDIR}/${WORLD}.wld -autocreate ${SIZE}"
            if [ $? -gt 0 ]; then
                echo "Could not start instance"
                exit 1
            fi
        fi
        ;;

    stop)
        if tmux has-session -t ${TMUX_CONSOLE} &> /dev/null ; then
            tmux send-keys -t ${TMUX_CONSOLE} 'broadcast NOTICE: Server shutting down in 5 seconds!' C-m
            sleep 5
            tmux send-keys -t ${TMUX_CONSOLE} 'exit' C-m
            sleep 10
        else
            echo "This TShock instance is not running"
            exit 1
        fi
        ;;

    console)
        if tmux has-session -t ${TMUX_CONSOLE} &> /dev/null ; then
            tmux attach -t ${TMUX_CONSOLE}
        else
            echo "This TShock instance is not running"
            exit 1
        fi
        ;;

    *)
        echo "usage: $0 {start|backup|console} [instance]"
esac

exit 0