Ejemplo n.º 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
Ejemplo n.º 2
0
 def invalidateInventory(self, data):
     super(BCResearch, self).invalidateInventory(data)
     if g_bootcamp.getLessonNum() < g_bootcamp.getContextIntParameter(
             'researchFreeLesson'):
         g_bootcampGarage.showNextHint()
Ejemplo n.º 3
0
 def invalidateUnlocks(self, unlocks):
     super(BCResearch, self).invalidateUnlocks(unlocks)
     if g_bootcamp.getLessonNum() < g_bootcamp.getContextIntParameter(
             'researchFreeLesson'):
         g_bootcampGarage.showNextHint()
Ejemplo n.º 4
0
 def __onVehicleInventoryChanged(self):
     from bootcamp.BootcampGarage import g_bootcampGarage
     g_bootcampGarage.showNextHint()
Ejemplo n.º 5
0
 def __onVehicleUnlockedMessage(self):
     from bootcamp.BootcampGarage import g_bootcampGarage
     g_bootcampGarage.showNextHint()
Ejemplo n.º 6
0
 def __onVehicleInventoryChanged(self):
     g_bootcampGarage.showNextHint()
Ejemplo n.º 7
0
 def __onVehicleUnlockedMessage(self):
     g_bootcampGarage.showNextHint()