本文整理汇总了Python中GameLogic.checkAnswer方法的典型用法代码示例。如果您正苦于以下问题:Python GameLogic.checkAnswer方法的具体用法?Python GameLogic.checkAnswer怎么用?Python GameLogic.checkAnswer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GameLogic
的用法示例。
在下文中一共展示了GameLogic.checkAnswer方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: correctAns
# 需要导入模块: import GameLogic [as 别名]
# 或者: from GameLogic import checkAnswer [as 别名]
def correctAns(self, e):
self.elapsedTime = t.time() - self.start
print self.elapsedTime
self.timer.Stop()
ans = self.inputAns.GetLineText(0)
self.panel.Destroy()
self.panel = wx.Panel(self, size=size)
if GameLogic.checkAnswer(ans, self.CorrectAns):
isCorrect = "Correct!"
self.isCorrectPage(self.panel, isCorrect, 20 - int(self.elapsedTime))
self.TotalScore += 20 - int(self.elapsedTime)
self.numCorrectAns += 1
else:
isCorrect = "Wrong!"
self.isCorrectPage(self.panel, isCorrect)
self.timer = wx.Timer(self)
self.timer.Start(2000)
self.Bind(wx.EVT_TIMER, self.update, self.timer)