本文整理汇总了Python中rules.Rules.apply方法的典型用法代码示例。如果您正苦于以下问题:Python Rules.apply方法的具体用法?Python Rules.apply怎么用?Python Rules.apply使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类rules.Rules
的用法示例。
在下文中一共展示了Rules.apply方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Game
# 需要导入模块: from rules import Rules [as 别名]
# 或者: from rules.Rules import apply [as 别名]
class Game(object):
"""docstring for Game"""
def __init__(self, board):
super(Game, self).__init__()
self.rules = Rules()
self.board = board
self.xSize = board.getXSize()
self.ySize = board.getYSize()
def iterate(self):
newBoard = Board(self.xSize, self.ySize)
for i in xrange(self.xSize):
for j in xrange(self.ySize):
count = self.board.getAliveNeiburghs(i,j)
state = self.board.isAlive(i,j)
newState = self.rules.apply(count, state)
newBoard.setState(i,j,newState)
self.board = newBoard
def playGame(self):
while(not self.board.isAllDead()):
self.iterate()
self.printBoard()
def printLines(self):
line = '\n'
for i in xrange(self.ySize):
line += '-'
print line + '\n'
def printBoard(self):
os.system('clear')
self.printLines()
print self.board.toString()
self.printLines()