Hi everyone I am new to gamedev.net, I am working on a super mario style game. I have used sites such as lazyfoo.net and sdltutorials.com. to get information. The problem I am trying to solve is that I have a sprite image each frame for the sprite is 64x64 pixels the sheet is set up in 5 columns the rows are for each animation state such as standing, walking and jumping all have a different number of frames depending on what the animation is.
From Looking at lazyfoo's site his animation tutorial looks like you have to set the position of each frame individually. My image has 64 frames of animation. I am looking for another way of cliping the sprites.
SDL Animation when using large sprite sheets
Started by rootoutcast, Dec 05 2012 08:03 PM
2 replies to this topic
Sponsor:
#2 Marketplace Seller - Reputation: 8955
Posted 05 December 2012 - 08:26 PM
You could calculate the clip rects using math, and wrap it in a function.
Several years ago, I created a single header file that wraps it all for you providing convenience functions.
[SDL_tileset]
That thread's formatting has deteriorated with time, but the download link still works. If you have any questions, just ask.
rect.x = (column * SpriteWidth) rect.y = (row * SpriteHeight); rect.w = SpriteWidth; rect.h = SpriteHeight;
Several years ago, I created a single header file that wraps it all for you providing convenience functions.
[SDL_tileset]
That thread's formatting has deteriorated with time, but the download link still works. If you have any questions, just ask.
All glory be to the Man at the right hand... On David's throne the King will reign, and the Government will rest upon His shoulders. All the earth will see the salvation of God.
Of Stranger Flames - [indie turn-based rpg set in a para-historical French colony] | Indie RPG development journal
#3 Members - Reputation: 1124
Posted 06 December 2012 - 07:43 AM
If you're on D3D10+ hardware, you might want to use texture arrays (as long as all sprites are the same size) as they prevent filtering artifacts between neighboring sprites.
Instead of cutting sprites out of a sheet in a shader you can do it at load-time.
Instead of cutting sprites out of a sheet in a shader you can do it at load-time.
Edited by eppo, 06 December 2012 - 08:03 AM.






