2015-03-03 16:10:12 -06:00
|
|
|
from direct.task.Task import Task
|
|
|
|
from toontown.safezone import Playground
|
2015-03-29 12:45:32 -05:00
|
|
|
import random
|
2015-03-03 16:10:12 -06:00
|
|
|
|
|
|
|
class TTPlayground(Playground.Playground):
|
|
|
|
def enter(self, requestStatus):
|
|
|
|
Playground.Playground.enter(self, requestStatus)
|
|
|
|
taskMgr.doMethodLater(1, self.__birds, 'TT-birds')
|
|
|
|
|
|
|
|
def exit(self):
|
|
|
|
Playground.Playground.exit(self)
|
|
|
|
taskMgr.remove('TT-birds')
|
|
|
|
|
|
|
|
def __birds(self, task):
|
|
|
|
base.playSfx(random.choice(self.loader.birdSound))
|
|
|
|
time = random.random() * 20.0 + 1
|
|
|
|
taskMgr.doMethodLater(time, self.__birds, 'TT-birds')
|
|
|
|
return Task.done
|