本文整理汇总了Python中Event.Event.Event.attributes['data']['command']方法的典型用法代码示例。如果您正苦于以下问题:Python Event.attributes['data']['command']方法的具体用法?Python Event.attributes['data']['command']怎么用?Python Event.attributes['data']['command']使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Event.Event.Event
的用法示例。
在下文中一共展示了Event.attributes['data']['command']方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: execute
# 需要导入模块: from Event.Event import Event [as 别名]
# 或者: from Event.Event.Event import attributes['data']['command'] [as 别名]
def execute(self, source, args):
actor = source
words = args
roomID = actor.attributes['roomID']
room = Engine.RoomEngine.getRoom(roomID)
speakEvent = Event()
speakEvent.attributes['signature'] = 'actor_emoted'
speakEvent.attributes['data']['emoter'] = actor
speakEvent.attributes['data']['target'] = None
speakEvent.attributes['data']['room'] = room
speakEvent.attributes['data']['command'] = 'say'
if words == None or len(words) == 0:
speakEvent.attributes['data']['emoterText'] = 'Say what?'
speakEvent.attributes['data']['audienceText'] = None
else:
sentence = ''
for word in words:
sentence = '{} {}'.format(sentence, word)
speakEvent.attributes['data']['emoterText'] = 'You say, "{}".'.format(sentence[1:])
speakEvent.attributes['data']['audienceText'] = '{} says, "{}".'.format(actor.attributes['name'], sentence[1:])
Engine.RoomEngine.emitEvent(speakEvent)
示例2: insertCommand
# 需要导入模块: from Event.Event import Event [as 别名]
# 或者: from Event.Event.Event import attributes['data']['command'] [as 别名]
def insertCommand(self, command, args = None):
commandEvent = Event()
commandEvent.attributes['signature'] = 'execute_command'
commandEvent.attributes['data']['command'] = command
commandEvent.attributes['data']['args'] = args
commandEvent.attributes['data']['source'] = self
Engine.ActorEngine.emitEvent(commandEvent)
示例3: wander
# 需要导入模块: from Event.Event import Event [as 别名]
# 或者: from Event.Event.Event import attributes['data']['command'] [as 别名]
def wander(self):
from Event.Event import Event
import Engine.ActorEngine
commandEvent = Event()
commandEvent.attributes['signature'] = 'execute_command'
commandEvent.attributes['data']['command'] = 'go'
commandEvent.attributes['data']['args'] = 'n'
commandEvent.attributes['data']['source'] = self
Engine.ActorEngine.emitEvent(commandEvent)
示例4: transition
# 需要导入模块: from Event.Event import Event [as 别名]
# 或者: from Event.Event.Event import attributes['data']['command'] [as 别名]
def transition(self, event):
receiver = event.attributes['receiver']
actor = event.attributes['data']['actor']
if actor != receiver:
commandEvent = Event()
commandEvent.attributes['signature'] = 'execute_command'
commandEvent.attributes['data']['command'] = 'wave'
commandEvent.attributes['data']['args'] = actor.attributes['name']
commandEvent.attributes['data']['source'] = receiver
Engine.ActorEngine.emitEvent(commandEvent)
示例5: processInput
# 需要导入模块: from Event.Event import Event [as 别名]
# 或者: from Event.Event.Event import attributes['data']['command'] [as 别名]
def processInput(self, player, inputStr):
parsedInput = inputStr.split(' ')
if len(parsedInput) > 0:
cmd = parsedInput[0]
args = parsedInput[1:]
commandEvent = Event()
commandEvent.attributes['signature'] = 'execute_command'
commandEvent.attributes['data']['command'] = cmd
commandEvent.attributes['data']['args'] = args
commandEvent.attributes['data']['source'] = player
CommandEngine.receiveEvent(commandEvent)
示例6: executeCommand
# 需要导入模块: from Event.Event import Event [as 别名]
# 或者: from Event.Event.Event import attributes['data']['command'] [as 别名]
def executeCommand(self, command, args, popAfterExecute = False):
commandEvent = Event()
commandEvent.attributes['signature'] = 'execute_command'
commandEvent.attributes['data']['command'] = command
commandEvent.attributes['data']['args'] = args
commandEvent.attributes['data']['source'] = self.attributes['player']
if popAfterExecute:
player = self.attributes['player']
menuStack = player.attributes['menus']
if len(menuStack) > 1:
menuStack.pop()
Engine.ActorEngine.emitEvent(commandEvent)
示例7: execute
# 需要导入模块: from Event.Event import Event [as 别名]
# 或者: from Event.Event.Event import attributes['data']['command'] [as 别名]
def execute(self, source, args):
equipEvent = Event()
equipEvent.attributes['data']['actor'] = source
if args == None or len(args) == 0:
equipEvent.attributes['signature'] = 'received_feedback'
equipEvent.attributes['data']['feedback'] = 'Wear what?'
else:
if len(args) == 1:
args.append('')
equipEvent.attributes['signature'] = 'actor_attempted_item_equip'
equipEvent.attributes['data']['itemName'] = args[0]
equipEvent.attributes['data']['args'] = args[1:]
equipEvent.attributes['data']['command'] = 'wear'
Engine.ActorEngine.emitEvent(equipEvent)
示例8: processInput
# 需要导入模块: from Event.Event import Event [as 别名]
# 或者: from Event.Event.Event import attributes['data']['command'] [as 别名]
def processInput(self, player, inputStr):
parsedInput = inputStr.split(' ')
if len(parsedInput) > 0:
cmd = parsedInput[0]
args = parsedInput[1:]
commandEvent = Event()
if cmd != 'say' and cmd != 'select' and cmd != 'quit':
args = [cmd]
cmd = 'select'
commandEvent.attributes['signature'] = 'execute_command'
commandEvent.attributes['data']['command'] = cmd
commandEvent.attributes['data']['args'] = args
commandEvent.attributes['data']['source'] = player
self.emitEvent(commandEvent)