-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathmain.py
236 lines (190 loc) · 7.5 KB
/
main.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
import multiprocessing
import os
import argparse
import signal
from sys import platform
from time import sleep
from game.login.LoginManager import LoginManager
from game.realm.RealmManager import RealmManager
from game.update.UpdateManager import UpdateManager
from game.world import WorldManager
from game.world.managers.CommandManager import CommandManager
from game.world.managers.maps.MapManager import MapManager
from game.world.managers.maps.MapTile import MapTile
from tools.extractors.Extractor import Extractor
from utils.ConfigManager import config, ConfigManager
from utils.Logger import Logger
from utils.PathManager import PathManager
from utils.constants import EnvVars
# Initialize argument parser.
parser = argparse.ArgumentParser()
parser.add_argument(
'-l', '--launch',
help='-l realm to launch realm or -l to launch world, if nothing is specified both are launched',
dest='launch',
action='store',
default=None
)
parser.add_argument(
'-e', '--extract',
help='-e in order to extract .map files',
dest='extract',
action='store_true',
default=False
)
args = parser.parse_args()
def release_process(active_process):
Logger.info(f'Releasing {active_process.name}...')
while active_process.is_alive():
try:
# Give the process 2 seconds to shut down.
active_process.join(timeout=2)
if active_process.is_alive():
active_process.terminate()
break
except (ValueError, KeyboardInterrupt):
sleep(0.1)
Logger.info(f'{active_process.name} released.')
def handle_console_commands():
try:
command = input()
while command != 'exit':
try:
res, msg = CommandManager.handle_conole_command(command)
if not res:
Logger.info(msg)
else:
Logger.error(f'Invalid command [{command}], [{msg}].')
except:
Logger.error(f'Invalid command [{command}].')
command = input()
except:
pass
RUNNING.value = 0
def handler_stop_signals(signum, frame):
RUNNING.value = 0
def wait_world_server():
if not launch_world:
return
# Wait for world start before starting realm/proxy sockets if needed.
while not WORLD_SERVER_READY.value and RUNNING.value:
sleep(1)
def wait_realm_server():
if not launch_realm:
return
while not REALM_SERVER_READY.value and RUNNING.value:
sleep(1)
def wait_proxy_server():
if not launch_realm:
return
while not PROXY_SERVER_READY.value and RUNNING.value:
sleep(1)
def wait_login_server():
while not LOGIN_SERVER_READY.value and RUNNING.value:
sleep(1)
def wait_update_server():
while not UPDATE_SERVER_READY.value and RUNNING.value:
sleep(1)
CONSOLE_THREAD = None
RUNNING = None
WORLD_SERVER_READY = None
REALM_SERVER_READY = None
PROXY_SERVER_READY = None
LOGIN_SERVER_READY = None
UPDATE_SERVER_READY = None
ACTIVE_PROCESSES = []
if __name__ == '__main__':
# Initialize path.
PathManager.set_root_path(os.path.dirname(os.path.realpath(__file__)))
# Validate configuration file version.
# (Not using Logger since it can fail due to missing config options too).
try:
if config.Version.current != ConfigManager.EXPECTED_VERSION:
print(f'Invalid config.yml version. Expected {ConfigManager.EXPECTED_VERSION} '
f'found {config.Version.current}.')
exit()
except AttributeError:
print(f'Invalid config.yml version. Expected {ConfigManager.EXPECTED_VERSION}, none found.')
exit()
if args.extract:
Extractor.run()
exit()
# Validate if maps available and if version match.
if not MapManager.validate_map_files():
Logger.error(f'Invalid maps version or maps missing, expected version {MapTile.EXPECTED_VERSION}')
exit()
if not MapManager.validate_namigator_bindings():
Logger.error(f'Invalid namigator bindings.')
exit()
# Semaphore objects are leaked on shutdown in macOS if using spawn for some reason.
if platform == 'darwin':
context = multiprocessing.get_context('fork')
else:
context = multiprocessing.get_context('spawn')
RUNNING = context.Value('i', 1)
WORLD_SERVER_READY = context.Value('i', 0)
REALM_SERVER_READY = context.Value('i', 0)
PROXY_SERVER_READY = context.Value('i', 0)
LOGIN_SERVER_READY = context.Value('i', 0)
UPDATE_SERVER_READY = context.Value('i', 0)
launch_realm = not args.launch or args.launch == 'realm'
launch_world = not args.launch or args.launch == 'world'
console_mode = os.getenv(EnvVars.EnvironmentalVariables.CONSOLE_MODE,
config.Server.Settings.console_mode) in [True, 'True', 'true']
if not launch_world and not launch_realm:
Logger.error('Realm and World launch are disabled.')
exit()
# Hook exit signals.
signal.signal(signal.SIGINT, handler_stop_signals)
signal.signal(signal.SIGTERM, handler_stop_signals)
# Process launching starts here.
if launch_world:
ACTIVE_PROCESSES.append((context.Process(
name='World process',
target=WorldManager.WorldServerSessionHandler.start_world,
args=(RUNNING, WORLD_SERVER_READY)), wait_world_server))
else:
WORLD_SERVER_READY.value = 1
# Update server.
ACTIVE_PROCESSES.append((context.Process(name='Update process', target=UpdateManager.start_update,
args=(RUNNING, UPDATE_SERVER_READY)), wait_update_server))
# SRP login server.
ACTIVE_PROCESSES.append((context.Process(name='Login process', target=LoginManager.start_login,
args=(RUNNING, LOGIN_SERVER_READY)), wait_login_server))
if launch_realm:
ACTIVE_PROCESSES.append((context.Process(name='Realm process', target=RealmManager.start_realm,
args=(RUNNING, REALM_SERVER_READY)), wait_realm_server))
ACTIVE_PROCESSES.append((context.Process(name='Proxy process', target=RealmManager.start_proxy,
args=(RUNNING, PROXY_SERVER_READY)), wait_proxy_server))
else:
REALM_SERVER_READY.value = 1
PROXY_SERVER_READY.value = 1
Logger.info('Booting Alpha Core, please wait...')
# Start processes.
for process, wait_call in ACTIVE_PROCESSES:
process.start()
wait_call()
# Print active env vars.
for env_var_name in EnvVars.EnvironmentalVariables.ACTIVE_ENV_VARS:
env_var = os.getenv(env_var_name, '')
if env_var:
Logger.info(f'Environment variable {env_var_name}: {env_var}')
# Bell sound character.
Logger.info('Alpha Core is now running.\a')
# Handle console mode.
if console_mode and RUNNING.value:
handle_console_commands()
else:
# Wait on main thread for stop signal or 'exit' command.
while RUNNING.value:
sleep(2)
# Exit.
Logger.info('Shutting down the core, please wait...')
if launch_world:
# Make sure we disconnect current players and save their characters.
CommandManager.worldoff(None, args='confirm')
# Make sure all process finish gracefully (Exit their listening loops).
[release_process(process) for process, wait_call in ACTIVE_PROCESSES]
ACTIVE_PROCESSES.clear()
Logger.success('Core gracefully shut down.')
exit()