Pokedex: Update to work with new PokedexLookup class.
[zzz-dywypi.git] / plugins / Pokedex / plugin.py
index c576bd6..13ce031 100644 (file)
@@ -42,6 +42,24 @@ import pokedex.lookup
 
 import urllib
 
+
+def get_stat_color(stat):
+    if stat < 41:
+        return 4  # red
+    elif stat < 52:
+        return 7  # orange
+    elif stat < 61:
+        return 8  # yellow
+    elif stat < 71:
+        return 9  # green
+    elif stat < 85:
+        return 11  # cyan
+    elif stat < 100:
+        return 12  # blue
+    else:
+        return 13  # purple
+
+
 class Pokedex(callbacks.Plugin):
     """Add the help for "@plugin help Pokedex" here
     This should describe *how* to use this plugin."""
@@ -49,7 +67,7 @@ class Pokedex(callbacks.Plugin):
         self.__parent = super(Pokedex, self)
         self.__parent.__init__(irc)
         self.db = pokedex.db.connect(self.registryValue('databaseURL'))
-        self.indices = pokedex.lookup.open_index(
+        self.lookup = pokedex.lookup.PokedexLookup(
             directory=conf.supybot.directories.data.dirize('pokedex-index'),
             session=self.db,
         )
@@ -68,8 +86,7 @@ class Pokedex(callbacks.Plugin):
                 thing = ascii_thing.decode('latin1')
 
         # Similar logic to the site, here.
-        results = pokedex.lookup.lookup(thing, session=self.db,
-                indices=self.indices)
+        results = self.lookup.lookup(thing)
 
         # Nothing found
         if len(results) == 0:
@@ -115,7 +132,7 @@ class Pokedex(callbacks.Plugin):
         if isinstance(obj, tables.Pokemon):
             reply_template = \
                 u"""#{id} {name}, {type}-type Pokémon.  Has {abilities}.  """ \
-                """Is {stats}.  """ \
+                """{stats}.  """ \
                 """http://veekun.com/dex/pokemon/{link_name}"""
 
             if obj.forme_name:
@@ -138,12 +155,31 @@ class Pokedex(callbacks.Plugin):
             else:
                 link_name = urllib.quote(obj.name.lower().encode('utf8'))
 
+            # a/b/c/d/e/f sucks.  Put stats in a more readable format.
+            # Also, color-code them by good-osity.
+            colored_stats = []
+            stat_total = 0
+            for pokemon_stat in obj.stats:
+                base_stat = pokemon_stat.base_stat
+                stat_total += base_stat
+                color = get_stat_color(base_stat)
+
+                colored_stats.append(
+                    "\x03{0:02d}{1}\x0f".format(color, base_stat)
+                )
+
+            colored_stat_total = "\x03{0:02d}{1}\x0f".format(
+                get_stat_color(stat_total / 6),
+                stat_total,
+            )
+            stats = """{0} HP, {1}/{2} phys, {3}/{4} spec, {5} speed, {total} total""" \
+                .format(*colored_stats, total=colored_stat_total)
             self._reply(irc, reply_template.format(
                 id=obj.national_id,
                 name=name,
                 type='/'.join(_.name for _ in obj.types),
                 abilities=' or '.join(_.name for _ in obj.abilities),
-                stats='/'.join(str(_.base_stat) for _ in obj.stats),
+                stats=stats,
                 link_name=link_name,
                 )
             )
@@ -161,7 +197,7 @@ class Pokedex(callbacks.Plugin):
                 power=obj.power,
                 accuracy=obj.accuracy,
                 pp=obj.pp,
-                effect=unicode(obj.short_effect.as_html),
+                effect=unicode(obj.short_effect.as_text),
                 link_name=urllib.quote(obj.name.lower().encode('utf8')),
                 )
             )
@@ -169,7 +205,11 @@ class Pokedex(callbacks.Plugin):
         elif isinstance(obj, tables.Type):
             reply_template = u"""{name}, a type.  """
 
-            reply_factors = { 200: u'2', 50: u'½', 0: u'0' }
+            offensive_reply_factors = {
+                200: u'\x03092×\x0f',
+                50:  u'\x0304½×\x0f',
+                0:   u'\x03140×\x0f',
+            }
 
             offensive_modifiers = {}
             for matchup in obj.damage_efficacies:
@@ -179,11 +219,17 @@ class Pokedex(callbacks.Plugin):
             if offensive_modifiers:
                 reply_template += u"""{offensive_modifiers}.  """
                 for factor in offensive_modifiers:
-                    offensive_modifiers[factor] = u'{factor}× against {types}'.format(
-                        factor=reply_factors[factor],
+                    offensive_modifiers[factor] = u'{factor} against {types}'.format(
+                        factor=offensive_reply_factors[factor],
                         types=', '.join(sorted(offensive_modifiers[factor]))
                     )
 
+            defensive_reply_factors = {
+                200: u'\x03042×\x0f',
+                50:  u'\x0309½×\x0f',
+                0:   u'\x03110×\x0f',
+            }
+
             defensive_modifiers = {}
             for matchup in obj.target_efficacies:
                 if matchup.damage_factor != 100:
@@ -192,8 +238,8 @@ class Pokedex(callbacks.Plugin):
             if defensive_modifiers:
                 reply_template += u"""{defensive_modifiers}.  """
                 for factor in defensive_modifiers:
-                    defensive_modifiers[factor] = u'{factor}× from {types}'.format(
-                        factor=reply_factors[factor],
+                    defensive_modifiers[factor] = u'{factor} from {types}'.format(
+                        factor=defensive_reply_factors[factor],
                         types=', '.join(sorted(defensive_modifiers[factor]))
                     )