mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
24 lines
847 B
Python
24 lines
847 B
Python
|
from otp.speedchat.SCTerminal import SCTerminal
|
||
|
from otp.otpbase.OTPLocalizer import SpeedChatStaticText
|
||
|
SCStaticTextMsgEvent = 'SCStaticTextMsg'
|
||
|
|
||
|
def decodeSCStaticTextMsg(textId):
|
||
|
return SpeedChatStaticText.get(textId, None)
|
||
|
|
||
|
|
||
|
class TTSCWhiteListTerminal(SCTerminal):
|
||
|
|
||
|
def __init__(self, textId, parentMenu = None):
|
||
|
SCTerminal.__init__(self)
|
||
|
self.parentClass = parentMenu
|
||
|
self.textId = textId
|
||
|
self.text = SpeedChatStaticText[self.textId]
|
||
|
print 'SpeedText %s %s' % (self.textId, self.text)
|
||
|
|
||
|
def handleSelect(self):
|
||
|
SCTerminal.handleSelect(self)
|
||
|
if not self.parentClass.whisperAvatarId:
|
||
|
base.localAvatar.chatMgr.fsm.request('whiteListOpenChat')
|
||
|
else:
|
||
|
base.localAvatar.chatMgr.fsm.request('whiteListAvatarChat', [self.parentClass.whisperAvatarId])
|