-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb.py
78 lines (68 loc) · 2.06 KB
/
web.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
import os
import numpy as np
import importlib
from warnings import simplefilter
from flask import Flask, jsonify, request
from flask_cors import CORS
from random import randint
from src.game.miner_env import MinerEnv
from src.policies.bot1 import Bot1
from src.policies.bot2 import Bot2
simplefilter(action='ignore', category=FutureWarning)
app = Flask(__name__)
CORS(app)
predictor = getattr(importlib.import_module(os.getenv('PREDICTOR_MODULE')),
os.getenv('PREDICTOR_CLASS'))()
status_map = {0: "PLAYING", 1: "ELIMINATED WENT OUT MAP", 2: "ELIMINATED OUT OF ENERGY",
3: "ELIMINATED INVALID ACTION", 4: "STOP EMPTY GOLD", 5: "STOP END STEP"}
# Initialize environment
miner_env = MinerEnv(None, None)
miner_env.start()
state = miner_env.state
s = None
playerId = 1
step = 0
bot1 = Bot1(2)
bot2 = Bot1(3)
bot3 = Bot2(4)
@app.route('/next', methods=['GET'])
def get_next():
global s, step
if state.players[playerId]['status'] == 0:
action = predictor.compute_action(s)
miner_env.step({
'1': action,
'2': bot1.compute_action(s),
'3': bot2.compute_action(s),
'4': bot3.compute_action(s),
})
s = miner_env.get_state()
step += 1
return jsonify({
'state': miner_env.get_readable_state(),
'status': status_map[state.players[playerId]['status']],
'action': int(action),
'step': step,
})
return jsonify({
'status': status_map[state.players[playerId]['status']],
})
@app.route('/reset', methods=['POST'])
def reset():
global s, step
body = request.get_json()
map_id = int(body.get('map_id', 1))
x = int(body.get('init_x', 0))
y = int(body.get('init_y', 0))
miner_env.send_map_info(map_id, x, y, number_of_players=4)
miner_env.reset()
s = miner_env.get_state()
step = 0
predictor.reset()
bot1.reset()
bot2.reset()
bot3.reset()
return jsonify({
'state': miner_env.get_readable_state(),
'status': status_map[state.players[playerId]['status']],
})