2019-07-06 16:17:03 +02:00
|
|
|
#!/bin/bash
|
|
|
|
set -eoux pipefail
|
2019-02-26 20:44:26 +01:00
|
|
|
FACTORIO_VOL=/factorio
|
2019-11-25 08:31:28 +01:00
|
|
|
LOAD_LATEST_SAVE="${LOAD_LATEST_SAVE:-true}"
|
|
|
|
GENERATE_NEW_SAVE="${GENERATE_NEW_SAVE:-false}"
|
2024-06-12 12:47:42 +02:00
|
|
|
PRESET="${PRESET:-""}"
|
2019-11-25 08:31:28 +01:00
|
|
|
SAVE_NAME="${SAVE_NAME:-""}"
|
2022-09-05 11:01:06 +02:00
|
|
|
BIND="${BIND:-""}"
|
2023-04-16 12:55:05 +02:00
|
|
|
CONSOLE_LOG_LOCATION="${CONSOLE_LOG_LOCATION:-""}"
|
2019-11-25 08:31:28 +01:00
|
|
|
|
2019-03-30 19:31:03 +01:00
|
|
|
mkdir -p "$FACTORIO_VOL"
|
|
|
|
mkdir -p "$SAVES"
|
|
|
|
mkdir -p "$CONFIG"
|
|
|
|
mkdir -p "$MODS"
|
|
|
|
mkdir -p "$SCENARIOS"
|
|
|
|
mkdir -p "$SCRIPTOUTPUT"
|
2019-02-26 20:11:21 +01:00
|
|
|
|
2019-07-06 16:37:13 +02:00
|
|
|
if [[ ! -f $CONFIG/rconpw ]]; then
|
2019-02-27 17:30:46 +01:00
|
|
|
# Generate a new RCON password if none exists
|
2019-03-30 19:31:03 +01:00
|
|
|
pwgen 15 1 >"$CONFIG/rconpw"
|
2019-02-26 20:11:21 +01:00
|
|
|
fi
|
|
|
|
|
2019-07-06 16:37:13 +02:00
|
|
|
if [[ ! -f $CONFIG/server-settings.json ]]; then
|
2019-02-27 17:30:46 +01:00
|
|
|
# Copy default settings if server-settings.json doesn't exist
|
2019-03-30 19:31:03 +01:00
|
|
|
cp /opt/factorio/data/server-settings.example.json "$CONFIG/server-settings.json"
|
2019-02-26 20:11:21 +01:00
|
|
|
fi
|
|
|
|
|
2019-07-06 16:37:13 +02:00
|
|
|
if [[ ! -f $CONFIG/map-gen-settings.json ]]; then
|
2019-03-30 19:31:03 +01:00
|
|
|
cp /opt/factorio/data/map-gen-settings.example.json "$CONFIG/map-gen-settings.json"
|
2019-02-26 20:11:21 +01:00
|
|
|
fi
|
|
|
|
|
2019-07-06 16:37:13 +02:00
|
|
|
if [[ ! -f $CONFIG/map-settings.json ]]; then
|
2019-03-30 19:31:03 +01:00
|
|
|
cp /opt/factorio/data/map-settings.example.json "$CONFIG/map-settings.json"
|
2019-02-26 20:11:21 +01:00
|
|
|
fi
|
|
|
|
|
2019-05-10 01:27:25 +02:00
|
|
|
NRTMPSAVES=$( find -L "$SAVES" -iname \*.tmp.zip -mindepth 1 | wc -l )
|
2019-07-06 16:37:13 +02:00
|
|
|
if [[ $NRTMPSAVES -gt 0 ]]; then
|
2019-02-27 17:30:46 +01:00
|
|
|
# Delete incomplete saves (such as after a forced exit)
|
2019-05-16 19:55:02 +02:00
|
|
|
rm -f "$SAVES"/*.tmp.zip
|
2019-02-26 20:11:21 +01:00
|
|
|
fi
|
|
|
|
|
2020-05-25 03:21:17 +02:00
|
|
|
if [[ ${UPDATE_MODS_ON_START:-} == "true" ]]; then
|
2019-07-04 00:34:09 +02:00
|
|
|
./docker-update-mods.sh
|
|
|
|
fi
|
|
|
|
|
2024-03-03 04:09:41 +01:00
|
|
|
EXEC=""
|
2019-07-06 16:37:13 +02:00
|
|
|
if [[ $(id -u) = 0 ]]; then
|
2019-04-18 13:00:14 +02:00
|
|
|
# Update the User and Group ID based on the PUID/PGID variables
|
2019-03-30 19:31:03 +01:00
|
|
|
usermod -o -u "$PUID" factorio
|
|
|
|
groupmod -o -g "$PGID" factorio
|
2019-02-27 17:30:46 +01:00
|
|
|
# Take ownership of factorio data if running as root
|
2019-05-16 19:59:42 +02:00
|
|
|
chown -R factorio:factorio "$FACTORIO_VOL"
|
2019-02-27 19:25:54 +01:00
|
|
|
# Drop to the factorio user
|
2024-03-03 04:09:41 +01:00
|
|
|
EXEC="runuser -u factorio -g factorio --"
|
|
|
|
fi
|
|
|
|
if [[ -f /bin/box64 ]]; then
|
|
|
|
# Use an emulator to run on ARM hosts
|
|
|
|
# this only gets installed when the target docker platform is linux/arm64
|
|
|
|
EXEC="$EXEC /bin/box64"
|
2019-02-26 20:44:26 +01:00
|
|
|
fi
|
|
|
|
|
2020-05-23 03:05:56 +02:00
|
|
|
sed -i '/write-data=/c\write-data=\/factorio/' /opt/factorio/config/config.ini
|
|
|
|
|
2019-07-06 16:37:13 +02:00
|
|
|
NRSAVES=$(find -L "$SAVES" -iname \*.zip -mindepth 1 | wc -l)
|
2019-11-25 08:31:28 +01:00
|
|
|
if [[ $GENERATE_NEW_SAVE != true && $NRSAVES == 0 ]]; then
|
|
|
|
GENERATE_NEW_SAVE=true
|
|
|
|
SAVE_NAME=_autosave1
|
2019-02-27 20:45:13 +01:00
|
|
|
fi
|
|
|
|
|
2019-11-25 08:31:28 +01:00
|
|
|
if [[ $GENERATE_NEW_SAVE == true ]]; then
|
|
|
|
if [[ -z "$SAVE_NAME" ]]; then
|
|
|
|
echo "If \$GENERATE_NEW_SAVE is true, you must specify \$SAVE_NAME"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
if [[ -f "$SAVES/$SAVE_NAME.zip" ]]; then
|
|
|
|
echo "Map $SAVES/$SAVE_NAME.zip already exists, skipping map generation"
|
|
|
|
else
|
2024-06-12 12:47:42 +02:00
|
|
|
if [[ ! -z "$PRESET" ]]; then
|
|
|
|
$EXEC /opt/factorio/bin/x64/factorio \
|
|
|
|
--create "$SAVES/$SAVE_NAME.zip" \
|
|
|
|
--preset "$PRESET" \
|
|
|
|
--map-gen-settings "$CONFIG/map-gen-settings.json" \
|
|
|
|
--map-settings "$CONFIG/map-settings.json"
|
|
|
|
else
|
|
|
|
$EXEC /opt/factorio/bin/x64/factorio \
|
|
|
|
--create "$SAVES/$SAVE_NAME.zip" \
|
|
|
|
--map-gen-settings "$CONFIG/map-gen-settings.json" \
|
|
|
|
--map-settings "$CONFIG/map-settings.json"
|
|
|
|
fi
|
2019-11-25 08:31:28 +01:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
FLAGS=(\
|
2019-03-30 19:31:03 +01:00
|
|
|
--port "$PORT" \
|
|
|
|
--server-settings "$CONFIG/server-settings.json" \
|
|
|
|
--server-banlist "$CONFIG/server-banlist.json" \
|
|
|
|
--rcon-port "$RCON_PORT" \
|
|
|
|
--server-whitelist "$CONFIG/server-whitelist.json" \
|
2019-02-26 22:12:51 +01:00
|
|
|
--use-server-whitelist \
|
2019-03-30 19:31:03 +01:00
|
|
|
--server-adminlist "$CONFIG/server-adminlist.json" \
|
|
|
|
--rcon-password "$(cat "$CONFIG/rconpw")" \
|
2019-02-26 20:11:21 +01:00
|
|
|
--server-id /factorio/config/server-id.json \
|
2019-11-25 08:31:28 +01:00
|
|
|
)
|
|
|
|
|
2023-04-16 12:55:05 +02:00
|
|
|
if [ -n "$CONSOLE_LOG_LOCATION" ]; then
|
|
|
|
FLAGS+=( --console-log "$CONSOLE_LOG_LOCATION" )
|
|
|
|
fi
|
|
|
|
|
2022-09-05 11:01:06 +02:00
|
|
|
if [ -n "$BIND" ]; then
|
|
|
|
FLAGS+=( --bind "$BIND" )
|
|
|
|
fi
|
|
|
|
|
2019-11-25 08:31:28 +01:00
|
|
|
if [[ $LOAD_LATEST_SAVE == true ]]; then
|
|
|
|
FLAGS+=( --start-server-load-latest )
|
|
|
|
else
|
|
|
|
FLAGS+=( --start-server "$SAVE_NAME" )
|
|
|
|
fi
|
|
|
|
|
|
|
|
# shellcheck disable=SC2086
|
2024-03-03 04:09:41 +01:00
|
|
|
exec $EXEC /opt/factorio/bin/x64/factorio "${FLAGS[@]}" "$@"
|