2017-01-02 23:51:19 +08:00
|
|
|
import os
|
|
|
|
import importlib
|
2017-01-01 23:16:34 +08:00
|
|
|
|
|
|
|
from command import CommandRegistry
|
2017-01-02 23:51:19 +08:00
|
|
|
from commands import core
|
|
|
|
from nl_processor import parse_potential_commands
|
|
|
|
from little_shit import get_nl_processors_dir
|
|
|
|
from command import hub as cmdhub
|
2017-01-01 23:16:34 +08:00
|
|
|
|
2017-01-02 23:51:19 +08:00
|
|
|
|
|
|
|
def _init():
|
|
|
|
_load_processors()
|
|
|
|
|
|
|
|
|
|
|
|
__registry__ = cr = CommandRegistry(init_func=_init)
|
2017-01-01 23:16:34 +08:00
|
|
|
|
|
|
|
|
|
|
|
@cr.register('process')
|
|
|
|
@cr.restrict(full_command_only=True)
|
2017-01-03 01:06:11 +08:00
|
|
|
def process(args_text, ctx_msg, internal=False):
|
|
|
|
sentence = args_text.strip()
|
2017-01-02 23:51:19 +08:00
|
|
|
potential_commands = parse_potential_commands(sentence)
|
|
|
|
potential_commands = sorted(filter(lambda x: x[0] > 60, potential_commands), key=lambda x: x[0], reverse=True)
|
|
|
|
if len(potential_commands) > 0:
|
|
|
|
most_possible_cmd = potential_commands[0]
|
2017-01-03 14:48:45 +08:00
|
|
|
core.echo(
|
|
|
|
'识别出最可能的等价命令:\n' + ' '.join((most_possible_cmd[1], most_possible_cmd[2])),
|
|
|
|
ctx_msg,
|
|
|
|
internal
|
|
|
|
)
|
2017-01-02 23:51:19 +08:00
|
|
|
ctx_msg['parsed_data'] = most_possible_cmd[3]
|
|
|
|
cmdhub.call(most_possible_cmd[1], most_possible_cmd[2], ctx_msg)
|
|
|
|
else:
|
2017-01-03 01:06:11 +08:00
|
|
|
if ctx_msg.get('from_voice'):
|
|
|
|
core.echo('暂时无法理解你的意思,下面将发送图灵机器人的回复……', ctx_msg, internal)
|
|
|
|
core.tuling123(sentence, ctx_msg, internal)
|
|
|
|
else:
|
|
|
|
core.echo('暂时无法理解你的意思。\n'
|
|
|
|
'由于自然语言识别还非常不完善,建议使用命令来精确控制我。\n'
|
|
|
|
'如需帮助请发送「使用帮助」。', ctx_msg, internal)
|
2017-01-02 23:51:19 +08:00
|
|
|
|
|
|
|
|
|
|
|
def _load_processors():
|
|
|
|
processor_mod_files = filter(
|
|
|
|
lambda filename: filename.endswith('.py') and not filename.startswith('_'),
|
|
|
|
os.listdir(get_nl_processors_dir())
|
|
|
|
)
|
|
|
|
command_mods = [os.path.splitext(file)[0] for file in processor_mod_files]
|
|
|
|
for mod_name in command_mods:
|
|
|
|
importlib.import_module('nl_processors.' + mod_name)
|