-
Notifications
You must be signed in to change notification settings - Fork 30
/
launch.py
196 lines (179 loc) · 7.64 KB
/
launch.py
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
import json
import os
import random
import re
import subprocess
CONFIG_GENERATED = "/reforger/Configs/docker_generated.json"
def env_defined(key):
return key in os.environ and len(os.environ[key]) > 0
def random_passphrase():
password = "'"
while "'" in password:
with open("/usr/share/dict/american-english") as f:
words = f.readlines()
password = "-".join(random.sample(words, 2)).replace("\n", "").lower()
return password
def bool_str(text):
return text.lower() == "true"
if os.environ["SKIP_INSTALL"] in ["", "false"]:
steamcmd = ["/steamcmd/steamcmd.sh"]
steamcmd.extend(["+force_install_dir", "/reforger"])
if env_defined("STEAM_USER"):
steamcmd.extend(
["+login", os.environ["STEAM_USER"], os.environ["STEAM_PASSWORD"]]
)
else:
steamcmd.extend(["+login", "anonymous"])
steamcmd.extend(["+app_update", os.environ["STEAM_APPID"]])
if env_defined("STEAM_BRANCH"):
steamcmd.extend(["-beta", os.environ["STEAM_BRANCH"]])
if env_defined("STEAM_BRANCH_PASSWORD"):
steamcmd.extend(["-betapassword", os.environ["STEAM_BRANCH_PASSWORD"]])
steamcmd.extend(["validate", "+quit"])
subprocess.call(steamcmd)
if os.environ["ARMA_CONFIG"] != "docker_generated":
config_path = f"/reforger/Configs/{os.environ['ARMA_CONFIG']}"
else:
if os.path.exists(CONFIG_GENERATED):
f = open(CONFIG_GENERATED)
config = json.load(f)
f.close()
else:
f = open("/docker_default.json")
config = json.load(f)
f.close()
if env_defined("SERVER_BIND_ADDRESS"):
config["bindAddress"] = os.environ["SERVER_BIND_ADDRESS"]
if env_defined("SERVER_BIND_PORT"):
config["bindPort"] = int(os.environ["SERVER_BIND_PORT"])
if env_defined("SERVER_PUBLIC_ADDRESS"):
config["publicAddress"] = os.environ["SERVER_PUBLIC_ADDRESS"]
if env_defined("SERVER_PUBLIC_PORT"):
config["publicPort"] = int(os.environ["SERVER_PUBLIC_PORT"])
if env_defined("SERVER_A2S_ADDRESS") and env_defined("SERVER_A2S_PORT"):
config["a2s"] = {
"address": os.environ["SERVER_A2S_ADDRESS"],
"port": int(os.environ["SERVER_A2S_PORT"]),
}
else:
config["a2s"] = None
if env_defined("RCON_ADDRESS") and env_defined("RCON_PORT"):
config["rcon"] = {
"address": os.environ["RCON_ADDRESS"],
"port": int(os.environ["RCON_PORT"]),
"password": os.environ["RCON_PASSWORD"],
"permission": os.environ["RCON_PERMISSION"],
}
else:
config["rcon"] = None
if env_defined("GAME_NAME"):
config["game"]["name"] = os.environ["GAME_NAME"]
if env_defined("GAME_PASSWORD"):
config["game"]["password"] = os.environ["GAME_PASSWORD"]
if env_defined("GAME_PASSWORD_ADMIN"):
config["game"]["passwordAdmin"] = os.environ["GAME_PASSWORD_ADMIN"]
else:
adminPassword = random_passphrase()
config["game"]["passwordAdmin"] = adminPassword
print(f"Admin password: {adminPassword}")
if env_defined("GAME_ADMINS"):
admins = str(os.environ["GAME_ADMINS"]).split(",")
admins[:] = [admin for admin in admins if admin] # Remove empty items form list
config["game"]["admins"] = admins
if env_defined("GAME_SCENARIO_ID"):
config["game"]["scenarioId"] = os.environ["GAME_SCENARIO_ID"]
if env_defined("GAME_MAX_PLAYERS"):
config["game"]["maxPlayers"] = int(os.environ["GAME_MAX_PLAYERS"])
if env_defined("GAME_VISIBLE"):
config["game"]["visible"] = bool_str(os.environ["GAME_VISIBLE"])
if env_defined("GAME_SUPPORTED_PLATFORMS"):
config["game"]["supportedPlatforms"] = os.environ[
"GAME_SUPPORTED_PLATFORMS"
].split(",")
if env_defined("GAME_PROPS_BATTLEYE"):
config["game"]["gameProperties"]["battlEye"] = bool_str(
os.environ["GAME_PROPS_BATTLEYE"]
)
if env_defined("GAME_PROPS_DISABLE_THIRD_PERSON"):
config["game"]["gameProperties"]["disableThirdPerson"] = bool_str(
os.environ["GAME_PROPS_DISABLE_THIRD_PERSON"]
)
if env_defined("GAME_PROPS_FAST_VALIDATION"):
config["game"]["gameProperties"]["fastValidation"] = bool_str(
os.environ["GAME_PROPS_FAST_VALIDATION"]
)
if env_defined("GAME_PROPS_SERVER_MAX_VIEW_DISTANCE"):
config["game"]["gameProperties"]["serverMaxViewDistance"] = int(
os.environ["GAME_PROPS_SERVER_MAX_VIEW_DISTANCE"]
)
if env_defined("GAME_PROPS_SERVER_MIN_GRASS_DISTANCE"):
config["game"]["gameProperties"]["serverMinGrassDistance"] = int(
os.environ["GAME_PROPS_SERVER_MIN_GRASS_DISTANCE"]
)
if env_defined("GAME_PROPS_NETWORK_VIEW_DISTANCE"):
config["game"]["gameProperties"]["networkViewDistance"] = int(
os.environ["GAME_PROPS_NETWORK_VIEW_DISTANCE"]
)
# Since we want to keep ENVs as a single source of truth
# we will regenerate the mod list in case any manual changes were made
# also deletes the mod entries when GAME_MODS_IDS_LIST is empty
config["game"]["mods"] = []
config_mod_ids = []
if env_defined("GAME_MODS_IDS_LIST"):
reg = re.compile(r"^[A-Z\d,=.]+$")
assert reg.match(
str(os.environ["GAME_MODS_IDS_LIST"])
), "Illegal characters in GAME_MODS_IDS_LIST env"
mods = str(os.environ["GAME_MODS_IDS_LIST"]).split(",")
mods[:] = [mod for mod in mods if mod] # Remove empty items form list
reg = re.compile(r"^\d+\.\d+\.\d+$")
for mod in mods:
mod_details = mod.split("=")
assert 0 < len(mod_details) < 3, f"{mod} mod not defined properly"
mod_id = mod_details[0]
if mod_id in config_mod_ids:
continue # modId already defined in config, skipping to avoid duplicates
mod_config = {"modId": mod_id}
if len(mod_details) == 2:
assert reg.match(
mod_details[1]
), f"{mod} mod version does not match the pattern"
mod_config["version"] = mod_details[1]
config_mod_ids.append(mod_id)
config["game"]["mods"].append(mod_config)
if env_defined("GAME_MODS_JSON_FILE_PATH"):
with open(os.environ["GAME_MODS_JSON_FILE_PATH"]) as f:
json_mods = json.load(f)
allowed_keys = ["modId", "name", "version"]
for provided_mod in json_mods:
assert (
"modId" in provided_mod
), f"Entry in GAME_MODS_JSON_FILE_PATH file does not contain modId: {provided_mod}"
if provided_mod["modId"] in config_mod_ids:
continue # modId already defined in config, skipping to avoid duplicates
valid_mod = {
key: provided_mod[key]
for key in allowed_keys
if key in provided_mod
} # Extract only valid config keys
config_mod_ids.append(provided_mod["modId"])
config["game"]["mods"].append(valid_mod)
f = open(CONFIG_GENERATED, "w")
json.dump(config, f, indent=4)
f.close()
config_path = CONFIG_GENERATED
launch = " ".join(
[
os.environ["ARMA_BINARY"],
f"-config {config_path}",
"-backendlog",
"-nothrow",
f"-maxFPS {os.environ['ARMA_MAX_FPS']}",
f"-profile {os.environ['ARMA_PROFILE']}",
f"-addonDownloadDir {os.environ['ARMA_WORKSHOP_DIR']}",
f"-addonsDir {os.environ['ARMA_WORKSHOP_DIR']}",
os.environ["ARMA_PARAMS"],
]
)
print(launch, flush=True)
os.system(launch)