from pandac.PandaModules import *
from direct.distributed import DistributedObject
from direct.directnotify import DirectNotifyGlobal

class WelcomeValleyManager(DistributedObject.DistributedObject):
    notify = DirectNotifyGlobal.directNotify.newCategory('WelcomeValleyManager')
    neverDisable = 1

    def __init__(self, cr):
        DistributedObject.DistributedObject.__init__(self, cr)

    def generate(self):
        if base.cr.welcomeValleyManager != None:
            base.cr.welcomeValleyManager.delete()
        base.cr.welcomeValleyManager = self
        DistributedObject.DistributedObject.generate(self)
        return

    def disable(self):
        base.cr.welcomeValleyManager = None
        DistributedObject.DistributedObject.disable(self)
        return

    def delete(self):
        base.cr.welcomeValleyManager = None
        DistributedObject.DistributedObject.delete(self)
        return

    def requestZoneId(self, origZoneId, callback):
        context = self.getCallbackContext(callback)
        self.sendUpdate('requestZoneIdMessage', [origZoneId, context])

    def requestZoneIdResponse(self, zoneId, context):
        self.doCallbackContext(context, [zoneId])