capture_give: add new plugin

master
dece 2 years ago
parent f9dca68fb0
commit dd3ebcaa35

@ -46,6 +46,11 @@
"reply": "{target} captured {num} things : {things}",
"empty_reply": "{target} did not capture anything yet!"
},
"capturegive": {
"commands": ["give"],
"content_regex": "my (?P<thing>\\S+) to (?P<person>\\S+)",
"no_such_thing_reply": "You don't have such {thing}."
},
"common": {
"command_suffix": "please",
"handling_conditions": {

@ -0,0 +1,69 @@
import re
import time
from edmond.plugin import Plugin
class CaptureGivePlugin(Plugin):
REQUIRED_CONFIGS = ["commands", "content_regex", "no_such_thing_reply"]
def __init__(self, bot):
super().__init__(bot)
self._content_re = None
@property
def content_re(self):
if self._content_re is None:
self._content_re = re.compile(self.config["content_regex"])
return self._content_re
def on_welcome(self, _):
if not self.bot.get_plugin("capture"):
self.bot.log_w("Capture plugin is not available.")
self.is_ready = False
def on_pubmsg(self, event):
if not self.should_handle_command(event.arguments[0]):
return False
# "give" command.
if self.command.ident == self.config["commands"][0]:
content = self.command.raw[len(self.command.match):].strip()
match = self.content_re.match(content)
if not match:
return False
groups = match.groupdict()
if any(k not in groups for k in ("thing", "person")):
return False
thing = groups["thing"]
person = groups["person"]
# Check the sender has the thing they attempt to give.
collections = self.get_storage_value(
"collections",
default={},
ns="capture"
)
source = event.source.nick
source_collection = collections.get(source, [])
if thing not in source_collection:
reply = self.config["no_such_thing_reply"].format(thing=thing)
self.bot.say(event.target, reply)
return True
source_collection.remove(thing)
collections[source] = source_collection
target_collection = collections.get(person, [])
target_collection.append(thing)
collections[person] = target_collection
self.set_storage_value("collections", collections, ns="capture")
dance_text_1 = f"[{source}] {thing}<(OvO<) [{person}]"
self.bot.say(event.target, dance_text_1)
time.sleep(1)
dance_text_2 = f"[{source}] (>OvO)>{thing} [{person}]"
self.bot.say(event.target, dance_text_2)
return True
Loading…
Cancel
Save