Beispiel #1
0
 def onHighlightAnimationComplete(self, componentID):
     LOG_DEBUG_DEV_BOOTCAMP('BCHighlights_onHintAnimationComplete', componentID)
     from bootcamp.Bootcamp import g_bootcamp
     from bootcamp.BootcampGarage import g_bootcampGarage
     g_bootcampGarage.resumeLesson()
     if g_bootcampGarage is not None and g_bootcamp.isInGarageState():
         g_bootcampGarage.showNextHint()
     self.hideHint(componentID, shouldStop=False)
     return
Beispiel #2
0
 def invalidateInventory(self, data):
     super(BCResearch, self).invalidateInventory(data)
     if g_bootcamp.getLessonNum() < g_bootcamp.getContextIntParameter(
             'researchFreeLesson'):
         g_bootcampGarage.showNextHint()
Beispiel #3
0
 def invalidateUnlocks(self, unlocks):
     super(BCResearch, self).invalidateUnlocks(unlocks)
     if g_bootcamp.getLessonNum() < g_bootcamp.getContextIntParameter(
             'researchFreeLesson'):
         g_bootcampGarage.showNextHint()
Beispiel #4
0
 def __onVehicleInventoryChanged(self):
     from bootcamp.BootcampGarage import g_bootcampGarage
     g_bootcampGarage.showNextHint()
Beispiel #5
0
 def __onVehicleUnlockedMessage(self):
     from bootcamp.BootcampGarage import g_bootcampGarage
     g_bootcampGarage.showNextHint()
Beispiel #6
0
 def __onVehicleInventoryChanged(self):
     g_bootcampGarage.showNextHint()
Beispiel #7
0
 def __onVehicleUnlockedMessage(self):
     g_bootcampGarage.showNextHint()