mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
27 lines
1 KiB
Python
27 lines
1 KiB
Python
from direct.directnotify import DirectNotifyGlobal
|
|
import DistributedMegaCorpAI
|
|
import DistributedFactoryAI
|
|
from toontown.toonbase import ToontownGlobals
|
|
from direct.showbase import DirectObject
|
|
|
|
class FactoryManagerAI(DirectObject.DirectObject):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('FactoryManagerAI')
|
|
factoryId = None
|
|
|
|
def __init__(self, air):
|
|
DirectObject.DirectObject.__init__(self)
|
|
self.air = air
|
|
|
|
def getDoId(self):
|
|
return 0
|
|
|
|
def createFactory(self, factoryId, entranceId, players):
|
|
factoryZone = self.air.allocateZone()
|
|
if FactoryManagerAI.factoryId is not None:
|
|
factoryId = FactoryManagerAI.factoryId
|
|
if entranceId == 2:
|
|
factory = DistributedMegaCorpAI.DistributedMegaCorpAI(self.air, factoryId, factoryZone, entranceId, players)
|
|
else:
|
|
factory = DistributedFactoryAI.DistributedFactoryAI(self.air, factoryId, factoryZone, entranceId, players)
|
|
factory.generateWithRequired(factoryZone)
|
|
return factoryZone
|