2010-09-04 09:53:11 -05:00
|
|
|
"""
|
|
|
|
MegaHAL - MegaHAL bot for IRC
|
|
|
|
Copyright (C) 2010 Brian S. Stephan
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
|
|
|
2010-10-09 20:37:15 -05:00
|
|
|
from ConfigParser import NoOptionError
|
2011-01-06 00:14:16 -06:00
|
|
|
import mh_python
|
2010-09-04 09:53:11 -05:00
|
|
|
import os
|
|
|
|
import re
|
|
|
|
|
|
|
|
from extlib import irclib
|
|
|
|
|
|
|
|
from Module import Module
|
|
|
|
|
|
|
|
class MegaHAL(Module):
|
2011-01-07 11:23:46 -06:00
|
|
|
|
2010-09-04 09:53:11 -05:00
|
|
|
"""Have an annoying, dumb, and hilarious chatterbot on IRC."""
|
|
|
|
|
2011-01-07 11:24:38 -06:00
|
|
|
def priority(self):
|
|
|
|
return 95
|
|
|
|
|
migrate some code that became pivotal to the bot into DrBotIRC.
this is a big change. DrBotIrc is now in charge of module loading
and unloading, aliases, and recursion. the Alias module is no more,
and a bunch of functionality was moved out of IrcAdmin, including
also config file saving, the sigint handler, and quitting the bot.
additionally, a lot of stuff got caught in the wake. dr.botzo.py
is simpler now, and lets DrBotIRC do the dynamic loading stuff.
Module.__init__ changed, modules no longer get modlist and instead
get a reference to the DrBotIRC object. IrcAdmin still has the same
exposed methods, but now calls out to DrBotIRC to achieve some of
them.
naturally, a recursion/alias rewrite was included with this change.
it is clearer now (i think), but probably brittle somewhere.
additionally, currently any module that has registered a pubmsg
handler can potentially fire more than once on one input (without
recursion). this may be the next thing to fix. do() may need to
be split, or maybe it's time to stop having modules deal with
pubmsg/privmsg entirely. need to decide.
WEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
2011-01-07 17:38:26 -06:00
|
|
|
def __init__(self, irc, config, server):
|
2011-01-07 11:23:46 -06:00
|
|
|
"""Upon creation, open the MegaHAL brain and get ready for doing actual stuff."""
|
2010-09-04 09:53:11 -05:00
|
|
|
|
migrate some code that became pivotal to the bot into DrBotIRC.
this is a big change. DrBotIrc is now in charge of module loading
and unloading, aliases, and recursion. the Alias module is no more,
and a bunch of functionality was moved out of IrcAdmin, including
also config file saving, the sigint handler, and quitting the bot.
additionally, a lot of stuff got caught in the wake. dr.botzo.py
is simpler now, and lets DrBotIRC do the dynamic loading stuff.
Module.__init__ changed, modules no longer get modlist and instead
get a reference to the DrBotIRC object. IrcAdmin still has the same
exposed methods, but now calls out to DrBotIRC to achieve some of
them.
naturally, a recursion/alias rewrite was included with this change.
it is clearer now (i think), but probably brittle somewhere.
additionally, currently any module that has registered a pubmsg
handler can potentially fire more than once on one input (without
recursion). this may be the next thing to fix. do() may need to
be split, or maybe it's time to stop having modules deal with
pubmsg/privmsg entirely. need to decide.
WEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE
2011-01-07 17:38:26 -06:00
|
|
|
Module.__init__(self, irc, config, server)
|
2010-09-04 09:53:11 -05:00
|
|
|
|
2011-01-08 00:31:19 -06:00
|
|
|
mh_python.initbrain()
|
|
|
|
|
rewrite recursion/alias code for the 500th time.
more of a moving of the code, actually, it now exists in (an overridden)
_handle_event, so that recursions happen against irc events directly,
rather than an already partially interpreted object.
with this change, modules don't need to implement do() nor do we have a
need for the internal_bus, which was doing an additional walk of the
modules after the irc event was already handled and turned into text. now
the core event handler does the recursion scans.
to support this, we bring back the old replypath trick and use it again,
so we know when to send a privmsg reply and when to return text so that
it may be chained in recursion. this feels old hat by now, but if you
haven't been following along, you should really look at the diff.
that's the meat of the change. the rest is updating modules to use
self.reply() and reimplementing (un)register_handlers where appropriate
2011-02-17 01:08:45 -06:00
|
|
|
def register_handlers(self):
|
2011-01-08 00:31:19 -06:00
|
|
|
"""Handle pubmsg/privmsg, so we can learn only from IRC events."""
|
|
|
|
|
rewrite recursion/alias code for the 500th time.
more of a moving of the code, actually, it now exists in (an overridden)
_handle_event, so that recursions happen against irc events directly,
rather than an already partially interpreted object.
with this change, modules don't need to implement do() nor do we have a
need for the internal_bus, which was doing an additional walk of the
modules after the irc event was already handled and turned into text. now
the core event handler does the recursion scans.
to support this, we bring back the old replypath trick and use it again,
so we know when to send a privmsg reply and when to return text so that
it may be chained in recursion. this feels old hat by now, but if you
haven't been following along, you should really look at the diff.
that's the meat of the change. the rest is updating modules to use
self.reply() and reimplementing (un)register_handlers where appropriate
2011-02-17 01:08:45 -06:00
|
|
|
self.server.add_global_handler('pubmsg', self.on_pub_or_privmsg, self.priority())
|
|
|
|
self.server.add_global_handler('privmsg', self.on_pub_or_privmsg, self.priority())
|
2011-01-08 00:14:11 -06:00
|
|
|
self.server.add_global_handler('pubmsg', self.learn_from_irc_event)
|
|
|
|
self.server.add_global_handler('privmsg', self.learn_from_irc_event)
|
|
|
|
|
2011-01-08 00:31:19 -06:00
|
|
|
def unregister_handlers(self):
|
rewrite recursion/alias code for the 500th time.
more of a moving of the code, actually, it now exists in (an overridden)
_handle_event, so that recursions happen against irc events directly,
rather than an already partially interpreted object.
with this change, modules don't need to implement do() nor do we have a
need for the internal_bus, which was doing an additional walk of the
modules after the irc event was already handled and turned into text. now
the core event handler does the recursion scans.
to support this, we bring back the old replypath trick and use it again,
so we know when to send a privmsg reply and when to return text so that
it may be chained in recursion. this feels old hat by now, but if you
haven't been following along, you should really look at the diff.
that's the meat of the change. the rest is updating modules to use
self.reply() and reimplementing (un)register_handlers where appropriate
2011-02-17 01:08:45 -06:00
|
|
|
self.server.remove_global_handler('pubmsg', self.on_pub_or_privmsg)
|
|
|
|
self.server.remove_global_handler('privmsg', self.on_pub_or_privmsg)
|
2011-01-08 00:31:19 -06:00
|
|
|
self.server.remove_global_handler('pubmsg', self.learn_from_irc_event)
|
|
|
|
self.server.remove_global_handler('privmsg', self.learn_from_irc_event)
|
2010-10-09 20:37:15 -05:00
|
|
|
|
2011-01-06 00:28:50 -06:00
|
|
|
def save(self):
|
2011-01-07 11:23:46 -06:00
|
|
|
"""Sync the megahal brain."""
|
2011-01-06 00:28:50 -06:00
|
|
|
mh_python.cleanup()
|
|
|
|
|
2011-01-08 00:14:11 -06:00
|
|
|
def learn_from_irc_event(self, connection, event):
|
|
|
|
"""Learn text when an irc event happens."""
|
2011-01-08 00:26:18 -06:00
|
|
|
what = ''.join(event.arguments()[0])
|
2011-01-08 00:14:11 -06:00
|
|
|
mh_python.learn(what)
|
|
|
|
|
2011-01-07 23:09:07 -06:00
|
|
|
def do(self, connection, event, nick, userhost, what, admin_unlocked):
|
2011-01-08 00:14:11 -06:00
|
|
|
"""Say something on IRC if the bot is being addressed."""
|
2010-09-04 09:53:11 -05:00
|
|
|
|
2011-01-06 17:15:57 -06:00
|
|
|
# i think this megahal module is corrupting the object while walking it,
|
|
|
|
# so give it a stupid copy of the string. stupid stupid stupid.
|
|
|
|
line = ''.join(what)
|
2010-09-04 09:53:11 -05:00
|
|
|
reply = ""
|
|
|
|
append_nick = False
|
|
|
|
|
|
|
|
if re.search(connection.get_nickname(), line, re.IGNORECASE) is not None:
|
|
|
|
addressed_pattern = '^' + connection.get_nickname() + '[:,]\s+'
|
|
|
|
addressed_re = re.compile(addressed_pattern)
|
2011-01-06 22:26:24 -06:00
|
|
|
if addressed_re.match(what):
|
2010-09-04 09:53:11 -05:00
|
|
|
line = addressed_re.sub('', line)
|
|
|
|
append_nick = True
|
|
|
|
|
2011-01-06 00:14:16 -06:00
|
|
|
reply = mh_python.doreply(line)
|
2011-01-07 20:37:24 -06:00
|
|
|
elif re.search('^!megahal$', line, re.IGNORECASE) is not None:
|
2011-01-06 00:14:16 -06:00
|
|
|
reply = mh_python.doreply('')
|
2010-09-04 09:53:11 -05:00
|
|
|
|
|
|
|
if reply is not "":
|
|
|
|
if append_nick:
|
|
|
|
reply = nick + ": " + reply
|
rewrite recursion/alias code for the 500th time.
more of a moving of the code, actually, it now exists in (an overridden)
_handle_event, so that recursions happen against irc events directly,
rather than an already partially interpreted object.
with this change, modules don't need to implement do() nor do we have a
need for the internal_bus, which was doing an additional walk of the
modules after the irc event was already handled and turned into text. now
the core event handler does the recursion scans.
to support this, we bring back the old replypath trick and use it again,
so we know when to send a privmsg reply and when to return text so that
it may be chained in recursion. this feels old hat by now, but if you
haven't been following along, you should really look at the diff.
that's the meat of the change. the rest is updating modules to use
self.reply() and reimplementing (un)register_handlers where appropriate
2011-02-17 01:08:45 -06:00
|
|
|
return self.reply(connection, event, reply)
|
2010-09-04 09:53:11 -05:00
|
|
|
|
|
|
|
# vi:tabstop=4:expandtab:autoindent
|
|
|
|
# kate: indent-mode python;indent-width 4;replace-tabs on;
|