本文整理匯總了Python中eos.saveddata.module.Module.canHaveState方法的典型用法代碼示例。如果您正苦於以下問題:Python Module.canHaveState方法的具體用法?Python Module.canHaveState怎麽用?Python Module.canHaveState使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類eos.saveddata.module.Module
的用法示例。
在下文中一共展示了Module.canHaveState方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: Do
# 需要導入模塊: from eos.saveddata.module import Module [as 別名]
# 或者: from eos.saveddata.module.Module import canHaveState [as 別名]
def Do(self):
pyfalog.debug("Projecting fit ({0}) onto: {1}", self.fitID, self.itemID)
fit = eos.db.getFit(self.fitID)
item = eos.db.getItem(self.itemID, eager=("attributes", "group.category"))
try:
module = Module(item)
if not module.item.isType("projected"):
return False
except ValueError:
return False
module.state = State.ACTIVE
if not module.canHaveState(module.state, fit):
module.state = State.OFFLINE
fit.projectedModules.append(module)
eos.db.commit()
self.new_index = fit.projectedModules.index(module)
return True