SC2: some cleanup (#532)

* SC2: some cleanup

* SC2: some cleanup in client
This commit is contained in:
Fabian Dill
2022-05-19 03:03:33 +02:00
committed by GitHub
parent c93eeb3607
commit ad99850192
2 changed files with 5 additions and 16 deletions

View File

@@ -126,25 +126,16 @@ async def main():
if ctx.server_task is None:
ctx.server_task = asyncio.create_task(server_loop(ctx), name="ServerLoop")
input_task = None
if gui_enabled:
ctx.run_gui()
ctx.run_cli()
if sys.stdin:
input_task = asyncio.create_task(console_loop(ctx), name="Input")
await ctx.exit_event.wait()
ctx.server_address = None
ctx.snes_reconnect_address = None
await ctx.shutdown()
if ui_task:
await ui_task
if input_task:
input_task.cancel()
maps_table = ["ap_traynor01", "ap_traynor02", "ap_traynor03", "ap_thanson01", "ap_thanson02", "ap_thanson03a", "ap_thanson03b", "ap_ttychus01",
"ap_ttychus02", "ap_ttychus03", "ap_ttychus04", "ap_ttychus05", "ap_ttosh01", "ap_ttosh02", "ap_ttosh03a", "ap_ttosh03b",