start the player server in a more robost way.

This commit is contained in:
Dong Yan 2017-12-16 14:33:31 +08:00
parent 6cb4b02fca
commit b8bdfea8bd

View File

@ -4,34 +4,40 @@ import re
import Pyro4
import time
#start a name server to find the remote object
kill_old_server = subprocess.Popen(['killall', 'pyro4-ns'])
print "kill old server, the return code is : " + str(kill_old_server.wait())
time.sleep(1)
start_new_server = subprocess.Popen(['pyro4-ns', '&'])
print "Start Name Sever : " + str(start_new_server.pid)# + str(start_new_server.wait())
time.sleep(1)
agent_v0 = subprocess.Popen(['python', '-u', 'player.py', '--role=black'],
if __name__ == '__main__':
# start a name server to find the remote object
kill_old_server = subprocess.Popen(['killall', 'pyro4-ns'])
print "kill old server, the return code is : " + str(kill_old_server.wait())
time.sleep(1)
start_new_server = subprocess.Popen(['pyro4-ns', '&'])
print "Start Name Sever : " + str(start_new_server.pid) # + str(start_new_server.wait())
time.sleep(1)
agent_v0 = subprocess.Popen(['python', '-u', 'player.py', '--role=black'],
stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
print "Start Player 0 at : " + str(agent_v0.pid)
agent_v1 = subprocess.Popen(['python', '-u', 'player.py', '--role=white', '--checkpoint_path=./checkpoints_origin/'],
agent_v1 = subprocess.Popen(['python', '-u', 'player.py', '--role=white', '--checkpoint_path=./checkpoints_origin/'],
stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
print "Start Player 1 at : " + str(agent_v1.pid)
time.sleep(5)
server_list = ""
while ("black" not in server_list) or ("white" not in server_list):
server_list = subprocess.check_output(['pyro4-nsc', 'list'])
print "Waining for the server start..."
time.sleep(1)
print server_list
print "Start black player at : " + str(agent_v0.pid)
print "Start white player at : " + str(agent_v1.pid)
player = [None] * 2
player[0] = Pyro4.Proxy("PYRONAME:black")
player[1] = Pyro4.Proxy("PYRONAME:white")
player = [None] * 2
player[0] = Pyro4.Proxy("PYRONAME:black")
player[1] = Pyro4.Proxy("PYRONAME:white")
role = ["BLACK", "WHITE"]
color = ['b', 'w']
role = ["BLACK", "WHITE"]
color = ['b', 'w']
pattern = "[A-Z]{1}[0-9]{1}"
size = 9
show = ['.', 'X', 'O']
pattern = "[A-Z]{1}[0-9]{1}"
size = 9
show = ['.', 'X', 'O']
game_num = 0
while game_num < 1:
game_num = 0
while game_num < 1:
num = 0
pass_flag = [False, False]
print("Start game {}".format(game_num))
@ -43,11 +49,11 @@ while game_num < 1:
num += 1
match = re.search(pattern, move)
if match is not None:
#print "match : " + str(match.group())
# print "match : " + str(match.group())
play_or_pass = match.group()
pass_flag[turn] = False
else:
#print "no match"
# print "no match"
play_or_pass = ' PASS'
pass_flag[turn] = True
result = player[1 - turn].run_cmd(str(num) + ' play ' + color[turn] + ' ' + play_or_pass + '\n')