mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
50 lines
2 KiB
Python
50 lines
2 KiB
Python
import random
|
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
from direct.fsm import ClassicFSM, State
|
|
from direct.fsm import State
|
|
from direct.interval.IntervalGlobal import *
|
|
from otp.avatar import Emote
|
|
from toontown.nametag import NametagGlobals
|
|
from pandac.PandaModules import *
|
|
from toontown.battle import SuitBattleGlobals
|
|
from toontown.battle.BattleBase import *
|
|
from toontown.coghq import DistributedLevelBattle
|
|
from toontown.suit import SuitDNA
|
|
from toontown.toon import TTEmote
|
|
from toontown.toonbase import ToontownGlobals
|
|
|
|
|
|
class DistributedCountryClubBattle(DistributedLevelBattle.DistributedLevelBattle):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedCountryClubBattle')
|
|
|
|
def __init__(self, cr):
|
|
DistributedLevelBattle.DistributedLevelBattle.__init__(self, cr)
|
|
self.fsm.addState(State.State('CountryClubReward', self.enterCountryClubReward, self.exitCountryClubReward, ['Resume']))
|
|
offState = self.fsm.getStateNamed('Off')
|
|
offState.addTransition('CountryClubReward')
|
|
playMovieState = self.fsm.getStateNamed('PlayMovie')
|
|
playMovieState.addTransition('CountryClubReward')
|
|
|
|
def enterCountryClubReward(self, ts):
|
|
self.notify.debug('enterCountryClubReward()')
|
|
self.disableCollision()
|
|
self.delayDeleteMembers()
|
|
if self.hasLocalToon():
|
|
NametagGlobals.setWant2dNametags(False)
|
|
if self.bossBattle:
|
|
messenger.send('localToonConfrontedCountryClubBoss')
|
|
self.movie.playReward(ts, self.uniqueName('building-reward'), self.__handleCountryClubRewardDone, noSkip=True)
|
|
|
|
def __handleCountryClubRewardDone(self):
|
|
self.notify.debug('countryClub reward done')
|
|
if self.hasLocalToon():
|
|
self.d_rewardDone(base.localAvatar.doId)
|
|
self.movie.resetReward()
|
|
self.fsm.request('Resume')
|
|
|
|
def exitCountryClubReward(self):
|
|
self.notify.debug('exitCountryClubReward()')
|
|
self.movie.resetReward(finish=1)
|
|
self._removeMembersKeep()
|
|
NametagGlobals.setWant2dNametags(True)
|