Poodletooth-iLand/toontown/safezone/SafeZoneManager.py

26 lines
843 B
Python
Raw Normal View History

2015-03-03 22:10:12 +00:00
from pandac.PandaModules import *
from direct.distributed import DistributedObject
from direct.directnotify import DirectNotifyGlobal
class SafeZoneManager(DistributedObject.DistributedObject):
notify = DirectNotifyGlobal.directNotify.newCategory('SafeZoneManager')
neverDisable = 1
def __init__(self, cr):
DistributedObject.DistributedObject.__init__(self, cr)
def generate(self):
DistributedObject.DistributedObject.generate(self)
self.accept('enterSafeZone', self.d_enterSafeZone)
self.accept('exitSafeZone', self.d_exitSafeZone)
def disable(self):
self.ignoreAll()
DistributedObject.DistributedObject.disable(self)
def d_enterSafeZone(self):
self.sendUpdate('enterSafeZone', [])
def d_exitSafeZone(self):
self.sendUpdate('exitSafeZone', [])