quad tree confusion

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
EdBoon
Chaos Rift Junior
Chaos Rift Junior
Posts: 258
Joined: Fri May 28, 2010 10:44 pm
Current Project: Top down multiplayer shooter using unity 3D
Favorite Gaming Platforms: 360, SNES, ps1
Programming Language of Choice: C++, C#
Location: Atlanta, GA
Contact:

quad tree confusion

Post by EdBoon »

okay so i just sent a pm to someone asking about a quad tree and figured why not ask it on here, maybe it will help someone else too. message copied below:

Hey man, I have been doing a little research on quad trees lately and have a pretty good understanding of how to compose and create the tree and divide the space containing the objects What I am having a hard time with is accessing the objects in the same node that need to be compared for collision. So i am using a quad tree that puts objects in their own leaf and keeps dividing the space until they are in their own leaf (to a certain maximum) but how do i access or store the correct list that the overlapping objects are in? You can probably sense my confusion not being able to explain what exactly im trying to ask hah. In simpler terms maybe, I have a quadtree class and it works fine in putting all the objects in the appropriate nodes/leafs and i have a list of all the objects but how do I get only the leafs which contain colliding objects? If i were to check every object and see if it were in the same node as all the other objects it would kind of defeat the purpose. If you have made it this far in reading my message I thank you hah, i just am so frusterated why i cannot figure out what i'm not understanding here.

Thanks guys

Ed


EDIT---------------------------
I do this a lot, when I think about how to ask a question i think about the problem differently. I think i figured it out, making a list for each of the collidable objects which share the same leaf and just check those objects positions. Also will add any objects in the parent rectangle and so on up the tree. I dont kno why i was confusing myself for something so simple. If there is a better more efficient way please let me know. thanks
Undead Empire -> http://bit.ly/dYdu3z
Gamerscore Tracker -> http://bit.ly/vI4T4X
Undead Empire: Hellfire -> http://bit.ly/1AgC4ZY
facebook.com/BigRookGames twitter.com/BigRookGames
youtube.com/user/bigrookdigital
User avatar
MrDeathNote
ES Beta Backer
ES Beta Backer
Posts: 594
Joined: Sun Oct 11, 2009 9:57 am
Current Project: cocos2d-x project
Favorite Gaming Platforms: SNES, Sega Megadrive, XBox 360
Programming Language of Choice: C/++
Location: Belfast, Ireland
Contact:

Re: quad tree confusion

Post by MrDeathNote »

I was halfway through a fairly lengthy reply when i thought i'd check out the forum in case you posted there. Thanks god I did lol, glad you got this figured out man.
http://www.youtube.com/user/MrDeathNote1988

Image
Image

"C makes it easy to shoot yourself in the foot. C++ makes it
harder, but when you do, it blows away your whole leg." - Bjarne Stroustrup
User avatar
EdBoon
Chaos Rift Junior
Chaos Rift Junior
Posts: 258
Joined: Fri May 28, 2010 10:44 pm
Current Project: Top down multiplayer shooter using unity 3D
Favorite Gaming Platforms: 360, SNES, ps1
Programming Language of Choice: C++, C#
Location: Atlanta, GA
Contact:

Re: quad tree confusion

Post by EdBoon »

Haha, oh man I'm sorry I should have let you know too! thanks though :)

I actually have been talking with this guy and he has a newer version of his quad tree in c# that is really kick ass. You have probably come across his old quad tree code if you have ever searched it. He hasn't posted it on his website homepage yet so you have to use this link to access it. Check it out if you're interested in quad trees, he provides code too and its pretty easy to modify!

article: http://kyleschouviller.com/files/spatia ... /page1.htm
Undead Empire -> http://bit.ly/dYdu3z
Gamerscore Tracker -> http://bit.ly/vI4T4X
Undead Empire: Hellfire -> http://bit.ly/1AgC4ZY
facebook.com/BigRookGames twitter.com/BigRookGames
youtube.com/user/bigrookdigital
Post Reply