本文整理汇总了Python中View.View.reset方法的典型用法代码示例。如果您正苦于以下问题:Python View.reset方法的具体用法?Python View.reset怎么用?Python View.reset使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类View.View
的用法示例。
在下文中一共展示了View.reset方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: BeeForm
# 需要导入模块: from View import View [as 别名]
# 或者: from View.View import reset [as 别名]
#.........这里部分代码省略.........
if self.beeclasses is None:
func = __import__
else:
func = lambda x: reload(__import__(x))
names = list(map(lambda x: splitext(x)[0],
[ file for file in listdir("bees")
if file.endswith(".py")]))
path.append("bees")
self.beeclasses = []
for name in names:
try:
self.beeclasses.append(getattr(func(name),name))
self.logline("Loaded " + name + ".py")
except Exception as e:
self.logline("\nFailed to load " + name + ".py")
self.logline(self.exception2str(e) + "\n")
def preparetheworld(self):
if self.checkbeearguments():
self.world = World(self.selectedbeeclass,
self.amountofbees,
self.widthofworld,
self.heightofworld,
self.beearguments.copy(),
self.worldseed)
self.view.startworldwidth = self.widthofworld
self.view.startworldheight = self.heightofworld
self.view.reset(self.world)
self.updatetime()
self.updateDrawingArea()
self.setupcomlist()
def startstop(self):
if self.world is not None:
if not self.running:
self.running = True
timeout_add(self.runworldinterval, self.runWorld)
else:
self.running = False
def stepback(self):
if self.world is not None:
if self.world.currentState > 0:
self.running = False
self.world.stepBackward()
self.updateDrawingArea()
self.updateComlist()
self.updatebeedebug()
self.updatetime()
def stepforward(self):
if self.world is not None:
self.running = False
self.world.stepForward()
self.updateDrawingArea()
self.updateComlist()
self.updatebeedebug()
self.updatetime()