from .DistributedObjectAI import DistributedObjectAI
from direct.directnotify.DirectNotifyGlobal import directNotify
[docs]
class DistributedObjectGlobalAI(DistributedObjectAI):
notify = directNotify.newCategory('DistributedObjectGlobalAI')
doNotDeallocateChannel = 1
isGlobalDistObj = 1
[docs]
def __init__(self, air):
DistributedObjectAI.__init__(self, air)
[docs]
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
[docs]
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)