Poodletooth-iLand/dependencies/panda/direct/distributed/DistributedObjectGlobalAI.py
2015-05-29 05:03:48 -05:00

32 lines
1,018 B
Python

from DistributedObjectAI import DistributedObjectAI
from direct.directnotify.DirectNotifyGlobal import directNotify
class DistributedObjectGlobalAI(DistributedObjectAI):
notify = directNotify.newCategory('DistributedObjectGlobalAI')
doNotDeallocateChannel = 1
isGlobalDistObj = 1
def __init__(self, air):
DistributedObjectAI.__init__(self, air)
def announceGenerate(self):
DistributedObjectAI.announceGenerate(self)
try:
if not self.doNotListenToChannel:
self.air.registerForChannel(self.doId)
except AttributeError:
self.air.registerForChannel(self.doId)
return False
def delete(self):
DistributedObjectAI.delete(self)
try:
if not self.doNotListenToChannel:
self.air.unregisterForChannel(self.doId)
except AttributeError:
self.air.unregisterForChannel(self.doId)
## self.air.removeDOFromTables(self)