2019-11-02 17:27:54 -05:00
|
|
|
from direct.gui.DirectGui import *
|
2022-12-16 18:40:57 -06:00
|
|
|
from panda3d.core import *
|
2019-11-02 17:27:54 -05:00
|
|
|
from toontown.toonbase import ToontownGlobals
|
|
|
|
from toontown.toonbase import TTLocalizer
|
|
|
|
import random
|
|
|
|
|
|
|
|
class ToontownLoadingScreen:
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.__expectedCount = 0
|
|
|
|
self.__count = 0
|
|
|
|
self.gui = loader.loadModel('phase_3/models/gui/progress-background')
|
|
|
|
self.banner = loader.loadModel('phase_3/models/gui/toon_council').find('**/scroll')
|
|
|
|
self.banner.reparentTo(self.gui)
|
|
|
|
self.banner.setScale(0.4, 0.4, 0.4)
|
|
|
|
self.tip = DirectLabel(guiId='ToontownLoadingScreenTip', parent=self.banner, relief=None, text='', text_scale=TTLocalizer.TLStip, textMayChange=1, pos=(-1.2, 0.0, 0.1), text_fg=(0.4, 0.3, 0.2, 1), text_wordwrap=13, text_align=TextNode.ALeft)
|
|
|
|
self.title = DirectLabel(guiId='ToontownLoadingScreenTitle', parent=self.gui, relief=None, pos=(-1.06, 0, -0.77), text='', textMayChange=1, text_scale=0.08, text_fg=(0, 0, 0.5, 1), text_align=TextNode.ALeft)
|
|
|
|
self.waitBar = DirectWaitBar(guiId='ToontownLoadingScreenWaitBar', parent=self.gui, frameSize=(-1.06,
|
|
|
|
1.06,
|
|
|
|
-0.03,
|
|
|
|
0.03), pos=(0, 0, -0.85), text='')
|
|
|
|
return
|
|
|
|
|
|
|
|
def destroy(self):
|
|
|
|
self.tip.destroy()
|
|
|
|
self.title.destroy()
|
|
|
|
self.waitBar.destroy()
|
|
|
|
self.banner.removeNode()
|
|
|
|
self.gui.removeNode()
|
|
|
|
|
|
|
|
def getTip(self, tipCategory):
|
|
|
|
return TTLocalizer.TipTitle + '\n' + random.choice(TTLocalizer.TipDict.get(tipCategory))
|
|
|
|
|
|
|
|
def begin(self, range, label, gui, tipCategory):
|
|
|
|
self.waitBar['range'] = range
|
|
|
|
self.title['text'] = label
|
|
|
|
self.tip['text'] = self.getTip(tipCategory)
|
|
|
|
self.__count = 0
|
|
|
|
self.__expectedCount = range
|
|
|
|
if gui:
|
|
|
|
self.waitBar.reparentTo(self.gui)
|
|
|
|
self.title.reparentTo(self.gui)
|
2019-11-02 19:14:34 -05:00
|
|
|
self.gui.reparentTo(aspect2dp, DGG.NO_FADE_SORT_INDEX)
|
2019-11-02 17:27:54 -05:00
|
|
|
else:
|
2019-11-02 19:14:34 -05:00
|
|
|
self.waitBar.reparentTo(aspect2dp, DGG.NO_FADE_SORT_INDEX)
|
|
|
|
self.title.reparentTo(aspect2dp, DGG.NO_FADE_SORT_INDEX)
|
2019-11-02 17:27:54 -05:00
|
|
|
self.gui.reparentTo(hidden)
|
|
|
|
self.waitBar.update(self.__count)
|
|
|
|
|
|
|
|
def end(self):
|
|
|
|
self.waitBar.finish()
|
|
|
|
self.waitBar.reparentTo(self.gui)
|
|
|
|
self.title.reparentTo(self.gui)
|
|
|
|
self.gui.reparentTo(hidden)
|
|
|
|
return (self.__expectedCount, self.__count)
|
|
|
|
|
|
|
|
def abort(self):
|
|
|
|
self.gui.reparentTo(hidden)
|
|
|
|
|
|
|
|
def tick(self):
|
|
|
|
self.__count = self.__count + 1
|
|
|
|
self.waitBar.update(self.__count)
|