mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 20:52:26 -06:00
19 lines
540 B
Python
19 lines
540 B
Python
|
from otp.speedchat.SCTerminal import *
|
||
|
from otp.otpbase.OTPLocalizer import SpeedChatStaticText
|
||
|
TTSCIndexedMsgEvent = 'SCIndexedMsg'
|
||
|
|
||
|
def decodeTTSCIndexedMsg(msgIndex):
|
||
|
return SpeedChatStaticText.get(msgIndex, None)
|
||
|
|
||
|
|
||
|
class TTSCIndexedTerminal(SCTerminal):
|
||
|
|
||
|
def __init__(self, msg, msgIndex):
|
||
|
SCTerminal.__init__(self)
|
||
|
self.text = msg
|
||
|
self.msgIndex = msgIndex
|
||
|
|
||
|
def handleSelect(self):
|
||
|
SCTerminal.handleSelect(self)
|
||
|
messenger.send(self.getEventName(TTSCIndexedMsgEvent), [self.msgIndex])
|