mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-25 20:52:26 -06:00
68 lines
2.1 KiB
Python
68 lines
2.1 KiB
Python
|
from pandac.PandaModules import *
|
||
|
from toontown.toonbase.ToontownGlobals import *
|
||
|
from direct.distributed.ClockDelta import *
|
||
|
from direct.interval.IntervalGlobal import *
|
||
|
import random
|
||
|
from otp.level import DistributedLevel
|
||
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
import LawOfficeBase
|
||
|
import FactoryEntityCreator
|
||
|
import FactorySpecs
|
||
|
from otp.level import LevelSpec
|
||
|
from otp.level import LevelConstants
|
||
|
from toontown.toonbase import TTLocalizer
|
||
|
from toontown.coghq import FactoryCameraViews
|
||
|
from direct.distributed.DistributedObject import DistributedObject
|
||
|
|
||
|
class DistributedLawOffice(DistributedObject, LawOfficeBase.LawOfficeBase):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedLawOffice')
|
||
|
|
||
|
def __init__(self, cr):
|
||
|
DistributedObject.__init__(self, cr)
|
||
|
LawOfficeBase.LawOfficeBase.__init__(self)
|
||
|
self.suitIds = []
|
||
|
self.suits = []
|
||
|
self.reserveSuits = []
|
||
|
self.joiningReserves = []
|
||
|
self.suitsInitialized = 0
|
||
|
self.goonClipPlanes = {}
|
||
|
self.level = None
|
||
|
return
|
||
|
|
||
|
def generate(self):
|
||
|
self.notify.debug('generate')
|
||
|
self.accept('lawOfficeFloorDone', self.handleFloorDone)
|
||
|
|
||
|
def delete(self):
|
||
|
base.localAvatar.chatMgr.chatInputSpeedChat.removeFactoryMenu()
|
||
|
self.ignore('lawOfficeFloorDone')
|
||
|
|
||
|
def setLawOfficeId(self, id):
|
||
|
LawOfficeBase.LawOfficeBase.setLawOfficeId(self, id)
|
||
|
|
||
|
def levelAnnounceGenerate(self):
|
||
|
self.notify.debug('levelAnnounceGenerate')
|
||
|
|
||
|
def handleSOSPanel(self, panel):
|
||
|
avIds = []
|
||
|
for avId in self.avIdList:
|
||
|
if base.cr.doId2do.get(avId):
|
||
|
avIds.append(avId)
|
||
|
|
||
|
panel.setFactoryToonIdList(avIds)
|
||
|
|
||
|
def handleFloorDone(self):
|
||
|
self.sendUpdate('readyForNextFloor')
|
||
|
|
||
|
def disable(self):
|
||
|
self.notify.debug('disable')
|
||
|
base.localAvatar.setCameraCollisionsCanMove(0)
|
||
|
|
||
|
def getTaskZoneId(self):
|
||
|
return self.lawOfficeId
|
||
|
|
||
|
def startSignal(self):
|
||
|
base.camera.setScale(base.localAvatar.getScale())
|
||
|
localAvatar.setCameraFov(DefaultCameraFov)
|
||
|
base.camera.clearMat()
|