XNA 2D mouse picking

Posted by Corndog on Stack Overflow See other posts from Stack Overflow or by Corndog
Published on 2010-12-24T06:50:34Z Indexed on 2010/12/24 6:54 UTC
Read the original article Hit count: 438

Filed under:
|
|
|
|

I'm working on a simple 2D Real time strategy game using XNA. Right now I have reached the point where I need to be able to click on the sprite for a unit or building and be able to reference the object associated with that sprite. From the research I have done over the last three days I have found many references on how to do "Mouse picking" in 3D which does not seem to apply to my situation. I understand that another way to do this is to simply have an array of all "selectable" objects in the world and when the player clicks on a sprite it checks the mouse location against the locations of all the objects in the array. the problem I have with this approach is that it would become rather slow if the number of units and buildings grows to larger numbers. (it also does not seem very elegant) so what are some other ways I could do this. (Please note that I have also worked over the ideas of using a Hash table to associate the object with the sprite location, and using a 2 dimensional array where each location in the array represents one pixel in the world. once again they seem like rather clunky ways of doing things.)

© Stack Overflow or respective owner

Related posts about c#

Related posts about game-development