view pytouhou/resource/anmwrapper.py @ 276:754ff6452d7e

Fix spellcard number 0. Spellcard number 0 was evaluated as False in truth checks. Now, the spellcard is a tuple, with (number, name) and will always evaluate as True.
author Thibaut Girka <thib@sitedethib.com>
date Sun, 05 Feb 2012 23:45:41 +0100
parents ac2e5e1c2c3c
children dbb1a86c0235
line wrap: on
line source

class AnmWrapper(object):
    def __init__(self, anm_files):
        self.anm_files = list(anm_files)


    def get_sprite(self, sprite_index):
        for anm in self.anm_files:
            if sprite_index in anm.sprites:
                return anm, anm.sprites[sprite_index]
        raise IndexError


    def get_script(self, script_index):
        for anm in self.anm_files:
            if script_index in anm.scripts:
                return anm, anm.scripts[script_index]
        raise IndexError