Bye AvatarManager - will be unused with the upcoming Avatar system remove. (old Disney XD bullshit)

Signed-off-by: Daniel <denialmc@outlook.com>
This commit is contained in:
Daniel 2015-03-03 21:05:40 +02:00
parent d69e7550d5
commit 11c6aa038f
4 changed files with 0 additions and 209 deletions

View file

@ -38,7 +38,6 @@ from otp.otpbase import OTPGlobals
from otp.otpbase import OTPLauncherGlobals from otp.otpbase import OTPLauncherGlobals
from otp.otpbase import OTPLocalizer from otp.otpbase import OTPLocalizer
from otp.otpgui import OTPDialog from otp.otpgui import OTPDialog
from otp.uberdog import OtpAvatarManager
from toontown.chat.ChatGlobals import * from toontown.chat.ChatGlobals import *
@ -999,12 +998,10 @@ class OTPClientRepository(ClientRepositoryBase):
def _requestAvatarList(self): def _requestAvatarList(self):
self.csm.requestAvatars() self.csm.requestAvatars()
self.waitForDatabaseTimeout(requestName='WaitForAvatarList') self.waitForDatabaseTimeout(requestName='WaitForAvatarList')
self.acceptOnce(OtpAvatarManager.OtpAvatarManager.OnlineEvent, self._requestAvatarList)
@report(types=['args', 'deltaStamp'], dConfigParam='teleport') @report(types=['args', 'deltaStamp'], dConfigParam='teleport')
def exitWaitForAvatarList(self): def exitWaitForAvatarList(self):
self.cleanupWaitingForDatabase() self.cleanupWaitingForDatabase()
self.ignore(OtpAvatarManager.OtpAvatarManager.OnlineEvent)
self.handler = None self.handler = None
return return

View file

@ -1,86 +0,0 @@
from cPickle import loads, dumps
from direct.distributed import DistributedObject
from direct.directnotify import DirectNotifyGlobal
notify = DirectNotifyGlobal.directNotify.newCategory('AvatarManager')
class OtpAvatarManager(DistributedObject.DistributedObject):
notify = notify
OnlineEvent = 'GlobalAvatarManagerOnline'
def __init__(self, cr):
DistributedObject.DistributedObject.__init__(self, cr)
self.avatars = {}
def delete(self):
self.ignoreAll()
self.cr.avatarManager = None
DistributedObject.DistributedObject.delete(self)
return
def online(self):
messenger.send(OtpAvatarManager.OnlineEvent)
def sendRequestAvatarList(self):
self.sendUpdate('requestAvatarList', [0])
def rejectAvatarList(self, result):
messenger.send('avatarListFailed', [result])
def avatarListResponse(self, pickleData):
avatars = loads(pickleData)
messenger.send('avatarList', [avatars])
def rejectCreateAvatar(self, result):
messenger.send('createdNewAvatarFailed', [result])
def createAvatarResponse(self, avatarId, subId, access, founder):
self.notify.info('new avatarId: %s subId: %s access: %s founder: %s' % (avatarId,
subId,
access,
founder))
messenger.send('createdNewAvatar', [avatarId, subId])
def sendRequestRemoveAvatar(self, avatarId, subId, confirmPassword):
self.sendUpdate('requestRemoveAvatar', [0,
avatarId,
subId,
confirmPassword])
def rejectRemoveAvatar(self, reasonId):
messenger.send('rejectRemoveAvatar', [reasonId])
def removeAvatarResponse(self, avatarId, subId):
messenger.send('removeAvatarResponse', [avatarId, subId])
def sendRequestShareAvatar(self, avatarId, subId, shared):
self.sendUpdate('requestShareAvatar', [0,
avatarId,
subId,
shared])
def rejectShareAvatar(self, reasonId):
messenger.send('rejectShareAvatar', [reasonId])
def shareAvatarResponse(self, avatarId, subId, shared):
messenger.send('shareAvatarResponse', [avatarId, subId, shared])
def sendRequestAvatarSlot(self, subId, slot):
self.sendUpdate('requestAvatarSlot', [0, subId, slot])
def rejectAvatarSlot(self, reasonId, subId, slot):
messenger.send('rejectAvatarSlot', [reasonId, subId, slot])
def avatarSlotResponse(self, subId, slot):
messenger.send('avatarSlotResponse', [subId, slot])
def sendRequestPlayAvatar(self, avatarId, subId):
self.sendUpdate('requestPlayAvatar', [0, avatarId, subId])
def rejectPlayAvatar(self, reasonId, avatarId):
messenger.send('rejectPlayAvatar', [reasonId, avatarId])
def playAvatarResponse(self, avatarId, subId, access, founder):
messenger.send('playAvatarResponse', [avatarId,
subId,
access,
founder])

View file

@ -1,60 +0,0 @@
from direct.directnotify import DirectNotifyGlobal
from direct.distributed.DistributedObjectAI import DistributedObjectAI
class OtpAvatarManagerAI(DistributedObjectAI):
notify = DirectNotifyGlobal.directNotify.newCategory("OtpAvatarManagerAI")
def online(self):
pass
def requestAvatarList(self, todo0):
pass
def rejectAvatarList(self, todo0):
pass
def avatarListResponse(self, todo0):
pass
def requestAvatarSlot(self, todo0, todo1, todo2):
pass
def rejectAvatarSlot(self, todo0, todo1, todo2):
pass
def avatarSlotResponse(self, todo0, todo1):
pass
def requestPlayAvatar(self, todo0, todo1, todo2):
pass
def rejectPlayAvatar(self, todo0, todo1):
pass
def playAvatarResponse(self, todo0, todo1, todo2, todo3):
pass
def rejectCreateAvatar(self, todo0):
pass
def createAvatarResponse(self, todo0, todo1, todo2, todo3):
pass
def requestRemoveAvatar(self, todo0, todo1, todo2, todo3):
pass
def rejectRemoveAvatar(self, todo0):
pass
def removeAvatarResponse(self, todo0, todo1):
pass
def requestShareAvatar(self, todo0, todo1, todo2, todo3):
pass
def rejectShareAvatar(self, todo0):
pass
def shareAvatarResponse(self, todo0, todo1, todo2):
pass

View file

@ -1,60 +0,0 @@
from direct.directnotify import DirectNotifyGlobal
from direct.distributed.DistributedObjectUD import DistributedObjectUD
class OtpAvatarManagerUD(DistributedObjectUD):
notify = DirectNotifyGlobal.directNotify.newCategory("OtpAvatarManagerUD")
def online(self):
pass
def requestAvatarList(self, todo0):
pass
def rejectAvatarList(self, todo0):
pass
def avatarListResponse(self, todo0):
pass
def requestAvatarSlot(self, todo0, todo1, todo2):
pass
def rejectAvatarSlot(self, todo0, todo1, todo2):
pass
def avatarSlotResponse(self, todo0, todo1):
pass
def requestPlayAvatar(self, todo0, todo1, todo2):
pass
def rejectPlayAvatar(self, todo0, todo1):
pass
def playAvatarResponse(self, todo0, todo1, todo2, todo3):
pass
def rejectCreateAvatar(self, todo0):
pass
def createAvatarResponse(self, todo0, todo1, todo2, todo3):
pass
def requestRemoveAvatar(self, todo0, todo1, todo2, todo3):
pass
def rejectRemoveAvatar(self, todo0):
pass
def removeAvatarResponse(self, todo0, todo1):
pass
def requestShareAvatar(self, todo0, todo1, todo2, todo3):
pass
def rejectShareAvatar(self, todo0):
pass
def shareAvatarResponse(self, todo0, todo1, todo2):
pass