general: this too

This commit is contained in:
John Cote 2019-11-16 00:03:27 -05:00
parent 6b61a14a50
commit f85f8c697d
2 changed files with 4 additions and 5 deletions

View file

@ -1,11 +1,10 @@
import json import json
from datetime import datetime
import time import time
from datetime import datetime
from direct.distributed.DistributedObjectGlobal import DistributedObjectGlobal
from direct.directnotify import DirectNotifyGlobal from direct.directnotify import DirectNotifyGlobal
from direct.distributed.DistributedObjectGlobal import DistributedObjectGlobal
from otp.uberdog.AccountDetailRecord import AccountDetailRecord from otp.uberdog.AccountDetailRecord import AccountDetailRecord
from otp.distributed.PotentialAvatar import PotentialAvatar
class AstronLoginManager(DistributedObjectGlobal): class AstronLoginManager(DistributedObjectGlobal):
notify = DirectNotifyGlobal.directNotify.newCategory('AstronLoginManager') notify = DirectNotifyGlobal.directNotify.newCategory('AstronLoginManager')
@ -14,6 +13,7 @@ class AstronLoginManager(DistributedObjectGlobal):
DistributedObjectGlobal.__init__(self, cr) DistributedObjectGlobal.__init__(self, cr)
self.doneEvent = None self.doneEvent = None
self._callback = None self._callback = None
self.userName = ''
def handleRequestLogin(self, doneEvent): def handleRequestLogin(self, doneEvent):
self.doneEvent = doneEvent self.doneEvent = doneEvent
@ -124,7 +124,7 @@ class AstronLoginManager(DistributedObjectGlobal):
def sendCreateAvatar(self, avDNA, avName, avPosition): def sendCreateAvatar(self, avDNA, avName, avPosition):
# avName isn't used. Sad! # avName isn't used. Sad!
self.sendUpdate('createAvatar', [avDNA.makeNetString(), avPosition]) self.sendUpdate('createAvatar', [avDNA.makeNetString(), index])
def createAvatarResponse(self, avId): def createAvatarResponse(self, avId):
messenger.send('nameShopCreateAvatarDone', [avId]) messenger.send('nameShopCreateAvatarDone', [avId])

View file

@ -1,5 +1,4 @@
from direct.directnotify import DirectNotifyGlobal from direct.directnotify import DirectNotifyGlobal
from direct.distributed.PyDatagram import *
from toontown.distributed.ToontownInternalRepository import ToontownInternalRepository from toontown.distributed.ToontownInternalRepository import ToontownInternalRepository
from toontown.distributed.ToontownDistrictAI import ToontownDistrictAI from toontown.distributed.ToontownDistrictAI import ToontownDistrictAI
from otp.distributed.OtpDoGlobals import * from otp.distributed.OtpDoGlobals import *