mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
18 lines
540 B
Python
Executable file
18 lines
540 B
Python
Executable file
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])
|