mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
29 lines
1.1 KiB
Python
Executable file
29 lines
1.1 KiB
Python
Executable file
from direct.distributed.AstronInternalRepository import AstronInternalRepository
|
|
from otp.distributed.OtpDoGlobals import *
|
|
|
|
class ToontownInternalRepository(AstronInternalRepository):
|
|
GameGlobalsId = OTP_DO_ID_TOONTOWN
|
|
dbId = 4003
|
|
|
|
def __init__(self, baseChannel, serverId=None, dcFileNames=None,
|
|
dcSuffix='AI', connectMethod=None, threadedNet=None):
|
|
AstronInternalRepository.__init__(
|
|
self, baseChannel, serverId=serverId, dcFileNames=dcFileNames,
|
|
dcSuffix=dcSuffix, connectMethod=connectMethod, threadedNet=threadedNet)
|
|
|
|
self.netMessenger.register(0, 'shardStatus')
|
|
self.netMessenger.register(1, 'queryShardStatus')
|
|
self.netMessenger.register(2, 'startInvasion')
|
|
self.netMessenger.register(3, 'stopInvasion')
|
|
|
|
def getAvatarIdFromSender(self):
|
|
return self.getMsgSender() & 0xFFFFFFFF
|
|
|
|
def getAccountIdFromSender(self):
|
|
return (self.getMsgSender()>>32) & 0xFFFFFFFF
|
|
|
|
def _isValidPlayerLocation(self, parentId, zoneId):
|
|
if zoneId < 1000 and zoneId != 1:
|
|
return False
|
|
|
|
return True
|