Author Topic: Tile animation  (Read 8820 times)

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Tile animation
« on: 2007-03-29, 11:21:02 PM »
I was doing the SGDK tutorial, and when I finished I started adding to the game. I've improved the graphics, made the player sprite animated and created hills. I was thinking of making the stars you pick up rotate, to make the them look less 'plain'. So how do you make an animated tile in SGDK2?

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Tile animation
« Reply #1 on: 2007-03-30, 06:33:52 AM »
With the Tileset Editor.  Try this and let me know if the help page is enough for you to figure out the Tileset Editor:
http://sgdk2.sourceforge.net/Documentation/TileEdit.html

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: Tile animation
« Reply #2 on: 2007-03-30, 04:31:57 PM »
cool, that works. But now I can't manage to allow the player to pick-up the stars. (Since the tile index is always changing) Is there a way I can let the player pick-up the stars?

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Tile animation
« Reply #3 on: 2007-03-30, 05:56:05 PM »
The tile index doesn't change, just the frame displayed by that tile index.

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: Tile animation
« Reply #4 on: 2007-03-30, 07:43:40 PM »
Well, the stars aren't getting picked up.

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Tile animation
« Reply #5 on: 2007-03-31, 05:46:51 AM »
Here's my version of the tutorial project updated to make a rotating star.  The only trick was adding rules to increment the counter.  Everything else was pretty straightforward.  Are you still using the same tile number?  Check my project and see how it compares to yours.

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: Tile animation
« Reply #6 on: 2007-03-31, 08:07:51 PM »
It turned out my problem was I had the tile index as 258 instead of 238 in my 'pick up stars' rule. And no I wasn't using the same tile number because I wanted stars to be animated on the map but normal in the inventory. So the inventory used the unanimated tile index (2) while the map had the animated one. (238)
Since this topic is on animation I might as well ask my next question here, instead of starting a new topic. How would you have a rotating sprite that has an animated 'flames' state when pressing a certain button and go back to the normal state when not pressing the button? (I'm putting nitrous on a car)

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Tile animation
« Reply #7 on: 2007-04-01, 08:47:13 AM »
If you have 72 states where the first 72 are wouthoug flames and the second 72 are with, then you would need to detect when the button is pressed and the state is less than 72.  In that condition, you'd need to add 72.  Then also detect when the button isn't pressed and the state is >= 72.  In that case subtract 72 from the state.

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: Tile animation
« Reply #8 on: 2007-04-02, 07:59:47 PM »
I have 360 states and i was thinking, is there an easier way to add frames to states rather than dragging them in individually? 360 states might take a while.

EDIT

Don't worry I just figured out how.

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: Tile animation
« Reply #9 on: 2007-04-02, 09:42:10 PM »
That's working great!  ;D Thanks ;D

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: Tile animation
« Reply #10 on: 2007-04-03, 05:33:04 AM »
Well, don't leave everyone else in the dark, tell them you used the rotating sprite wizard (right?) :)

Jam0864

  • Contributor
  • Fanatic
  • **
  • Posts: 744
    • MSN Messenger - marmalade0864@hotmail.com
    • View Profile
    • Jam0864's Content Dump
    • Email
Re: Tile animation
« Reply #11 on: 2007-04-03, 06:33:47 AM »
Yeh, I used the rotating sprite wizard. I just scanned through the writing the first time and never actually read it until now. It's quite obvious how to do it if you take the time to read the instructions.