本文整理汇总了Python中CountryClubRoomSpecs类的典型用法代码示例。如果您正苦于以下问题:Python CountryClubRoomSpecs类的具体用法?Python CountryClubRoomSpecs怎么用?Python CountryClubRoomSpecs使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了CountryClubRoomSpecs类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: levelAnnounceGenerate
def levelAnnounceGenerate(self):
self.notify.debug('levelAnnounceGenerate')
DistributedLevel.DistributedLevel.levelAnnounceGenerate(self)
specModule = CountryClubRoomSpecs.getCountryClubRoomSpecModule(self.roomId)
roomSpec = LevelSpec.LevelSpec(specModule)
if __dev__:
typeReg = self.getCountryClubEntityTypeReg()
roomSpec.setEntityTypeReg(typeReg)
DistributedLevel.DistributedLevel.initializeLevel(self, roomSpec)
示例2: getReserveCogSpec
def getReserveCogSpec(self, cogId):
cogSpecModule = CountryClubRoomSpecs.getCogSpecModule(self.roomId)
return cogSpecModule.ReserveCogData[cogId]
示例3: getBattleCellSpec
def getBattleCellSpec(self, battleCellId):
cogSpecModule = CountryClubRoomSpecs.getCogSpecModule(self.roomId)
return cogSpecModule.BattleCells[battleCellId]
示例4: levelAnnounceGenerate
def levelAnnounceGenerate(self):
self.notify.debug('levelAnnounceGenerate')
DistributedLevel.DistributedLevel.levelAnnounceGenerate(self)
specModule = CountryClubRoomSpecs.getCountryClubRoomSpecModule(self.roomId)
roomSpec = LevelSpec.LevelSpec(specModule)
DistributedLevel.DistributedLevel.initializeLevel(self, roomSpec)