Mercurial > touhou
annotate pytouhou/resource/anmwrapper.py @ 204:88361534c77e
Add some documentation (argh, so much left to document!)
author | Thibaut Girka <thib@sitedethib.com> |
---|---|
date | Tue, 01 Nov 2011 13:46:03 +0100 |
parents | ac2e5e1c2c3c |
children | dbb1a86c0235 |
rev | line source |
---|---|
97 | 1 class AnmWrapper(object): |
2 def __init__(self, anm_files): | |
3 self.anm_files = list(anm_files) | |
4 | |
5 | |
6 def get_sprite(self, sprite_index): | |
7 for anm in self.anm_files: | |
8 if sprite_index in anm.sprites: | |
9 return anm, anm.sprites[sprite_index] | |
10 raise IndexError | |
11 | |
12 | |
13 def get_script(self, script_index): | |
14 for anm in self.anm_files: | |
15 if script_index in anm.scripts: | |
16 return anm, anm.scripts[script_index] | |
17 raise IndexError |