Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (406)
games submitted by our members
Games in WIP (289)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Initializing uneven sized sprites  (Read 914 times)
0 Members and 1 Guest are viewing this topic.
Offline westloar

Junior Member





« Posted 2012-04-20 11:32:45 »

I'm prototyping my game and using a sprite sheet I downloaded, the image loader that I use cuts the image up into equal parts and loads each one.

The problem I have is the walk animation, for instance, contains sprites that are of uneven width:



Aside from measuring and supplying my image loader with specific dimensions for each image, what's the best way to split up the sprites and load it?
Offline gimbal

JGO Coder


Medals: 15



« Reply #1 - Posted 2012-04-20 11:59:24 »

I like dumb code, so I actually don't deal with it. In stead, I do this:

a) I make all frames of an animation equal width and height, which probably means adding plenty of blank space in the slimmer frames. Different animations can have different dimensions though
b) my positioning system does not orient from the top-left or bottom-left corner of a sprite/bob but from the center-bottom 'pixel'. This keeps the thing in the same place no matter that there are differences in animation width; even if you would allow different frame widths. Using the center-bottom also just makes things like floor collision checks slightly easier.

Unfortunately to properly work with a) does require a tiny bit of extra effort; I generate bounding boxes on a per-frame basis by examining the blank space and making the bounding box fit as tight around the opaque area of the frame as possible. But meh, thats the type of code you write once and copy everywhere.
Offline westloar

Junior Member





« Reply #2 - Posted 2012-04-20 12:36:44 »

Ok,that was my first thought, I just thought there might be a more elegant solution Tongue
Games published by our own members! Check 'em out!
Try the Free Demo of Titan Attacks
Offline gimbal

JGO Coder


Medals: 15



« Reply #3 - Posted 2012-04-20 12:37:52 »

Ok,that was my first thought, I just thought there might be a more elegant solution Tongue

Perhaps there is, but that reads to me like you are searching for the "best" way of doing it, which doesn't exist. I settle for a solution that is good enough.
Offline westloar

Junior Member





« Reply #4 - Posted 2012-04-20 12:54:57 »

tousche' good sir  Grin
Offline ReBirth
« Reply #5 - Posted 2012-04-20 14:58:49 »

I prefer your unchosen method, by measure them manually. With your sprite above, I just need store 7 (or 6) int in an array. Ofc you need to update code as art one but it could be avoided if you already fix at the sprite.

Offline davedes
« Reply #6 - Posted 2012-04-20 19:23:17 »

For uneven sprites I use this little class:
http://www.java-gaming.org/?action=pastebin&id=70

Issues:
  • It means I need to manually find the integer coordinates (i.e. zoomed in using Photoshop)
  • It's better for arbitrary sprites than animations (where your names are going to end up char1, char2, char3, char4, etc).
  • In some cases using uneven sizes will result in a jumpy animation, if the character isn't lined up frame to frame. If this is the case, it would be much easier to just edit the sprites in Photoshop so that they are (a) lined up frame to frame, and (b) evenly spaced.

Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Try the Free Demo of Revenge of the Titans

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (60 views)
2013-05-17 21:29:12

alaslipknot (69 views)
2013-05-16 21:24:48

gouessej (99 views)
2013-05-16 00:53:38

gouessej (97 views)
2013-05-16 00:17:58

theagentd (107 views)
2013-05-15 15:01:13

theagentd (98 views)
2013-05-15 15:00:54

StreetDoggy (144 views)
2013-05-14 15:56:26

kutucuk (167 views)
2013-05-12 17:10:36

kutucuk (166 views)
2013-05-12 15:36:09

UnluckyDevil (175 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.088 seconds with 21 queries.