Author Topic: SpriteBase functions  (Read 5279 times)

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
SpriteBase functions
« on: 2007-03-23, 09:14:16 PM »
Is there no way to push a sprite towards another sprite?  None that I can find, and it would be annoying to have to make a new plan for each level if you always wanted one sprite to gravitate towards another in all maps.  Of course, I understand that trying to implement this in the SpriteBase class would not be feasible for a specific sprite, but maybe for the nearest of the specified sprite definition, like in SGDK1?
Edward Dassmesser

bluemonkmn

  • SGDK Author
  • Administrator
  • Fanatic
  • *****
  • Posts: 2761
    • ICQ Messenger - 2678251
    • MSN Messenger - BlueMonkMN@gmail.com
    • View Profile
    • http://sgdk2.sf.net/
    • Email
Re: SpriteBase functions
« Reply #1 on: 2007-03-24, 09:02:24 AM »
There are a lot of rule types that have yet to be coded.  I think I want to get a first pass at the documentation done before getting back to some of the coding details.  In this case, I think it'd work best to have the sprite category be the parameter specifying which sprite to move toward, because a sprite category tracks a number of specific sprite instances.  If I were to look for a specific type of sprite, I'd probably have to loop through all the sprites in the layer since I don't track instances by definition type at this point.

durnurd

  • Lead Lemming
  • Expert
  • Fanatic
  • *****
  • Posts: 1234
  • Games completed so far: 0
    • MSN Messenger - durnurd@hotmail.com
    • View Profile
    • Find My Ed
Re: SpriteBase functions
« Reply #2 on: 2007-03-24, 09:05:55 AM »
A few more suggestions for later, when more rules are to be coded:

TestCollisionMask (or Rectangle) for two categories, such as "Enemies" and "Bullets", rather than a individually for each bullet or enemy against the other category, since you have to have each bullet defined separately.

A built-in function to activate when a sprite touches a tile of a specific type, rather than being within that tile.

Activating a sprite and put it at a location based on another sprite's location, rather than a tile (i.e. for bullets, again).
Edward Dassmesser