本文整理汇总了Python中messenger_common_chat2.MESSENGER_ACTION_IDS.battleChatCommandFromActionID方法的典型用法代码示例。如果您正苦于以下问题:Python MESSENGER_ACTION_IDS.battleChatCommandFromActionID方法的具体用法?Python MESSENGER_ACTION_IDS.battleChatCommandFromActionID怎么用?Python MESSENGER_ACTION_IDS.battleChatCommandFromActionID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类messenger_common_chat2.MESSENGER_ACTION_IDS
的用法示例。
在下文中一共展示了MESSENGER_ACTION_IDS.battleChatCommandFromActionID方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _getCommandVehMarker
# 需要导入模块: from messenger_common_chat2 import MESSENGER_ACTION_IDS [as 别名]
# 或者: from messenger_common_chat2.MESSENGER_ACTION_IDS import battleChatCommandFromActionID [as 别名]
def _getCommandVehMarker(self):
command = _ACTIONS.battleChatCommandFromActionID(self._commandID)
result = ''
if not command:
LOG_ERROR('Command is not found', self._commandID)
else:
result = command.vehMarker
return result
示例2: _getCommandVehMarker
# 需要导入模块: from messenger_common_chat2 import MESSENGER_ACTION_IDS [as 别名]
# 或者: from messenger_common_chat2.MESSENGER_ACTION_IDS import battleChatCommandFromActionID [as 别名]
def _getCommandVehMarker(self):
command = _ACTIONS.battleChatCommandFromActionID(self._commandID)
result = ""
if not command:
LOG_ERROR("Command is not found", self._commandID)
elif command.vehMarker is not None:
result = command.vehMarker
return result
示例3: createCoolDownError
# 需要导入模块: from messenger_common_chat2 import MESSENGER_ACTION_IDS [as 别名]
# 或者: from messenger_common_chat2.MESSENGER_ACTION_IDS import battleChatCommandFromActionID [as 别名]
def createCoolDownError(actionID):
command = _ACTIONS.adminChatCommandFromActionID(actionID)
if command:
return _AdminCommandCoolDownError()
command = _ACTIONS.battleChatCommandFromActionID(actionID)
if command:
return _BattleCommandCoolDownError(command)
if _ACTIONS.isRateLimitedBroadcastFromClient(actionID):
coolDown = _LIMITS.BROADCASTS_FROM_CLIENT_COOLDOWN_SEC
elif actionID == _ACTIONS.FIND_USERS_BY_NAME:
coolDown = _LIMITS.FIND_USERS_BY_NAME_REQUEST_COOLDOWN_SEC
elif actionID == _ACTIONS.GET_VOIP_CREDENTIALS:
coolDown = _LIMITS.VOIP_CREDENTIALS_REQUEST_COOLDOWN_SEC
else:
coolDown = None
return _ActionCoolDownError(actionID, coolDown)
示例4: getCommandText
# 需要导入模块: from messenger_common_chat2 import MESSENGER_ACTION_IDS [as 别名]
# 或者: from messenger_common_chat2.MESSENGER_ACTION_IDS import battleChatCommandFromActionID [as 别名]
def getCommandText(self):
command = _ACTIONS.battleChatCommandFromActionID(self._commandID)
if not command:
LOG_ERROR('Command is not found', self._commandID)
return ''
i18nKey = I18N_INGAME_GUI.chat_shortcuts(command.msgText)
if i18nKey is not None:
if self.isOnMinimap():
text = i18n.makeString(i18nKey, cellName=self._getCellName())
elif self.hasTarget():
text = i18n.makeString(i18nKey, target=self._getTarget())
else:
text = i18n.makeString(i18nKey, **self._protoData)
else:
text = command.msgText
return text