22 lines
792 B
Python
22 lines
792 B
Python
import TownLoader
|
|
import BRStreet
|
|
from toontown.suit import Suit
|
|
|
|
class BRTownLoader(TownLoader.TownLoader):
|
|
|
|
def __init__(self, hood, parentFSM, doneEvent):
|
|
TownLoader.TownLoader.__init__(self, hood, parentFSM, doneEvent)
|
|
self.streetClass = BRStreet.BRStreet
|
|
self.musicFile = 'phase_8/audio/bgm/TB_SZ.ogg'
|
|
self.activityMusicFile = 'phase_8/audio/bgm/TB_SZ_activity.ogg'
|
|
self.townStorageDNAFile = 'phase_8/dna/storage_BR_town.xml'
|
|
|
|
def load(self, zoneId):
|
|
TownLoader.TownLoader.load(self, zoneId)
|
|
Suit.loadSuits(3)
|
|
dnaFile = 'phase_8/dna/the_burrrgh_' + str(self.canonicalBranchZone) + '.xml'
|
|
self.createHood(dnaFile)
|
|
|
|
def unload(self):
|
|
Suit.unloadSuits(3)
|
|
TownLoader.TownLoader.unload(self)
|