34 lines
1.4 KiB
Python
34 lines
1.4 KiB
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.distributed import DistributedObject
|
||
|
from direct.interval.IntervalGlobal import *
|
||
|
from otp.speedchat import SpeedChatGlobals
|
||
|
from toontown.toonbase import TTLocalizer
|
||
|
|
||
|
class DistributedPolarPlaceEffectMgr(DistributedObject.DistributedObject):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPolarPlaceEffectMgr')
|
||
|
|
||
|
def __init__(self, cr):
|
||
|
DistributedObject.DistributedObject.__init__(self, cr)
|
||
|
|
||
|
def phraseSaid(phraseId):
|
||
|
helpPhrase = 104
|
||
|
if phraseId == helpPhrase:
|
||
|
self.addPolarPlaceEffect()
|
||
|
|
||
|
self.accept(SpeedChatGlobals.SCStaticTextMsgEvent, phraseSaid)
|
||
|
|
||
|
def announceGenerate(self):
|
||
|
DistributedObject.DistributedObject.announceGenerate(self)
|
||
|
DistributedPolarPlaceEffectMgr.notify.debug('announceGenerate')
|
||
|
|
||
|
def delete(self):
|
||
|
self.ignore(SpeedChatGlobals.SCStaticTextMsgEvent)
|
||
|
DistributedObject.DistributedObject.delete(self)
|
||
|
|
||
|
def addPolarPlaceEffect(self):
|
||
|
DistributedPolarPlaceEffectMgr.notify.debug('addResitanceEffect')
|
||
|
av = base.localAvatar
|
||
|
self.sendUpdate('addPolarPlaceEffect', [])
|
||
|
msgTrack = Sequence(Func(av.setSystemMessage, 0, TTLocalizer.PolarPlaceEffect1), Wait(2), Func(av.setSystemMessage, 0, TTLocalizer.PolarPlaceEffect2), Wait(4), Func(av.setSystemMessage, 0, TTLocalizer.PolarPlaceEffect3))
|
||
|
msgTrack.start()
|