跳至主要內容

liteyuki.message.on

远野千束小于 1 分钟

func add_matcher()

源代码
def add_matcher(matcher: Matcher):
    for (i, m) in enumerate(_matcher_list):
        if m.priority < matcher.priority:
            _matcher_list.insert(i, matcher)
            break
    else:
        _matcher_list.append(matcher)

func on_message(rule: Rule = empty_rule, priority: int = 0, block: bool = False) -> Matcher

源代码
def on_message(rule: Rule=empty_rule, priority: int=0, block: bool=False) -> Matcher:
    matcher = Matcher(rule, priority, block)
    add_matcher(matcher)
    return matcher

func on_keywords(keywords: list[str] = empty_rule, rule = 0, priority: int = False) -> Matcher

源代码
def on_keywords(keywords: list[str], rule=empty_rule, priority: int=0, block: bool=False) -> Matcher:

    @Rule
    async def on_keywords_rule(event: MessageEvent):
        return any((keyword in event.raw_message for keyword in keywords))
    return on_message(on_keywords_rule & rule, priority, block)

var _matcher_list = []

  • 类型: list[Matcher]

var _queue = Queue()

  • 类型: Queue