### # Copyright (c) 2003-2005, Jeremiah Fincher # 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. ### import re import supybot.utils as utils from supybot.commands import * import supybot.plugins as plugins import supybot.ircutils as ircutils import supybot.callbacks as callbacks class Gameknot(callbacks.PluginRegexp): threaded = True callBefore = ['Web'] regexps = ['gameknotSnarfer', 'gameknotStatsSnarfer'] _gkrating = re.compile(r'(\d+)') _gkgames = re.compile(r's:
(.*?)\s*
")
_gkWon = re.compile(r'>(\S+)\s+won')
_gkReason = re.compile(r'won\s+\(\S+\s+(\S+)\)')
def gameknotSnarfer(self, irc, msg, match):
r"http://(?:www\.)?gameknot\.com/chess\.pl\?bd=\d+"
if not self.registryValue('gameSnarfer', msg.args[0]):
return
url = match.group(0)
try:
s = utils.web.getUrl(url)
except utils.web.Error, e:
self.log.debug('Unable to snarf Gameknot URL: %s',
utils.web.strError(e))
return
try:
if 'no longer available' in s:
s = 'That game is no longer available.'
irc.reply(s, prefixNick=True)
return
m = self._gkGameTitle.search(s)
if m is None:
self.log.debug('_gkGameTitle didn\'t match %u.', url)
return
gameTitle = m.groups()
gameTitle = ircutils.bold(gameTitle)
L = self._gkPlayer.findall(s)
if not L:
self.log.debug('_gkPlayer didn\'t match %u.', url)
return
((wRating, wName), (bRating, bName)) = L
wName = ircutils.bold(wName)
bName = ircutils.bold(bName)
if 'to move...' in s:
if 'white to move' in s:
toMove = wName + ' to move.'
else:
toMove = bName + ' to move.'
else:
# Game is over.
m = self._gkWon.search(s)
if m:
winner = m.group(1)
m = self._gkReason.search(s)
if m:
reason = m.group(1)
else:
reason = 'lost'
if winner == 'white':
toMove = format('%s won, %s %s.', wName, bName, reason)
else:
toMove = format('%s won, %s %s.', bName, wName, reason)
else:
toMove = 'The game was a draw.'
(wRating, wWins, wLosses, wDraws) = \
self._gkRating.search(wRating).groups()
(bRating, bWins, bLosses, bDraws) = \
self._gkRating.search(bRating).groups()
wStats = format('%i; W-%i, L-%i, D-%i',
wRating, wWins, wLosses, wDraws)
bStats = format('%i; W-%i, L-%i, D-%i',
bRating, bWins, bLosses, bDraws)
s = format('%s: %s (%s) vs. %s (%s); %s',
gameTitle, wName, wStats, bName, bStats, toMove)
irc.reply(s, prefixNick=False)
except ValueError:
s = format('%u doesn\'t appear to be a proper Gameknot game.', url)
self.log.debug('Unable to snarf. %s', s)
except Exception, e:
self.log.warning(utils.exnToString(e))
gameknotSnarfer = urlSnarfer(gameknotSnarfer)
def gameknotStatsSnarfer(self, irc, msg, match):
r"http://gameknot\.com/stats\.pl\?([^& ]+)"
if not self.registryValue('statSnarfer', msg.args[0]):
return
name = match.group(1)
s = self.getStats(name)
irc.reply(s, prefixNick=False)
gameknotStatsSnarfer = urlSnarfer(gameknotStatsSnarfer)
Class = Gameknot
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79: