本文整理汇总了Python中User.move方法的典型用法代码示例。如果您正苦于以下问题:Python User.move方法的具体用法?Python User.move怎么用?Python User.move使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类User
的用法示例。
在下文中一共展示了User.move方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: User
# 需要导入模块: import User [as 别名]
# 或者: from User import move [as 别名]
aggressive = False
p1 = User("Player 1")
p1.populateHand()
computer = Computer(aggressive)
computer.populateHand()
central = Central()
central.populateActive()
'''main game loop'''
game = True
while game:
'''player 1 turn - returns false if quitting the game'''
game = p1.move(computer,central,view)
'''proceed only if user has not quit the game'''
if game == True:
'''check if user won before computer moves'''
if computer.health <= 0:
game = False
view.displayWinner(p1)
computer.move(p1,central,view)
'''check if computer won or draw'''
if p1.health <= 0:
game = False
view.displayWinner(computer)