Learning how to use sprites on the NDS was a daunting challenge.

Even now I think I know just enough to be dangerous.

There are many examples with little to no documentation. The libnds docs on the web are rather general and difficult to understand. No two examples, code snippets, or explanations use the same code or technique so I had a difficult time getting anything to work. Once I accidentally stumbled on something that I understood, I vowed to write my own NDS sprite handler to cover as many variations as I needed for my own game.

I also gave it additional capabilities and configurabilities that I have not tested or used. I would like to share the results of my labors with the community. You can get the zipx file here
http://home.earthlink.net/~jcocovich/si ... ndler.zipx and it contains the header and source file for my sprite handler class that can be compiled into your application. It also contains source for a demo that shows how to use the handler. Sprites are included. A Programmer's Notepad project is included and a Visual Studio 2008 solution is included. The code is heavily commented.
The implementation for the class spriteHandler is a result of many hours of research, experimentation, and verification of all documentation, examples, and vague source code I found on the internet and downloaded resources. It also includes descriptions of why everything is there, how it is used, and where it came from in the NDS documentation where appropriate. My goal is to never, ever make an ass out of u and me by ASSUMING you know how the hardware works and why configurations are seemingly set to arbitrary values with no reason.

Therefore, please feel obligated to let me know where my goal has failed and I will fix it.
The Demo is created from the libnds sprite animation example with some modifications and improvements to work with my sprite handler class.
---dumbdrunkencoder