oldschool-toontown/toontown/speedchat/TTSCSingingTerminal.py
2019-11-02 18:27:54 -04:00

24 lines
710 B
Python

from otp.speedchat.SCTerminal import SCTerminal
from otp.otpbase.OTPLocalizer import SpeedChatStaticText
TTSCSingingMsgEvent = 'SCSingingMsg'
def decodeSCStaticTextMsg(textId):
return SpeedChatStaticText.get(textId, None)
class TTSCSingingTerminal(SCTerminal):
def __init__(self, textId):
SCTerminal.__init__(self)
self.textId = textId
self.text = SpeedChatStaticText[self.textId]
def handleSelect(self):
SCTerminal.handleSelect(self)
messenger.send(self.getEventName(TTSCSingingMsgEvent), [self.textId])
def finalize(self):
args = {'rolloverSound': None,
'clickSound': None}
SCTerminal.finalize(self, args)
return