2004-01-07 17:00:03 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
###
|
2004-08-23 15:14:06 +02:00
|
|
|
# Copyright (c) 2002-2004, Jeremiah Fincher
|
2004-01-07 17:00:03 +01:00
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions are met:
|
|
|
|
#
|
|
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
# this list of conditions, and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# * Neither the name of the author of this software nor the name of
|
|
|
|
# contributors to this software may be used to endorse or promote products
|
|
|
|
# derived from this software without specific prior written consent.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
###
|
|
|
|
|
|
|
|
"""
|
2004-01-08 04:12:14 +01:00
|
|
|
Provides numerous filters, and a command (outfilter) to set them as filters on
|
|
|
|
the output of the bot.
|
2004-01-07 17:00:03 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
__revision__ = "$Id$"
|
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.plugins as plugins
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
import re
|
|
|
|
import string
|
|
|
|
import random
|
2004-07-22 21:10:30 +02:00
|
|
|
import itertools
|
2004-01-07 17:00:03 +01:00
|
|
|
|
2004-07-24 07:18:26 +02:00
|
|
|
import supybot.conf as conf
|
|
|
|
import supybot.utils as utils
|
|
|
|
import supybot.ircmsgs as ircmsgs
|
|
|
|
import supybot.ircutils as ircutils
|
|
|
|
import supybot.privmsgs as privmsgs
|
|
|
|
import supybot.callbacks as callbacks
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
class MyFilterProxy(object):
|
2004-01-08 04:12:14 +01:00
|
|
|
def reply(self, s):
|
2004-01-07 17:00:03 +01:00
|
|
|
self.s = s
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2004-01-07 17:00:03 +01:00
|
|
|
class Filter(callbacks.Privmsg):
|
2004-07-20 07:26:52 +02:00
|
|
|
"""This plugin offers several commands which transform text in some way.
|
|
|
|
It also provides the capability of using such commands to 'filter' the
|
|
|
|
output of the bot -- for instance, you could make everything the bot says
|
2004-08-19 01:15:27 +02:00
|
|
|
be in leetspeak, or Morse code, or any number of other kinds of filters.
|
2004-07-20 07:26:52 +02:00
|
|
|
Not very useful, but definitely quite fun :)"""
|
2004-01-07 17:00:03 +01:00
|
|
|
def __init__(self):
|
|
|
|
self.outFilters = ircutils.IrcDict()
|
|
|
|
callbacks.Privmsg.__init__(self)
|
|
|
|
|
|
|
|
def outFilter(self, irc, msg):
|
|
|
|
if msg.command == 'PRIVMSG':
|
|
|
|
if msg.args[0] in self.outFilters:
|
|
|
|
if ircmsgs.isAction(msg):
|
|
|
|
s = ircmsgs.unAction(msg)
|
|
|
|
else:
|
|
|
|
s = msg.args[1]
|
|
|
|
methods = self.outFilters[msg.args[0]]
|
|
|
|
for filtercommand in methods:
|
|
|
|
myIrc = MyFilterProxy()
|
|
|
|
filtercommand(myIrc, msg, [s])
|
|
|
|
s = myIrc.s
|
|
|
|
if ircmsgs.isAction(msg):
|
|
|
|
msg = ircmsgs.action(msg.args[0], s)
|
|
|
|
else:
|
|
|
|
msg = ircmsgs.IrcMsg(msg=msg, args=(msg.args[0], s))
|
|
|
|
return msg
|
|
|
|
|
|
|
|
_filterCommands = ['jeffk', 'leet', 'rot13', 'hexlify', 'binary', 'lithp',
|
2004-02-06 17:30:35 +01:00
|
|
|
'scramble', 'morse', 'reverse', 'colorize', 'squish',
|
2004-07-29 12:47:40 +02:00
|
|
|
'supa1337', 'colorstrip', 'aol', 'rainbow']
|
2004-01-07 17:00:03 +01:00
|
|
|
def outfilter(self, irc, msg, args, channel):
|
|
|
|
"""[<channel>] [<command>]
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2004-01-07 17:00:03 +01:00
|
|
|
Sets the outFilter of this plugin to be <command>. If no command is
|
|
|
|
given, unsets the outFilter. <channel> is only necessary if the
|
|
|
|
message isn't sent in the channel itself.
|
|
|
|
"""
|
|
|
|
command = privmsgs.getArgs(args, required=0, optional=1)
|
|
|
|
if command:
|
|
|
|
command = callbacks.canonicalName(command)
|
|
|
|
if command in self._filterCommands:
|
|
|
|
method = getattr(self, command)
|
|
|
|
self.outFilters.setdefault(channel, []).append(method)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.replySuccess()
|
2004-01-07 17:00:03 +01:00
|
|
|
else:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('That\'s not a valid filter command.')
|
2004-01-07 17:00:03 +01:00
|
|
|
else:
|
|
|
|
self.outFilters[channel] = []
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.replySuccess()
|
2004-01-07 17:00:03 +01:00
|
|
|
outfilter = privmsgs.checkChannelCapability(outfilter, 'op')
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2004-01-07 17:00:03 +01:00
|
|
|
def squish(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Removes all the spaces from <text>.
|
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
|
|
|
text = ''.join(text.split())
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(text)
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
def binary(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Returns the binary representation of <text>.
|
|
|
|
"""
|
|
|
|
L = []
|
|
|
|
for c in privmsgs.getArgs(args):
|
|
|
|
LL = []
|
|
|
|
i = ord(c)
|
|
|
|
counter = 8
|
|
|
|
while i:
|
|
|
|
counter -= 1
|
|
|
|
if i & 1:
|
|
|
|
LL.append('1')
|
|
|
|
else:
|
|
|
|
LL.append('0')
|
|
|
|
i >>= 1
|
|
|
|
while counter:
|
|
|
|
LL.append('0')
|
|
|
|
counter -= 1
|
|
|
|
LL.reverse()
|
|
|
|
L.extend(LL)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(''.join(L))
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
def hexlify(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Returns a hexstring from the given string; a hexstring is a string
|
|
|
|
composed of the hexadecimal value of each character in the string
|
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(text.encode('hex_codec'))
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
def unhexlify(self, irc, msg, args):
|
|
|
|
"""<hexstring>
|
|
|
|
|
|
|
|
Returns the string corresponding to <hexstring>. Obviously,
|
|
|
|
<hexstring> must be a string of hexadecimal digits.
|
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
|
|
|
try:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(text.decode('hex_codec'))
|
2004-01-07 17:00:03 +01:00
|
|
|
except TypeError:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.error('Invalid input.')
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
def rot13(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Rotates <text> 13 characters to the right in the alphabet. Rot13 is
|
|
|
|
commonly used for text that simply needs to be hidden from inadvertent
|
|
|
|
reading by roaming eyes, since it's easily reversible.
|
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(text.encode('rot13'))
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
def lithp(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Returns the lisping version of <text>
|
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
|
|
|
text = text.replace('sh', 'th')
|
|
|
|
text = text.replace('SH', 'TH')
|
2004-04-15 08:36:34 +02:00
|
|
|
text = text.replace('Sh', 'Th')
|
2004-01-07 17:00:03 +01:00
|
|
|
text = text.replace('ss', 'th')
|
|
|
|
text = text.replace('SS', 'TH')
|
|
|
|
text = text.replace('s', 'th')
|
|
|
|
text = text.replace('z', 'th')
|
|
|
|
text = text.replace('S', 'Th')
|
|
|
|
text = text.replace('Z', 'Th')
|
|
|
|
text = text.replace('x', 'kth')
|
|
|
|
text = text.replace('X', 'KTH')
|
|
|
|
text = text.replace('cce', 'kth')
|
|
|
|
text = text.replace('CCE', 'KTH')
|
|
|
|
text = text.replace('tion', 'thion')
|
|
|
|
text = text.replace('TION', 'THION')
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(text)
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
_leettrans = string.maketrans('oOaAeElBTiIts', '004433187!1+5')
|
2004-02-06 17:30:35 +01:00
|
|
|
_leetres = [(re.compile(r'\b(?:(?:[yY][o0O][oO0uU])|u)\b'), 'j00'),
|
2004-01-07 17:00:03 +01:00
|
|
|
(re.compile(r'fear'), 'ph33r'),
|
|
|
|
(re.compile(r'[aA][tT][eE]'), '8'),
|
|
|
|
(re.compile(r'[aA][tT]'), '@'),
|
|
|
|
(re.compile(r'[sS]\b'), 'z'),
|
2004-02-06 17:30:35 +01:00
|
|
|
(re.compile(r'x'), '><'),]
|
2004-01-07 17:00:03 +01:00
|
|
|
def leet(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Returns the l33tspeak version of <text>
|
|
|
|
"""
|
|
|
|
s = privmsgs.getArgs(args)
|
|
|
|
for (r, sub) in self._leetres:
|
|
|
|
s = re.sub(r, sub, s)
|
|
|
|
s = s.translate(self._leettrans)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(s)
|
2004-01-07 17:00:03 +01:00
|
|
|
|
2004-02-06 17:30:35 +01:00
|
|
|
_supaleetreplacers = [('xX', '><'), ('kK', '|<'), ('rR', '|2'),
|
|
|
|
('hH', '|-|'), ('L', '|_'), ('uU', '|_|'),
|
|
|
|
('O', '()'), ('nN', '|\\|'), ('mM', '/\\/\\'),
|
|
|
|
('G', '6'), ('Ss', '$'), ('i', ';'), ('aA', '/-\\'),
|
|
|
|
('eE', '3'), ('t', '+'), ('T', '7'), ('l', '1'),
|
|
|
|
('D', '|)'), ('B', '|3'), ('I', ']['), ('Vv', '\\/'),
|
|
|
|
('wW', '\\/\\/'), ('d', 'c|'), ('b', '|>'),
|
2004-07-21 21:36:35 +02:00
|
|
|
('c', '<'), ('h', '|n'),]
|
2004-02-06 17:30:35 +01:00
|
|
|
def supa1337(self, irc, msg, args):
|
2004-02-08 10:25:55 +01:00
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Replies with an especially k-rad translation of <text>.
|
|
|
|
"""
|
2004-02-06 17:30:35 +01:00
|
|
|
s = privmsgs.getArgs(args)
|
|
|
|
for (r, sub) in self._leetres:
|
|
|
|
s = re.sub(r, sub, s)
|
|
|
|
for (letters, replacement) in self._supaleetreplacers:
|
|
|
|
for letter in letters:
|
|
|
|
s = s.replace(letter, replacement)
|
|
|
|
irc.reply(s)
|
|
|
|
|
2004-01-09 00:03:48 +01:00
|
|
|
_scrambleRe = re.compile(r'(?:\b|(?![a-zA-Z]))([a-zA-Z])([a-zA-Z]*)'
|
2004-01-07 17:00:03 +01:00
|
|
|
r'([a-zA-Z])(?:\b|(?![a-zA-Z]))')
|
|
|
|
def scramble(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Replies with a string where each word is scrambled; i.e., each internal
|
|
|
|
letter (that is, all letters but the first and last) are shuffled.
|
|
|
|
"""
|
|
|
|
def _subber(m):
|
|
|
|
L = list(m.group(2))
|
|
|
|
random.shuffle(L)
|
|
|
|
return '%s%s%s' % (m.group(1), ''.join(L), m.group(3))
|
|
|
|
text = privmsgs.getArgs(args)
|
|
|
|
s = self._scrambleRe.sub(_subber, text)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(s)
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
_code = {
|
|
|
|
"A" : ".-",
|
|
|
|
"B" : "-...",
|
|
|
|
"C" : "-.-.",
|
|
|
|
"D" : "-..",
|
|
|
|
"E" : ".",
|
|
|
|
"F" : "..-.",
|
|
|
|
"G" : "--.",
|
|
|
|
"H" : "....",
|
|
|
|
"I" : "..",
|
|
|
|
"J" : ".---",
|
|
|
|
"K" : "-.-",
|
|
|
|
"L" : ".-..",
|
|
|
|
"M" : "--",
|
|
|
|
"N" : "-.",
|
|
|
|
"O" : "---",
|
|
|
|
"P" : ".--.",
|
|
|
|
"Q" : "--.-",
|
|
|
|
"R" : ".-.",
|
|
|
|
"S" : "...",
|
|
|
|
"T" : "-",
|
|
|
|
"U" : "..-",
|
|
|
|
"V" : "...-",
|
|
|
|
"W" : ".--",
|
|
|
|
"X" : "-..-",
|
|
|
|
"Y" : "-.--",
|
|
|
|
"Z" : "--..",
|
|
|
|
"0" : "-----",
|
|
|
|
"1" : ".----",
|
|
|
|
"2" : "..---",
|
|
|
|
"3" : "...--",
|
|
|
|
"4" : "....-",
|
|
|
|
"5" : ".....",
|
|
|
|
"6" : "-....",
|
|
|
|
"7" : "--...",
|
|
|
|
"8" : "---..",
|
|
|
|
"9" : "----.",
|
2004-02-20 23:45:27 +01:00
|
|
|
"." : ".-.-.-",
|
|
|
|
"," : "--..--",
|
|
|
|
":" : "---...",
|
|
|
|
"?" : "..--..",
|
|
|
|
"'" : ".----.",
|
|
|
|
"-" : "-....-",
|
|
|
|
"/" : "-..-.",
|
|
|
|
'"' : ".-..-.",
|
|
|
|
"@" : ".--.-.",
|
|
|
|
"=" : "-...-"
|
2004-01-07 17:00:03 +01:00
|
|
|
}
|
|
|
|
_revcode = dict([(y, x) for (x, y) in _code.items()])
|
|
|
|
_unmorsere = re.compile('([.-]+)')
|
|
|
|
def unmorse(self, irc, msg, args):
|
2004-08-19 15:33:34 +02:00
|
|
|
"""<Morse code text>
|
2004-01-07 17:00:03 +01:00
|
|
|
|
2004-05-01 02:15:11 +02:00
|
|
|
Does the reverse of the morse command.
|
2004-01-07 17:00:03 +01:00
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
|
|
|
text = text.replace('_', '-')
|
|
|
|
def morseToLetter(m):
|
|
|
|
s = m.group(1)
|
|
|
|
return self._revcode.get(s, s)
|
|
|
|
text = self._unmorsere.sub(morseToLetter, text)
|
|
|
|
text = text.replace(' ', '\x00')
|
|
|
|
text = text.replace(' ', '')
|
|
|
|
text = text.replace('\x00', ' ')
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(text)
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
def morse(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
2004-08-19 15:33:34 +02:00
|
|
|
Gives the Morse code equivalent of a given string.
|
2004-01-07 17:00:03 +01:00
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
|
|
|
L = []
|
|
|
|
for c in text.upper():
|
|
|
|
if c in self._code:
|
|
|
|
L.append(self._code[c])
|
|
|
|
else:
|
|
|
|
L.append(c)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(' '.join(L))
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
def reverse(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Reverses <text>.
|
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(text[::-1])
|
2004-01-07 17:00:03 +01:00
|
|
|
|
2004-07-22 21:10:30 +02:00
|
|
|
def _color(self, c, fg=None):
|
2004-01-07 17:00:03 +01:00
|
|
|
if c == ' ':
|
|
|
|
return c
|
2004-07-22 21:10:30 +02:00
|
|
|
if fg is None:
|
|
|
|
fg = str(random.randint(2, 15)).zfill(2)
|
2004-01-07 17:00:03 +01:00
|
|
|
return '\x03%s%s' % (fg, c)
|
|
|
|
|
|
|
|
def colorize(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Returns <text> with each character randomly colorized.
|
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
|
|
|
L = [self._color(c) for c in text]
|
2004-04-13 03:01:17 +02:00
|
|
|
irc.reply('%s%s' % (''.join(L), '\x03'))
|
2004-01-07 17:00:03 +01:00
|
|
|
|
2004-07-22 21:10:30 +02:00
|
|
|
def rainbow(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Returns <text> colorized like a rainbow.
|
|
|
|
"""
|
|
|
|
colors = itertools.cycle([4, 7, 8, 3, 2, 12, 6])
|
|
|
|
text = privmsgs.getArgs(args)
|
|
|
|
L = [self._color(c, fg=colors.next()) for c in text]
|
|
|
|
irc.reply(''.join(L) + '\x03')
|
|
|
|
|
2004-04-16 01:41:24 +02:00
|
|
|
def stripcolor(self, irc, msg, args):
|
2004-04-09 05:59:12 +02:00
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Returns <text> stripped of all color codes.
|
|
|
|
"""
|
|
|
|
text = privmsgs.getArgs(args)
|
2004-04-16 01:41:24 +02:00
|
|
|
irc.reply(ircutils.stripColor(text))
|
2004-04-09 05:59:12 +02:00
|
|
|
|
2004-07-20 11:28:38 +02:00
|
|
|
def aol(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Returns <text> as if an AOLuser had said it.
|
|
|
|
"""
|
2004-07-22 21:10:30 +02:00
|
|
|
text = privmsgs.getArgs(args)
|
2004-07-20 17:59:04 +02:00
|
|
|
text = text.replace(' you ', ' u ')
|
|
|
|
text = text.replace(' are ', ' r ')
|
|
|
|
text = text.replace(' love ', ' <3 ')
|
|
|
|
text = text.replace(' luv ', ' <3 ')
|
|
|
|
text = text.replace(' too ', ' 2 ')
|
|
|
|
text = text.replace(' to ', ' 2 ')
|
|
|
|
text = text.replace(' two ', ' 2 ')
|
2004-07-22 21:10:30 +02:00
|
|
|
text = text.replace('fore', '4')
|
2004-07-20 17:59:04 +02:00
|
|
|
text = text.replace(' for ', ' 4 ')
|
2004-07-22 21:10:30 +02:00
|
|
|
text = text.replace('be', 'b')
|
|
|
|
text = text.replace('four', ' 4 ')
|
|
|
|
text = text.replace(' their ', ' there ')
|
2004-07-20 11:28:38 +02:00
|
|
|
text = text.replace(', ', ' ')
|
|
|
|
text = text.replace(',', ' ')
|
|
|
|
text = text.replace("'", '')
|
2004-07-22 21:10:30 +02:00
|
|
|
text = text.replace('one', '1')
|
2004-07-20 11:28:38 +02:00
|
|
|
smiley = random.choice(['<3', ':)', ':-)', ':D', ':-D'])
|
|
|
|
text += smiley*3
|
2004-07-22 21:10:30 +02:00
|
|
|
irc.reply(text)
|
2004-07-21 21:36:35 +02:00
|
|
|
|
2004-01-07 17:00:03 +01:00
|
|
|
def jeffk(self, irc, msg, args):
|
|
|
|
"""<text>
|
|
|
|
|
|
|
|
Returns <text> as if JeffK had said it himself.
|
|
|
|
"""
|
|
|
|
def randomlyPick(L):
|
|
|
|
return random.choice(L)
|
|
|
|
def quoteOrNothing(m):
|
|
|
|
return randomlyPick(['"', '']).join(m.groups())
|
|
|
|
def randomlyReplace(s, probability=0.5):
|
|
|
|
def f(m):
|
|
|
|
if random.random() < probability:
|
|
|
|
return m.expand(s)
|
|
|
|
else:
|
|
|
|
return m.group(0)
|
|
|
|
return f
|
|
|
|
def randomExclaims(m):
|
|
|
|
if random.random() < 0.85:
|
|
|
|
return ('!' * random.randrange(1, 5)) + m.group(1)
|
|
|
|
else:
|
|
|
|
return '.' + m.group(1)
|
|
|
|
def randomlyShuffle(m):
|
|
|
|
L = list(m.groups())
|
|
|
|
random.shuffle(L)
|
|
|
|
return ''.join(L)
|
|
|
|
def lessRandomlyShuffle(m):
|
|
|
|
L = list(m.groups())
|
|
|
|
if random.random() < .4:
|
|
|
|
random.shuffle(L)
|
|
|
|
return ''.join(L)
|
|
|
|
def randomlyLaugh(text, probability=.3):
|
|
|
|
if random.random() < probability:
|
|
|
|
if random.random() < .5:
|
|
|
|
insult = random.choice([' fagot1', ' fagorts', ' jerks',
|
|
|
|
'fagot' ' jerk', ' dumbshoes',
|
|
|
|
' dumbshoe'])
|
|
|
|
else:
|
|
|
|
insult = ''
|
|
|
|
laugh1 = random.choice(['ha', 'hah', 'lol', 'l0l', 'ahh'])
|
|
|
|
laugh2 = random.choice(['ha', 'hah', 'lol', 'l0l', 'ahh'])
|
|
|
|
laugh1 = laugh1 * random.randrange(1, 5)
|
|
|
|
laugh2 = laugh2 * random.randrange(1, 5)
|
|
|
|
exclaim = random.choice(['!', '~', '!~', '~!!~~',
|
|
|
|
'!!~', '~~~!'])
|
|
|
|
exclaim += random.choice(['!', '~', '!~', '~!!~~',
|
|
|
|
'!!~', '~~~!'])
|
|
|
|
if random.random() < 0.5:
|
|
|
|
exclaim += random.choice(['!', '~', '!~', '~!!~~',
|
|
|
|
'!!~', '~~~!'])
|
|
|
|
laugh = ''.join([' ', laugh1, laugh2, insult, exclaim])
|
|
|
|
text += laugh
|
|
|
|
return text
|
|
|
|
text = privmsgs.getArgs(args)
|
|
|
|
if random.random() < .03:
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(randomlyLaugh('NO YUO', probability=1))
|
2004-01-07 17:00:03 +01:00
|
|
|
return
|
|
|
|
alwaysInsertions = {
|
|
|
|
r'er\b': 'ar',
|
|
|
|
r'\bthe\b': 'teh',
|
|
|
|
r'\byou\b': 'yuo',
|
|
|
|
r'\bis\b': 'si',
|
|
|
|
r'\blike\b': 'liek',
|
|
|
|
r'[^e]ing\b': 'eing',
|
|
|
|
}
|
|
|
|
for (r, s) in alwaysInsertions.iteritems():
|
|
|
|
text = re.sub(r, s, text)
|
|
|
|
randomInsertions = {
|
|
|
|
r'i': 'ui',
|
|
|
|
r'le\b': 'al',
|
|
|
|
r'i': 'io',
|
|
|
|
r'l': 'll',
|
|
|
|
r'to': 'too',
|
|
|
|
r'that': 'taht',
|
|
|
|
r'[^s]c([ei])': r'sci\1',
|
|
|
|
r'ed\b': r'e',
|
|
|
|
r'\band\b': 'adn',
|
|
|
|
r'\bhere\b': 'hear',
|
|
|
|
r'\bthey\'re': 'their',
|
|
|
|
r'\bthere\b': 'they\'re',
|
|
|
|
r'\btheir\b': 'there',
|
|
|
|
r'[^e]y': 'ey',
|
|
|
|
}
|
|
|
|
for (r, s) in randomInsertions.iteritems():
|
|
|
|
text = re.sub(r, randomlyReplace(s), text)
|
|
|
|
text = re.sub(r'(\w)\'(\w)', quoteOrNothing, text)
|
|
|
|
text = re.sub(r'\.(\s+|$)', randomExclaims, text)
|
|
|
|
text = re.sub(r'([aeiou])([aeiou])', randomlyShuffle, text)
|
|
|
|
text = re.sub(r'([bcdfghkjlmnpqrstvwxyz])([bcdfghkjlmnpqrstvwxyz])',
|
|
|
|
lessRandomlyShuffle, text)
|
|
|
|
text = randomlyLaugh(text)
|
|
|
|
if random.random() < .4:
|
|
|
|
text = text.upper()
|
2004-01-08 04:12:14 +01:00
|
|
|
irc.reply(text)
|
2004-01-07 17:00:03 +01:00
|
|
|
|
|
|
|
|
|
|
|
Class = Filter
|
|
|
|
|
|
|
|
|
|
|
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|