Author Topic: Tiles, solidity and sprites  (Read 4552 times)

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Tiles, solidity and sprites
« on: 2009-03-02, 01:48:57 PM »
Hi guys,

I've got question regarding tiles, solidity and sprites.  In my project, my sprite is centered in a big space.  The image in my sprite is maybe 100 pixels tall by 40 pixels wide, but some animation will make it larger or higher, so I centered the image in a 128x128 pixels square.  (That may be my first mistake...)  Now, when I move the sprite in a map-layer, the solidity of the tiles reacts with the border of the empty space of the sprite: making the sprite "levitate" over the tiles.  Is there a way to make the tiles react with the collision mask of a sprite rather than with the borders of the sprite?  (Without writing custom code I mean...)  Is there a way another way to do this?  (I mean, rather than leaving blank spaces around the sprite?)  Any suggestion is appreciated!

Thanks guys!
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

See also my company website:
http://chivalrousgames.com

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: Tiles, solidity and sprites
« Reply #1 on: 2009-03-02, 09:52:59 PM »
Well, finally I used a workaround. 

I created another sprite, with correct dimensions and I am placing the huge sprite is following it.  So the detection for the tiles is done by the small sprite and collision with other sprites is made with the CollisionMask of the huge sprite.  I had to alter the source code a little, but, it works fine.

If someone has an alternative, I would be happy to hear it.  Otherwise, don't spend to much time on this one.  (Since I already found a solution...)  ;)

Thanks everyone! :)
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

See also my company website:
http://chivalrousgames.com

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Tiles, solidity and sprites
« Reply #2 on: 2009-03-03, 06:38:58 AM »
There are two better ways to handle this:
1. In the Frameset editor shift the image of the sprite up and left to eliminate the empty space above and to the left of the frame(s).  In the sprite editor, change the width and height of the sprite to eliminate the empty space to the right and below each state of the sprite.
2. Don't create images larger than necessary.  Just define the sprite states using images of varying sizes by referring to frameset(s) that refer to graphic sheets with different cell sizes.  This is allowed, and then SGDK2 will prevent you from switching to a state if there isn't room, for example, to stand up.

Press F1 on the sprite editing screen and look at the help for "Width, Height".

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: Tiles, solidity and sprites
« Reply #3 on: 2009-03-03, 07:59:16 AM »
Oh!  This is very interesting!  I didn't think that SGDK2 would prevent changing to a state when and where there is isn't enough room!  Great!

Thanks a lot!
Legacy of Kain: Revival completed!
http://lokrevival.webs.com

See also my company website:
http://chivalrousgames.com