general: pain.
This commit is contained in:
parent
41cad484c4
commit
d27b25ab38
142 changed files with 709 additions and 3 deletions
5
otp/ai/DistributedBlackCatMgrAI.py
Normal file
5
otp/ai/DistributedBlackCatMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedBlackCatMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedBlackCatMgrAI')
|
5
otp/ai/MagicWordManagerAI.py
Normal file
5
otp/ai/MagicWordManagerAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class MagicWordManagerAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('MagicWordManagerAI')
|
5
otp/ai/TimeManagerAI.py
Normal file
5
otp/ai/TimeManagerAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class TimeManagerAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('TimeManagerAI')
|
5
otp/avatar/DistributedAvatarUD.py
Normal file
5
otp/avatar/DistributedAvatarUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class DistributedAvatarUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedAvatarUD')
|
5
otp/distributed/AccountUD.py
Normal file
5
otp/distributed/AccountUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class AccountUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('AccountUD')
|
5
otp/distributed/CentralLoggerUD.py
Normal file
5
otp/distributed/CentralLoggerUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class CentralLoggerUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('CentralLoggerUD')
|
5
otp/distributed/DistributedDistrictUD.py
Normal file
5
otp/distributed/DistributedDistrictUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class DistributedDistrictUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedDistrictUD')
|
5
otp/distributed/DistributedTestObjectAI.py
Normal file
5
otp/distributed/DistributedTestObjectAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedTestObjectAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedTestObjectAI')
|
5
otp/distributed/ObjectServerUD.py
Normal file
5
otp/distributed/ObjectServerUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class ObjectServerUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('ObjectServerUD')
|
5
otp/friends/AvatarFriendsManagerUD.py
Normal file
5
otp/friends/AvatarFriendsManagerUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class AvatarFriendsManagerUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('AvatarFriendsManagerUD')
|
5
otp/friends/FriendManagerAI.py
Normal file
5
otp/friends/FriendManagerAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class FriendManagerAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('FriendManagerAI')
|
5
otp/friends/GuildManagerUD.py
Normal file
5
otp/friends/GuildManagerUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class GuildManagerUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('GuildManagerUD')
|
5
otp/friends/PlayerFriendsManagerUD.py
Normal file
5
otp/friends/PlayerFriendsManagerUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class PlayerFriendsManagerUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('PlayerFriendsManagerUD')
|
5
otp/level/DistributedInteractiveEntityAI.py
Normal file
5
otp/level/DistributedInteractiveEntityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedInteractiveEntityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedInteractiveEntityAI')
|
|
@ -0,0 +1,8 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectGlobalUD import DistributedObjectGlobalUD
|
||||||
|
|
||||||
|
class AstronLoginManagerUD(DistributedObjectGlobalUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('AstronLoginManagerUD')
|
||||||
|
|
||||||
|
def requestLogin(self, playToken):
|
||||||
|
print playToken
|
|
@ -1,7 +1,35 @@
|
||||||
import __builtin__
|
import __builtin__
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
__all__ = ['describeException', 'pdir']
|
__all__ = ['enumerate', 'nonRepeatingRandomList', 'describeException', 'pdir']
|
||||||
|
|
||||||
|
if not hasattr(__builtin__, 'enumerate'):
|
||||||
|
def enumerate(L):
|
||||||
|
"""Returns (0, L[0]), (1, L[1]), etc., allowing this syntax:
|
||||||
|
for i, item in enumerate(L):
|
||||||
|
...
|
||||||
|
|
||||||
|
enumerate is a built-in feature in Python 2.3, which implements it
|
||||||
|
using an iterator. For now, we can use this quick & dirty
|
||||||
|
implementation that returns a list of tuples that is completely
|
||||||
|
constructed every time enumerate() is called.
|
||||||
|
"""
|
||||||
|
return zip(xrange(len(L)), L)
|
||||||
|
|
||||||
|
__builtin__.enumerate = enumerate
|
||||||
|
else:
|
||||||
|
enumerate = __builtin__.enumerate
|
||||||
|
|
||||||
|
def nonRepeatingRandomList(vals, max):
|
||||||
|
random.seed(time.time())
|
||||||
|
#first generate a set of random values
|
||||||
|
valueList=range(max)
|
||||||
|
finalVals=[]
|
||||||
|
for i in range(vals):
|
||||||
|
index=int(random.random()*len(valueList))
|
||||||
|
finalVals.append(valueList[index])
|
||||||
|
valueList.remove(valueList[index])
|
||||||
|
return finalVals
|
||||||
|
|
||||||
# class 'decorator' that records the stack at the time of creation
|
# class 'decorator' that records the stack at the time of creation
|
||||||
# be careful with this, it creates a StackTrace, and that can take a
|
# be careful with this, it creates a StackTrace, and that can take a
|
||||||
|
|
5
otp/snapshot/SnapshotDispatcherUD.py
Normal file
5
otp/snapshot/SnapshotDispatcherUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class SnapshotDispatcherUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('SnapshotDispatcherUD')
|
5
otp/snapshot/SnapshotRendererUD.py
Normal file
5
otp/snapshot/SnapshotRendererUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class SnapshotRendererUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('SnapshotRendererUD')
|
5
otp/status/StatusDatabaseUD.py
Normal file
5
otp/status/StatusDatabaseUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class StatusDatabaseUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('StatusDatabaseUD')
|
5
otp/uberdog/DistributedChatManagerUD.py
Normal file
5
otp/uberdog/DistributedChatManagerUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class DistributedChatManagerUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedChatManagerUD')
|
5
otp/uberdog/OtpAvatarManagerUD.py
Normal file
5
otp/uberdog/OtpAvatarManagerUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class OtpAvatarManagerUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('OtpAvatarManagerUD')
|
5
otp/uberdog/SpeedchatRelayUD.py
Normal file
5
otp/uberdog/SpeedchatRelayUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class SpeedchatRelayUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('SpeedchatRelayUD')
|
5
otp/web/SettingsMgrUD.py
Normal file
5
otp/web/SettingsMgrUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class SettingsMgrUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('SettingsMgrUD')
|
5
toontown/ai/DistributedBlackCatMgrAI.py
Normal file
5
toontown/ai/DistributedBlackCatMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedBlackCatMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedBlackCatMgrAI')
|
5
toontown/ai/DistributedGreenToonEffectMgrAI.py
Normal file
5
toontown/ai/DistributedGreenToonEffectMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedGreenToonEffectMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedGreenToonEffectMgrAI')
|
5
toontown/ai/DistributedHydrantZeroMgrAI.py
Normal file
5
toontown/ai/DistributedHydrantZeroMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedHydrantZeroMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedHydrantZeroMgrAI')
|
5
toontown/ai/DistributedMailboxZeroMgrAI.py
Normal file
5
toontown/ai/DistributedMailboxZeroMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedMailboxZeroMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedMailboxZeroMgrAI')
|
5
toontown/ai/DistributedPhaseEventMgrAI.py
Normal file
5
toontown/ai/DistributedPhaseEventMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPhaseEventMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPhaseEventMgrAI')
|
5
toontown/ai/DistributedPolarPlaceEffectMgrAI.py
Normal file
5
toontown/ai/DistributedPolarPlaceEffectMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPolarPlaceEffectMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPolarPlaceEffectMgrAI')
|
5
toontown/ai/DistributedResistanceEmoteMgrAI.py
Normal file
5
toontown/ai/DistributedResistanceEmoteMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedResistanceEmoteMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedResistanceEmoteMgrAI')
|
5
toontown/ai/DistributedScavengerHuntTargetAI.py
Normal file
5
toontown/ai/DistributedScavengerHuntTargetAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedScavengerHuntTargetAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedScavengerHuntTarget')
|
5
toontown/ai/DistributedSillyMeterMgrAI.py
Normal file
5
toontown/ai/DistributedSillyMeterMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedSillyMeterMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedSillyMeterMgrAI')
|
5
toontown/ai/DistributedTrashcanZeroMgrAI.py
Normal file
5
toontown/ai/DistributedTrashcanZeroMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedTrashcanZeroMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedTrashcanZeroMgrAI')
|
5
toontown/ai/DistributedTrickOrTreatTargetAI.py
Normal file
5
toontown/ai/DistributedTrickOrTreatTargetAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedTrickOrTreatTargetAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedTrickOrTreatTargetAI')
|
5
toontown/ai/DistributedWinterCarolingTargetAI.py
Normal file
5
toontown/ai/DistributedWinterCarolingTargetAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedWinterCarolingTargetAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedWinterCarolingTargetAI')
|
5
toontown/ai/NewsManagerAI.py
Normal file
5
toontown/ai/NewsManagerAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class NewsManagerAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('NewsManagerAI')
|
5
toontown/ai/ToontownMagicWordManagerAI.py
Normal file
5
toontown/ai/ToontownMagicWordManagerAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class ToontownMagicWordManagerAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('ToontownMagicWordManagerAI')
|
5
toontown/ai/WelcomeValleyManagerAI.py
Normal file
5
toontown/ai/WelcomeValleyManagerAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class WelcomeValleyManagerAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('WelcomeValleyManagerAI')
|
5
toontown/building/DistributedTrophyMgrAI.py
Normal file
5
toontown/building/DistributedTrophyMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedTrophyMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedTrophyMgrAI')
|
5
toontown/building/DistributedTutorialInteriorAI.py
Normal file
5
toontown/building/DistributedTutorialInteriorAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedTutorialInteriorAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedTutorialInteriorAI')
|
5
toontown/catalog/CatalogManagerAI.py
Normal file
5
toontown/catalog/CatalogManagerAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class CatalogManagerAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('CatalogManagerAI')
|
5
toontown/classicchars/DistributedFrankenDonaldAI.py
Normal file
5
toontown/classicchars/DistributedFrankenDonaldAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedFrankenDonaldAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedFrankenDonaldAI')
|
5
toontown/classicchars/DistributedJailbirdDaleAI.py
Normal file
5
toontown/classicchars/DistributedJailbirdDaleAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedJailbirdDaleAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedJailbirdDaleAI')
|
5
toontown/classicchars/DistributedPoliceChipAI.py
Normal file
5
toontown/classicchars/DistributedPoliceChipAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPoliceChipAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPoliceChipAI')
|
5
toontown/classicchars/DistributedSockHopDaisyAI.py
Normal file
5
toontown/classicchars/DistributedSockHopDaisyAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedSockHopDaisyAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedSockHopDaisyAI')
|
5
toontown/classicchars/DistributedSuperGoofyAI.py
Normal file
5
toontown/classicchars/DistributedSuperGoofyAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedSuperGoofyAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedSuperGoofyAI')
|
5
toontown/classicchars/DistributedVampireMickeyAI.py
Normal file
5
toontown/classicchars/DistributedVampireMickeyAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedVampireMickeyAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedVampireMickeyAI')
|
5
toontown/classicchars/DistributedWesternPlutoAI.py
Normal file
5
toontown/classicchars/DistributedWesternPlutoAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedWesternPlutoAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedWesternPlutoAI')
|
5
toontown/classicchars/DistributedWitchMinnieAI.py
Normal file
5
toontown/classicchars/DistributedWitchMinnieAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedWitchMinnieAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedWitchMinnieAI')
|
5
toontown/coderedemption/TTCodeRedemptionMgrUD.py
Normal file
5
toontown/coderedemption/TTCodeRedemptionMgrUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class TTCodeRedemptionMgrUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('TTCodeRedemptionMgrUD')
|
|
@ -6,7 +6,8 @@ from direct.fsm import ClassicFSM, State
|
||||||
from toontown.battle.BattleBase import *
|
from toontown.battle.BattleBase import *
|
||||||
import CogDisguiseGlobals
|
import CogDisguiseGlobals
|
||||||
from toontown.toonbase.ToontownBattleGlobals import getStageCreditMultiplier
|
from toontown.toonbase.ToontownBattleGlobals import getStageCreditMultiplier
|
||||||
from direct.showbase.PythonUtil import addListsByValue, enumerate
|
from direct.showbase.PythonUtil import addListsByValue
|
||||||
|
from otp.otpbase.PythonUtil import enumerate
|
||||||
|
|
||||||
class DistributedStageBattleAI(DistributedLevelBattleAI.DistributedLevelBattleAI):
|
class DistributedStageBattleAI(DistributedLevelBattleAI.DistributedLevelBattleAI):
|
||||||
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedStageBattleAI')
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedStageBattleAI')
|
||||||
|
|
5
toontown/distributed/ToontownDistrictAI.py
Normal file
5
toontown/distributed/ToontownDistrictAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class ToontownDistrictAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('ToontownDistrictAI')
|
5
toontown/distributed/ToontownDistrictStatsAI.py
Normal file
5
toontown/distributed/ToontownDistrictStatsAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class ToontownDistrictStatsAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('ToontownDistrictStatsAI')
|
|
@ -1,8 +1,10 @@
|
||||||
from direct.directnotify import DirectNotifyGlobal
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
from otp.distributed.OTPInternalRepository import OTPInternalRepository
|
from otp.distributed.OTPInternalRepository import OTPInternalRepository
|
||||||
|
from otp.distributed.OtpDoGlobals import *
|
||||||
|
|
||||||
class ToontownInternalRepository(OTPInternalRepository):
|
class ToontownInternalRepository(OTPInternalRepository):
|
||||||
notify = DirectNotifyGlobal.directNotify.newCategory('ToontownInternalRepository')
|
notify = DirectNotifyGlobal.directNotify.newCategory('ToontownInternalRepository')
|
||||||
|
GameGlobalsId = OTP_DO_ID_TOONTOWN
|
||||||
|
|
||||||
def __init__(self, baseChannel, serverId=None, dcFileNames=None, dcSuffix='AI', connectMethod=None, threadedNet=None):
|
def __init__(self, baseChannel, serverId=None, dcFileNames=None, dcSuffix='AI', connectMethod=None, threadedNet=None):
|
||||||
OTPInternalRepository.__init__(self, baseChannel, serverId, dcFileNames, dcSuffix, connectMethod, threadedNet)
|
OTPInternalRepository.__init__(self, baseChannel, serverId, dcFileNames, dcSuffix, connectMethod, threadedNet)
|
||||||
|
|
5
toontown/estate/DistributedAnimatedStatuaryAI.py
Normal file
5
toontown/estate/DistributedAnimatedStatuaryAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedAnimatedStatuaryAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedAnimatedStatuaryAI')
|
5
toontown/estate/DistributedBankAI.py
Normal file
5
toontown/estate/DistributedBankAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedBankAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedBankAI')
|
5
toontown/estate/DistributedBankMgrAI.py
Normal file
5
toontown/estate/DistributedBankMgrAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedBankMgrAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedBankMgrAI')
|
5
toontown/estate/DistributedChangingStatuaryAI.py
Normal file
5
toontown/estate/DistributedChangingStatuaryAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedChangingStatuaryAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedChangingStatuaryAI')
|
5
toontown/estate/DistributedClosetAI.py
Normal file
5
toontown/estate/DistributedClosetAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedClosetAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedClosetAI')
|
5
toontown/estate/DistributedEstateAI.py
Normal file
5
toontown/estate/DistributedEstateAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedEstateAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedEstateAI')
|
5
toontown/estate/DistributedFireworksCannonAI.py
Normal file
5
toontown/estate/DistributedFireworksCannonAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedFireworksCannonAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedFireworksCannonAI')
|
5
toontown/estate/DistributedFlowerAI.py
Normal file
5
toontown/estate/DistributedFlowerAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedFlowerAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedFlowerAI')
|
5
toontown/estate/DistributedFurnitureItemAI.py
Normal file
5
toontown/estate/DistributedFurnitureItemAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedFurnitureItemAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedFurnitureItemAI')
|
5
toontown/estate/DistributedFurnitureManagerAI.py
Normal file
5
toontown/estate/DistributedFurnitureManagerAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedFurnitureManagerAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedFurnitureManagerAI')
|
5
toontown/estate/DistributedGagTreeAI.py
Normal file
5
toontown/estate/DistributedGagTreeAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedGagTreeAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedGagTreeAI')
|
5
toontown/estate/DistributedGardenAI.py
Normal file
5
toontown/estate/DistributedGardenAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedGardenAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedGardenAI')
|
5
toontown/estate/DistributedGardenBoxAI.py
Normal file
5
toontown/estate/DistributedGardenBoxAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedGardenBoxAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedGardenBoxAI')
|
5
toontown/estate/DistributedGardenPlotAI.py
Normal file
5
toontown/estate/DistributedGardenPlotAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedGardenPlotAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedGardenPlotAI')
|
5
toontown/estate/DistributedHouseAI.py
Normal file
5
toontown/estate/DistributedHouseAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedHouseAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedHouseAI')
|
5
toontown/estate/DistributedHouseDoorAI.py
Normal file
5
toontown/estate/DistributedHouseDoorAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedHouseDoorAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedHouseDoorAI')
|
5
toontown/estate/DistributedHouseInteriorAI.py
Normal file
5
toontown/estate/DistributedHouseInteriorAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedHouseInteriorAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedHouseInteriorAI')
|
5
toontown/estate/DistributedLawnDecorAI.py
Normal file
5
toontown/estate/DistributedLawnDecorAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedLawnDecorAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedLawnDecorAI')
|
5
toontown/estate/DistributedMailboxAI.py
Normal file
5
toontown/estate/DistributedMailboxAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedMailboxAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedMailboxAI')
|
5
toontown/estate/DistributedPhoneAI.py
Normal file
5
toontown/estate/DistributedPhoneAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPhoneAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPhoneAI')
|
5
toontown/estate/DistributedPlantBaseAI.py
Normal file
5
toontown/estate/DistributedPlantBaseAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPlantBaseAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPlantBaseAI')
|
5
toontown/estate/DistributedStatuaryAI.py
Normal file
5
toontown/estate/DistributedStatuaryAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedStatuaryAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedStatuaryAI')
|
5
toontown/estate/DistributedTargetAI.py
Normal file
5
toontown/estate/DistributedTargetAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedTargetAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedTargetAI')
|
5
toontown/estate/DistributedToonStatuaryAI.py
Normal file
5
toontown/estate/DistributedToonStatuaryAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedToonStatuaryAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedToonStatuaryAI')
|
5
toontown/estate/DistributedTrunkAI.py
Normal file
5
toontown/estate/DistributedTrunkAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedTrunkAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedTrunkAI')
|
5
toontown/estate/EstateManagerAI.py
Normal file
5
toontown/estate/EstateManagerAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class EstateManagerAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('EstateManagerAI')
|
5
toontown/fishing/DistributedFishingPondAI.py
Normal file
5
toontown/fishing/DistributedFishingPondAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedFishingPondAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedFishingPondAI')
|
5
toontown/fishing/DistributedFishingTargetAI.py
Normal file
5
toontown/fishing/DistributedFishingTargetAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedFishingTargetAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedFishingTargetAI')
|
5
toontown/fishing/DistributedPondBingoManagerAI.py
Normal file
5
toontown/fishing/DistributedPondBingoManagerAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPondBingoManagerAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPondBingoManagerAI')
|
5
toontown/friends/TTPlayerFriendsManagerUD.py
Normal file
5
toontown/friends/TTPlayerFriendsManagerUD.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectUD import DistributedObjectUD
|
||||||
|
|
||||||
|
class TTPlayerFriendsManagerUD(DistributedObjectUD):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('TTPlayerFriendsManagerUD')
|
5
toontown/parties/DistributedPartyAI.py
Normal file
5
toontown/parties/DistributedPartyAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyAI')
|
5
toontown/parties/DistributedPartyActivityAI.py
Normal file
5
toontown/parties/DistributedPartyActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyActivityAI')
|
5
toontown/parties/DistributedPartyCannonAI.py
Normal file
5
toontown/parties/DistributedPartyCannonAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyCannonAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyCannonAI')
|
5
toontown/parties/DistributedPartyCannonActivityAI.py
Normal file
5
toontown/parties/DistributedPartyCannonActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyCannonActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyCannonActivityAI')
|
5
toontown/parties/DistributedPartyCatchActivityAI.py
Normal file
5
toontown/parties/DistributedPartyCatchActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyCatchActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyCatchActivityAI')
|
5
toontown/parties/DistributedPartyCogActivityAI.py
Normal file
5
toontown/parties/DistributedPartyCogActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyCogActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyCogActivityAI')
|
5
toontown/parties/DistributedPartyDance20ActivityAI.py
Normal file
5
toontown/parties/DistributedPartyDance20ActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyDance20ActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyDance20ActivityAI')
|
5
toontown/parties/DistributedPartyDanceActivityAI.py
Normal file
5
toontown/parties/DistributedPartyDanceActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyDanceActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyDanceActivityAI')
|
5
toontown/parties/DistributedPartyDanceActivityBaseAI.py
Normal file
5
toontown/parties/DistributedPartyDanceActivityBaseAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyDanceActivityBaseAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyDanceActivityBaseAI')
|
5
toontown/parties/DistributedPartyFireworksActivityAI.py
Normal file
5
toontown/parties/DistributedPartyFireworksActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyFireworksActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyFireworksActivityAI')
|
5
toontown/parties/DistributedPartyJukebox40ActivityAI.py
Normal file
5
toontown/parties/DistributedPartyJukebox40ActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyJukebox40ActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyJukebox40ActivityAI')
|
5
toontown/parties/DistributedPartyJukeboxActivityAI.py
Normal file
5
toontown/parties/DistributedPartyJukeboxActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyJukeboxActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyJukeboxActivityAI')
|
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyJukeboxActivityBaseAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyJukeboxActivityBaseAI')
|
5
toontown/parties/DistributedPartyTeamActivityAI.py
Normal file
5
toontown/parties/DistributedPartyTeamActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyTeamActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyTeamActivityAI')
|
5
toontown/parties/DistributedPartyTrampolineActivityAI.py
Normal file
5
toontown/parties/DistributedPartyTrampolineActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyTrampolineActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyTrampolineActivityAI')
|
5
toontown/parties/DistributedPartyTugOfWarActivityAI.py
Normal file
5
toontown/parties/DistributedPartyTugOfWarActivityAI.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from direct.directnotify import DirectNotifyGlobal
|
||||||
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||||||
|
|
||||||
|
class DistributedPartyTugOfWarActivityAI(DistributedObjectAI):
|
||||||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedPartyTugOfWarActivityAI')
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue