本文整理汇总了Python中arena.Arena.play_game方法的典型用法代码示例。如果您正苦于以下问题:Python Arena.play_game方法的具体用法?Python Arena.play_game怎么用?Python Arena.play_game使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类arena.Arena
的用法示例。
在下文中一共展示了Arena.play_game方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Arena
# 需要导入模块: from arena import Arena [as 别名]
# 或者: from arena.Arena import play_game [as 别名]
# Imports
from arena import Arena
from bottle import route, run, view, post, request
arena = Arena()
if len(sys.argv)!=4:
print "Usage: python cli.py gamename bot1name bot2name"
exit()
(dump, gamename, bot1name, bot2name) = sys.argv
games = arena.games
if gamename not in games.keys():
print "Unkown game : "+ gamename
exit()
if bot1name not in games[gamename]["bots"]:
print "Unkown bot : "+bot1name
exit()
if bot2name not in games[gamename]["bots"]:
print "Unkown bot : "+bot2name
exit()
args = {"game_name" : gamename, "bot1" : bot1name, "bot2": bot2name}
arena.play_game(**args)
# Reglages pour 'vim'
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
# cursor: 16 del