mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
18 lines
661 B
Python
18 lines
661 B
Python
|
from direct.directnotify.DirectNotifyGlobal import directNotify
|
||
|
from direct.distributed import DistributedObjectAI
|
||
|
|
||
|
|
||
|
class DistributedBuildingQueryMgrAI(DistributedObjectAI.DistributedObjectAI):
|
||
|
notify = directNotify.newCategory('DistributedBuildingQueryMgrAI')
|
||
|
|
||
|
def __init__(self, air):
|
||
|
DistributedObjectAI.DistributedObjectAI.__init__(self, air)
|
||
|
self.buildings = {}
|
||
|
|
||
|
def isSuit(self, context, zoneId):
|
||
|
avId = self.air.getAvatarIdFromSender()
|
||
|
building = self.buildings.get(zoneId)
|
||
|
if building is None:
|
||
|
return
|
||
|
self.sendUpdateToAvatarId(avId, 'response', [context, building.isSuitBlock()])
|