From 060b585da1d6beb7dc214d1eb70bcd73ac41ed86 Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Mon, 21 Feb 2022 21:00:05 +0100 Subject: add default code to get started --- web/pw-server/src/assets/bot_template.txt | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 web/pw-server/src/assets/bot_template.txt (limited to 'web/pw-server/src/assets') diff --git a/web/pw-server/src/assets/bot_template.txt b/web/pw-server/src/assets/bot_template.txt new file mode 100644 index 0000000..82fa497 --- /dev/null +++ b/web/pw-server/src/assets/bot_template.txt @@ -0,0 +1,30 @@ +import sys, json + +def move(command): + """ print a command record to stdout """ + moves = [] + if command is not None: + moves.append(command) + + print(json.dumps({ 'moves': moves })) + # flush the buffer, so that the gameserver can receive the line + sys.stdout.flush() + + +for line in sys.stdin: + state = json.loads(line) + + # you are always player 1. + my_planets = [p for p in state['planets'] if p['owner'] == 1] + other_planets = [p for p in state['planets'] if p['owner'] != 1] + + if not my_planets or not other_planets: + # no valid moves can be made + move(None) + else: + # send some ships! + move({ + 'origin': my_planets[0]['name'], + 'destination': other_planets[0]['name'], + 'ship_count': 1 + }) -- cgit v1.2.3