本文整理汇总了Python中core.formation.Formation.open_socket方法的典型用法代码示例。如果您正苦于以下问题:Python Formation.open_socket方法的具体用法?Python Formation.open_socket怎么用?Python Formation.open_socket使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core.formation.Formation
的用法示例。
在下文中一共展示了Formation.open_socket方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: trig
# 需要导入模块: from core.formation import Formation [as 别名]
# 或者: from core.formation.Formation import open_socket [as 别名]
def trig(self, char_level, stage_id=None):
try:
s = MongoStage.objects.get(id=self.char_id)
passed_stages = s.stages.keys()
except DoesNotExist:
passed_stages = []
passed_stages.append('0')
if stage_id:
passed_stages.append(str(stage_id))
opened_funcs = []
for func_id in self.mf.freeze[:]:
try:
this_func = FUNCTION_DEFINE[func_id]
except KeyError:
self.mf.freeze.remove(func_id)
continue
if char_level >= this_func.char_level and str(this_func.stage_id) in passed_stages:
# OPEN
self.mf.freeze.remove(func_id)
opened_funcs.append(func_id)
self.mf.save()
f = Formation(self.char_id)
for of in opened_funcs[:]:
if of in FUNC_SOCKET_AMOUNT_TABLE:
opened = f.open_socket(FUNC_SOCKET_AMOUNT_TABLE[of])
if not opened:
opened_funcs.remove(of)
return opened_funcs