Poodletooth-iLand/toontown/parties/GlobalPartyManagerAI.py
John 35b646c4e6 Revert "Spring cleaning"
This reverts commit 1e4bad8c6b.
2015-06-16 20:26:44 +03:00

53 lines
2 KiB
Python
Executable file

from direct.distributed.DistributedObjectGlobalAI import DistributedObjectGlobalAI
from direct.distributed.PyDatagram import *
from direct.directnotify.DirectNotifyGlobal import directNotify
class GlobalPartyManagerAI(DistributedObjectGlobalAI):
notify = directNotify.newCategory('GlobalPartyManagerAI')
def announceGenerate(self):
DistributedObjectGlobalAI.announceGenerate(self)
# Inform the UD that we as an AI have started up, and tell him the doId of our partymanager, so they can talk
self.sendUpdate('partyManagerAIHello', [simbase.air.partyManager.doId])
def sendAddParty(self, avId, partyId, start, end, isPrivate, inviteTheme, activities, decorations, inviteeIds):
self.sendUpdate('addParty', [avId, partyId, start, end, isPrivate, inviteTheme, activities, decorations, inviteeIds])
def queryPartyForHost(self, hostId):
self.sendUpdate('queryParty', [hostId])
def d_partyStarted(self, partyId, shardId, zoneId, hostName):
self.sendUpdate('partyHasStarted', [partyId, shardId, zoneId, hostName])
def partyStarted(self, partyId, shardId, zoneId, hostName):
pass
def d_partyDone(self, partyId):
self.sendUpdate('partyDone', [partyId])
def partyDone(self, partyId):
pass
def d_toonJoinedParty(self, partyId, avId):
self.sendUpdate('toonJoinedParty', [partyId, avId])
def toonJoinedParty(self, partyId, avId):
pass
def d_toonLeftParty(self, partyId, avId):
self.sendUpdate('toonLeftParty', [partyId, avId])
def toonLeftParty(self, partyId, avId):
pass
def d_requestPartySlot(self, partyId, avId, gateId):
self.sendUpdate('requestPartySlot', [partyId, avId, gateId])
def requestPartySlot(self, partyId, avId, gateId):
pass
def d_allocIds(self, numIds):
self.sendUpdate('allocIds', [numIds])
def allocIds(self, numIds):
pass