本文整理汇总了Python中horizons.util.startgameoptions.StartGameOptions.create_game_test方法的典型用法代码示例。如果您正苦于以下问题:Python StartGameOptions.create_game_test方法的具体用法?Python StartGameOptions.create_game_test怎么用?Python StartGameOptions.create_game_test使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类horizons.util.startgameoptions.StartGameOptions
的用法示例。
在下文中一共展示了StartGameOptions.create_game_test方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: load
# 需要导入模块: from horizons.util.startgameoptions import StartGameOptions [as 别名]
# 或者: from horizons.util.startgameoptions.StartGameOptions import create_game_test [as 别名]
def load(self, savegame, players, is_ai_test, is_map):
# keep a reference on the savegame, so we can cleanup in `end`
self.savegame = savegame
self.started_from_map = is_map
if is_ai_test:
# enable trader, pirate and natural resources in AI tests.
options = StartGameOptions.create_ai_test(savegame, players)
else:
# disable the above in usual game tests for simplicity.
options = StartGameOptions.create_game_test(savegame, players)
options.is_map = is_map
super(SPTestSession, self).load(options)