I been working in a new game, and finally reached the point where I started to code the motion of my main character but I have a doubt about how do that.

Previously, I make two games in Allegro, so the spritesheets are kind of easy to implement, because I establish the frame and position on the image, and save every frame in a different bitmap, but I know that do that with OpenGL it's not neccesary and cost a little bit more.

So, I been thinking in how save my spritesheet and used in my program and I have only one idea.

I loaded the image and transformed in a texture, in my function that help me animate I simply grab a portion of the texture to draw instead of store every single texture in my program.

This is the best way to do that?

Thanks beforehand for the help.

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You're on the right track.

Things to consider:

  • leave enough dead space around each sprite so that the video card does not blend in texels from adjacent sprites at small scales.
  • set texture min/mag filtering appropriately. GL_NEAREST is OK if you're going for the blocky look.
  • if you want to be fancy and save some texture memory, there's no reason that the sprites have to be laid out in a regular grid. Smaller sprites can be packed closer in the texture.
  • if your sprites are being rendered from 3D models, you could output normal & displacement maps from the model into another texture, then combine them in a fragment shader for some awesome lighting and self-shadowing.
link|improve this answer
Thanks for the tips. I will work the motion of the characters with this method. – oscar.rpr Jun 24 '11 at 4:06
feedback

You got the right idea, if you have a bunch of sprites it is much better to just stick them all in one big textures. Just draw your sprites as textured quads whose texture coordinates index into the frame of the sprite. You can do a few optimizations, but most of them revolve around trying to get the most out of your texture memory and packing the sprites closely together with out blending issues.

link|improve this answer
Thanks for the tip and the help. – oscar.rpr Jun 24 '11 at 4:06
feedback

I know that do that with OpenGL it's not neccesary and cost a little bit more.

Why not? There are no real downsides to putting a lot of sprites into a single texture. All you need to do is change the texture coordinates to pick the region in question out of the texture.

link|improve this answer
You lost the context, seems like he meant "it's not necessary to save every frame in a different bitmap" – Ben Voigt Jun 24 '11 at 3:58
I mean, that save each sprite in one only texture it's waste the capacity of the video card. Because if the spritesheet has for example 16 sprites, if I save 16 textures during the execution of the program cost a bit much that only store a single texture with all the sprites. – oscar.rpr Jun 24 '11 at 4:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.