本文整理汇总了Python中action.Action.nextStep方法的典型用法代码示例。如果您正苦于以下问题:Python Action.nextStep方法的具体用法?Python Action.nextStep怎么用?Python Action.nextStep使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类action.Action
的用法示例。
在下文中一共展示了Action.nextStep方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: move
# 需要导入模块: from action import Action [as 别名]
# 或者: from action.Action import nextStep [as 别名]
def move(self, direction):
if direction != Action.Wait:
dx,dy=Action.nextStep(direction)
nx,ny=self.x+dx,self.y+dy
if nx<0 or nx>=Level.__LEVEL_SIZE[0] or ny<0 or ny>=Level.__LEVEL_SIZE[1]:
error('chip tried to step out side of bounds')
return
if not self.top_layer[ny][nx].canChipStep():
error('chip tried to step on something he cant')
return
status = self.top_layer[ny][nx].effect()
self.top_layer[ny][nx] = self.top_layer[self.y][self.x]
self.top_layer[self.y][self.x] = Empty(self.x, self.y)
self.x=nx
self.y=ny
return status
示例2: getNextStep
# 需要导入模块: from action import Action [as 别名]
# 或者: from action.Action import nextStep [as 别名]
def getNextStep(self, dir = None):
if (dir is None): dir = self.facing
x, y = Action.nextStep(dir)
return self.X + x, self.Y + y
示例3: getNextStep
# 需要导入模块: from action import Action [as 别名]
# 或者: from action.Action import nextStep [as 别名]
def getNextStep(self):
x, y = Action.nextStep(self.facing)
return self.X + x, self.Y + y