Poodletooth-iLand/toontown/catalog/CatalogNotifyDialog.py
2015-03-11 00:22:16 +02:00

47 lines
2.1 KiB
Python

from toontown.toonbase import ToontownGlobals
from toontown.toonbase import TTLocalizer
from direct.gui.DirectGui import *
from pandac.PandaModules import *
class CatalogNotifyDialog:
notify = directNotify.newCategory('CatalogNotifyDialog')
def __init__(self, message):
self.message = message
self.messageIndex = 0
self.frame = DirectFrame(relief=None, parent=base.a2dTopRight, sortOrder=DGG.BACKGROUND_SORT_INDEX - 2, image=DGG.getDefaultDialogGeom(), image_color=ToontownGlobals.GlobalDialogColor, image_scale=(1.2, 1.0, 0.4), text=message[0], text_wordwrap=16, text_scale=0.06, text_pos=(-0.1, 0.1), pos=(-0.93, 0, -0.22))
buttons = loader.loadModel('phase_3/models/gui/dialog_box_buttons_gui')
cancelImageList = (buttons.find('**/CloseBtn_UP'), buttons.find('**/CloseBtn_DN'), buttons.find('**/CloseBtn_Rllvr'))
okImageList = (buttons.find('**/ChtBx_OKBtn_UP'), buttons.find('**/ChtBx_OKBtn_DN'), buttons.find('**/ChtBx_OKBtn_Rllvr'))
self.nextButton = DirectButton(parent=self.frame, relief=None, image=okImageList, command=self.handleButton, pos=(0, 0, -0.14))
self.doneButton = DirectButton(parent=self.frame, relief=None, image=cancelImageList, command=self.handleButton, pos=(0, 0, -0.14))
if len(message) == 1:
self.nextButton.hide()
else:
self.doneButton.hide()
return
def handleButton(self):
self.messageIndex += 1
if self.messageIndex >= len(self.message):
self.cleanup()
return
self.frame['text'] = self.message[self.messageIndex]
if self.messageIndex + 1 == len(self.message):
self.nextButton.hide()
self.doneButton.show()
def cleanup(self):
if self.frame:
self.frame.destroy()
self.frame = None
if self.nextButton:
self.nextButton.destroy()
self.nextButton = None
if self.doneButton:
self.doneButton.destroy()
self.doneButton = None
return
def __handleButton(self, value):
self.cleanup()