Pokedex plugin now labels fuzzy-matched foreign names.
[zzz-dywypi.git] / plugins / Pokedex / plugin.py
index b81ced2..14574d0 100644 (file)
@@ -1,3 +1,4 @@
+# encoding: utf8
 ###
 # Copyright (c) 2010, Alex Munroe
 # All rights reserved.
 
 ###
 
+import supybot.conf as conf
 import supybot.utils as utils
 from supybot.commands import *
 import supybot.plugins as plugins
 import supybot.ircutils as ircutils
 import supybot.callbacks as callbacks
 
+import pokedex.db
+import pokedex.db.tables as tables
+import pokedex.lookup
 
 class Pokedex(callbacks.Plugin):
     """Add the help for "@plugin help Pokedex" here
     This should describe *how* to use this plugin."""
-    pass
+    def __init__(self, irc):
+        self.__parent = super(Pokedex, self)
+        self.__parent.__init__(irc)
+        self.db = pokedex.db.connect(self.registryValue('databaseURL'))
+        self.indices = pokedex.lookup.open_index(
+            directory=conf.supybot.directories.data.dirize('pokedex-index'),
+            session=self.db,
+        )
+
+    def pokedex(self, irc, msg, args, thing):
+        """<thing...>
+
+        Looks up <thing> in the veekun Pokédex."""
+
+        # Fix encoding.  Sigh.
+        if not isinstance(thing, unicode):
+            ascii_thing = thing
+            try:
+                thing = ascii_thing.decode('utf8')
+            except UnicodeDecodeError:
+                thing = ascii_thing.decode('latin1')
+
+        # Similar logic to the site, here.
+        results = pokedex.lookup.lookup(thing, session=self.db,
+                indices=self.indices)
+
+        # Nothing found
+        if len(results) == 0:
+            self._reply(irc, "I don't know what that is.")
+            return
+
+        # Multiple matches; propose them all
+        if len(results) > 1:
+            if results[0].exact:
+                reply = "Are you looking for"
+            else:
+                reply = "Did you mean"
+
+            # For exact name matches with multiple results, use type prefixes
+            # (item:Metronome).  For anything else, omit them
+            use_prefixes = (results[0].exact
+                            and '*' not in thing
+                            and '?' not in thing)
+
+            result_strings = []
+            for result in results:
+                result_string = result.object.name
+
+                # Prepend, e.g., pokemon: if necessary
+                if use_prefixes:
+                    # Table classes know their singular names
+                    prefix = result.object.__singlename__
+                    result_string = prefix + ':' + result_string
+
+                # Identify foreign language names
+                if result.language:
+                    result_string += u""" ({0}: {1})""".format(
+                        result.iso3166, result.name)
+
+                result_strings.append(result_string)
+
+            self._reply(irc, u"{0}: {1}?".format(reply, '; '.join(result_strings)))
+            return
+
+        # If we got here, there's an exact match; hurrah!
+        result = results[0]
+        if isinstance(result.object, tables.Pokemon):
+            self._reply(irc, u"""{name}, {type}-type Pokémon.""".format(
+                name=result.object.name,
+                type='/'.join(_.name for _ in result.object.types),
+                )
+            )
+
+        elif isinstance(result.object, tables.Move):
+            self._reply(irc, u"""{name}, {type}-type move.""".format(
+                name=result.object.name,
+                type=result.object.type.name,
+                )
+            )
+
+        elif isinstance(result.object, tables.Type):
+            self._reply(irc, u"""{name}, a type.""".format(
+                name=result.object.name,
+                )
+            )
+
+        elif isinstance(result.object, tables.Item):
+            self._reply(irc, u"""{name}, an item.""".format(
+                name=result.object.name,
+                )
+            )
+
+        elif isinstance(result.object, tables.Ability):
+            self._reply(irc, u"""{name}, an ability.""".format(
+                name=result.object.name,
+                )
+            )
+
+        else:
+            # This can only happen if lookup.py is upgraded and we are not
+            self._reply(irc, "Uhh..  I found that, but I don't know what it is.  :(")
+
+    pokedex = wrap(pokedex, [rest('something')])
+
+    def _reply(self, irc, response):
+        """Wraps irc.reply() to do some Unicode decoding."""
+        if isinstance(response, str):
+            irc.reply(response)
+        else:
+            irc.reply(response.encode('utf8'))
 
 
 Class = Pokedex