7195618d93
Make Astron Support option a built-in variable
47 lines
1.8 KiB
Python
47 lines
1.8 KiB
Python
import time
|
|
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
from otp.distributed.DistributedDirectoryAI import DistributedDirectoryAI
|
|
from otp.distributed.OtpDoGlobals import *
|
|
from toontown.distributed.ToontownInternalRepository import ToontownInternalRepository
|
|
from toontown.parties.ToontownTimeManager import ToontownTimeManager
|
|
|
|
|
|
# TODO: Remove Astron dependence.
|
|
|
|
class ToontownUDRepository(ToontownInternalRepository):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('ToontownUDRepository')
|
|
|
|
def __init__(self, baseChannel, serverId):
|
|
ToontownInternalRepository.__init__(self, baseChannel, serverId, dcSuffix='UD')
|
|
self.toontownTimeManager = None
|
|
self.astronLoginManager = None
|
|
|
|
def handleConnected(self):
|
|
ToontownInternalRepository.handleConnected(self)
|
|
|
|
# Create our root object.
|
|
self.notify.info('Creating root object (%d)...' % self.getGameDoId())
|
|
rootObj = DistributedDirectoryAI(self)
|
|
rootObj.generateWithRequiredAndId(self.getGameDoId(), 0, 0)
|
|
|
|
# Create our local objects.
|
|
self.notify.info('Creating local objects...')
|
|
self.createLocals()
|
|
|
|
# Create our global objects.
|
|
self.notify.info('Creating global objects...')
|
|
self.createGlobals()
|
|
|
|
self.notify.info('UberDOG server is ready.')
|
|
|
|
def createLocals(self):
|
|
# Create our Toontown time manager...
|
|
self.toontownTimeManager = ToontownTimeManager(serverTimeUponLogin=int(time.time()),
|
|
globalClockRealTimeUponLogin=globalClock.getRealTime())
|
|
|
|
def createGlobals(self):
|
|
if astronSupport:
|
|
# Create our Astron login manager...
|
|
self.astronLoginManager = self.generateGlobalObject(OTP_DO_ID_ASTRON_LOGIN_MANAGER, 'AstronLoginManager')
|