34 lines
1.3 KiB
Python
34 lines
1.3 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 DistributedGreenToonEffectMgr(DistributedObject.DistributedObject):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedGreenToonEffectMgr')
|
||
|
|
||
|
def __init__(self, cr):
|
||
|
DistributedObject.DistributedObject.__init__(self, cr)
|
||
|
|
||
|
def phraseSaid(phraseId):
|
||
|
greenPhrase = 30450
|
||
|
if phraseId == greenPhrase:
|
||
|
self.addGreenToonEffect()
|
||
|
|
||
|
self.accept(SpeedChatGlobals.SCStaticTextMsgEvent, phraseSaid)
|
||
|
|
||
|
def announceGenerate(self):
|
||
|
DistributedObject.DistributedObject.announceGenerate(self)
|
||
|
DistributedGreenToonEffectMgr.notify.debug('announceGenerate')
|
||
|
|
||
|
def delete(self):
|
||
|
self.ignore(SpeedChatGlobals.SCStaticTextMsgEvent)
|
||
|
DistributedObject.DistributedObject.delete(self)
|
||
|
|
||
|
def addGreenToonEffect(self):
|
||
|
DistributedGreenToonEffectMgr.notify.debug('addGreenToonEffect')
|
||
|
av = base.localAvatar
|
||
|
self.sendUpdate('addGreenToonEffect', [])
|
||
|
msgTrack = Sequence(Func(av.setSystemMessage, 0, TTLocalizer.GreenToonEffectMsg))
|
||
|
msgTrack.start()
|