2019-11-02 17:27:54 -05:00
|
|
|
from direct.showbase import PythonUtil
|
|
|
|
from otp.speedchat.SCMenu import SCMenu
|
|
|
|
from otp.speedchat.SCMenuHolder import SCMenuHolder
|
|
|
|
from otp.speedchat.SCStaticTextTerminal import SCStaticTextTerminal
|
|
|
|
from otp.otpbase import OTPLocalizer
|
|
|
|
IdesOfMarchMenu = [(OTPLocalizer.IdesOfMarchMenuSections[0], [30450, 30451, 30452])]
|
|
|
|
|
|
|
|
class TTSCIdesOfMarchMenu(SCMenu):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
SCMenu.__init__(self)
|
|
|
|
self.__messagesChanged()
|
|
|
|
|
|
|
|
def destroy(self):
|
|
|
|
SCMenu.destroy(self)
|
|
|
|
|
|
|
|
def clearMenu(self):
|
|
|
|
SCMenu.clearMenu(self)
|
|
|
|
|
|
|
|
def __messagesChanged(self):
|
|
|
|
self.clearMenu()
|
|
|
|
try:
|
|
|
|
lt = base.localAvatar
|
|
|
|
except:
|
|
|
|
return
|
|
|
|
|
|
|
|
for section in IdesOfMarchMenu:
|
|
|
|
if section[0] == -1:
|
|
|
|
for phrase in section[1]:
|
|
|
|
if phrase not in OTPLocalizer.SpeedChatStaticText:
|
2019-12-30 00:07:56 -06:00
|
|
|
print('warning: tried to link IdesOfMarch phrase %s which does not seem to exist' % phrase)
|
2019-11-02 17:27:54 -05:00
|
|
|
break
|
|
|
|
self.append(SCStaticTextTerminal(phrase))
|
|
|
|
|
|
|
|
else:
|
|
|
|
menu = SCMenu()
|
|
|
|
for phrase in section[1]:
|
|
|
|
if phrase not in OTPLocalizer.SpeedChatStaticText:
|
2019-12-30 00:07:56 -06:00
|
|
|
print('warning: tried to link IdesOfMarch phrase %s which does not seem to exist' % phrase)
|
2019-11-02 17:27:54 -05:00
|
|
|
break
|
|
|
|
menu.append(SCStaticTextTerminal(phrase))
|
|
|
|
|
|
|
|
menuName = str(section[0])
|
|
|
|
self.append(SCMenuHolder(menuName, menu))
|