Author Topic: TestCollisionRect  (Read 4056 times)

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
TestCollisionRect
« on: 2009-09-15, 11:25:01 AM »
Hi guys!

Usually, I use the TestCollisionMask rule.  I place it on a sprite, pass the sprite category I want to test collision with and then give one of the sprite parameters as output value, very easy.

For once, I used the TestCollisionRect rule, it didn't need to be pixel perfect this time.  So I added it on the sprite, then gave the proper sprite category to test collsion against and then...?  No output value?  I can't store the result of this function?  What am I missing here?  What is the proper way to use this rule?  ???

Thanks!
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: TestCollisionRect
« Reply #1 on: 2009-09-15, 04:30:42 PM »
There are TestCollisionRect implementations for plans and sprites... did you check both?  I don't have time at the moment.

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: TestCollisionRect
« Reply #2 on: 2009-09-15, 06:07:59 PM »
I looked at the help file and I see 3 versions of TestCollisionRect.  It seems that there is one designed for plan rules, like you pointed out bluemonkmn.  This one looks like the TestCollisionMask I am used to: pass a sprite category and receive an integer with the value of the found sprite or -1 if no collision.

According to the help file, I see two versions for TestCollisionRect in sprite rules.
The first one says this:
Quote
Determine if this sprite is planning to overlap the target sprite.
public bool TestCollisionRect(
   SpriteBase TargetSprite
)

Parameters
TargetSprite (SpriteBase)
Sprite against which planned overlap is checked.
Return Value
True if the sprite will overlap TargetSprite.

Not really what I'm looking for, since I want to verify a category of sprites.  It would seem that it is the rule used in the sprite rules dropdown.

The second rule explained in the help file is this one:
Quote
Determine whether the solidity rectangle of the sprite overlaps that of any sprite in the specified category.

public int TestCollisionRect(
   SpriteCollection Targets
)

Parameters
Targets (SpriteCollection)
A sprite category containing sprites that will be checked for collision with this sprite.
Return Value
The index of the sprite within the category if a collision is occurring, otherwise -1.

That's the one I would like to use.  Is it a remnant of a previous SGDK2 version that is still in the help file but not in the program?

Sorry for stealing your time...  :-[
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: TestCollisionRect
« Reply #3 on: 2009-09-16, 05:04:16 AM »
Oops.  It's not a remnant, but SGDK2's UI doesn't support overloaded functions.  It can only handle one function with a particular name.  Both functions are implemented.  I think I must have exposed the one you didn't want, not realizing that it would hide the one you do want.  In order to expose the one you want, just hide the one you don't want by deleting the following line from the SpriteBase.cs file:
Code: [Select]
[Description("Determine if this sprite is planning to overlap the target sprite.")]

(Only function with descriptions are exposed by the UI.)

Vincent

  • SGDK2 Addict
  • Expert
  • Fanatic
  • *****
  • Posts: 612
  • Legacy of Kain: Revival is completed!!!
    • View Profile
    • Chivalrous Games
    • Email
Re: TestCollisionRect
« Reply #4 on: 2009-09-16, 06:59:38 AM »
Allright!  I will do that!

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

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