当前位置: 首页>>代码示例>>Python>>正文


Python Game.run_game方法代码示例

本文整理汇总了Python中game.game.Game.run_game方法的典型用法代码示例。如果您正苦于以下问题:Python Game.run_game方法的具体用法?Python Game.run_game怎么用?Python Game.run_game使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在game.game.Game的用法示例。


在下文中一共展示了Game.run_game方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: Terminal

# 需要导入模块: from game.game import Game [as 别名]
# 或者: from game.game.Game import run_game [as 别名]
                 game.log_status_short()
             else:
                 game.log_status()
     
     if statistics is not None:
         # game ended
         with term.location(y=9+10):
             print term.bold("Game ended")
             print statistics
 
 
 term = Terminal()
 with term.fullscreen():
     print_main(term, num_players, ai, ai_params, short_log)
     
     for current_player, turn in game.run_game():
         if wait_key:
             cmd = raw_input(":")
             if cmd in ["c", "continue"]:
                 wait_key = False
         
         print_main(term, num_players, ai, ai_params, short_log, turn=turn, current_player=current_player)
         
     
     statistics = game.statistics
     print_main(term, num_players, ai, ai_params, short_log, turn=turn, current_player=current_player, statistics=statistics)
     
     while True:
         cmd = raw_input(":")
         print_main(term, num_players, ai, ai_params, short_log, turn=turn, current_player=current_player, statistics=statistics)
         
开发者ID:giove91,项目名称:hanabi,代码行数:32,代码来源:run_game.py

示例2: Game

# 需要导入模块: from game.game import Game [as 别名]
# 或者: from game.game.Game import run_game [as 别名]
difference = 0

for (date, stats) in SCORES.iteritems():
    for (i, scores) in stats.iteritems():
        for (j, score) in enumerate(scores):
            game = Game(
                num_players=5,
                ai="alphahanabi",
                ai_params={"difficulty": DIFFICULTIES[j]},
                strategy_log=False,
                dump_deck_to=None,
                load_deck_from="challenges/challenge-%s/game%d.txt" % (date, i),
            )
            
            game.setup()
            for _ in game.run_game():
                pass
            statistics = game.statistics
            
            diff = statistics.score - score
            difference += abs(diff)
            
            print "%s Game %d %s:" % (date, i, DIFFICULTIES[j])
            print "Old score: %d (%d)" % (score, diff)
            print statistics


print
print "Difference: %d" % difference

开发者ID:giove91,项目名称:hanabi,代码行数:31,代码来源:check_challenge.py


注:本文中的game.game.Game.run_game方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。