Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 7 of 7

Thread: Efficient Object Detecting?

  1. #1
    Member Gravity Games's Avatar
    Join Date
    May 2012
    Posts
    152
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default Efficient Object Detecting?

    Hi, I'm currently working on a 2d platformer engine and I'm trying to make it as optomised as possible. The problem however, is that I can't figure out how to efficiently detect objects in an Arraylist without going through the whole thing like so:

    for(int f=0;f<Level.tile.size();f++){
    			if(Level.tile.get(f).contains(pt1) || Level.tile.get(f).contains(pt2)){
    				if(Level.tile.get(f).id==1 || Level.tile.get(f).id==2 || Level.tile.get(f).id==3 || Level.tile.get(f).id==10){
    				tiley=Level.tile.get(f).y;
    				isTouchingFloor=true;
    				return true;
    				}
    			}
    		}

    Is it possible to only check the objects that are in between two specific x and y points king of like:

    If the object's x and y are greater than the screen's top right corner and less than the screen's bottom right corner, then check the object in relation to the player.
    Current Projects (and planned release dates):

    Chomp's Wacky Worlds [???] (PC, Android and Ouya)
    Kyle the Caiman [???] (PC, Android and Ouya)
    KTC: King Crocko's Mystic Maze [???] (PC, Android and Ouya)


  2. #2
    Super Moderator pbrockway2's Avatar
    Join Date
    Jan 2012
    Posts
    987
    Thanks
    6
    Thanked 206 Times in 182 Posts

    Default Re: Efficient Object Detecting?

    If you want to find objects by position you'll need a data structure with more information than a list (who's only notion of order is the elements' position in the list). Perhaps an R-tree.

  3. #3
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: Efficient Object Detecting?

    Use a spatially-aware data structure.

    The simplest would be a grid. For most cases this will probably be good.

    It's possible to also do some type of hierarchical structure like a QuadTree or a Kd-tree, though I would say these are overkill in 2d space (especially with many moving items).

  4. #4
    Member Gravity Games's Avatar
    Join Date
    May 2012
    Posts
    152
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default Re: Efficient Object Detecting?

    From what you posted, grids seem a bit complicated helloworld, especially when trying to implement them with the current format. Is there some sort of way to check only objects that are being touched by the player object perhaps?
    Current Projects (and planned release dates):

    Chomp's Wacky Worlds [???] (PC, Android and Ouya)
    Kyle the Caiman [???] (PC, Android and Ouya)
    KTC: King Crocko's Mystic Maze [???] (PC, Android and Ouya)

  5. #5
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: Efficient Object Detecting?

    You need to find which objects could be touching your player first before you actually can check if they do touch.

    That's where your spatial data structures come in: they arrange your objects in such a way that you can navigate through them based off of spatial coordinates rather than indices. A grid just happens to be the simplest one in 2D space I know of.

    A grid isn't that complicated of an idea, you just take your 2D space and divide it into an evenly spaced 2D grid buckets. Every object who's bounding box happens to be in a certain grid gets added to that grid's list of objects. When you want to find objects which could potentially collide with a certain object (say, your player), you first figure out which grid buckets your player's bounds overlap with, then retrieve all the objects which happen to be in those grid buckets. It's easy to figure out which grids your player's bounding box overlaps with because the data structure has a simple linear transform from (row,col) indices to spatial (x,y) dimensions.

    grids do have down sides, for example they don't do so well when you have objects have very different sizes from each other or when you have to move large objects, but for the most part they work really well in 2D space.

    You could also use a basic scan-line method (I can't remember the actual name).

    Basic idea:

    Sort your objects in the array by their coordinate (say, first by x then by y). Then run from one side of the array to the other (or use a modified binary search), comparing bounding boxes with your player's bounding box.

    This method works fine if you're not expecting a lot of objects to be cluttered around a certain portion of the primary axis (say a lot of objects between x=0 and x=10 where you're searching). A grid improves on this by first making the spatial searching much quicker/easier and reducing the size of the search so there would have to be a lot of objects close to your player in both the x and y directions before you start having issues.

    If you have a 2D side-scroller application where there really isn't much an up/down direction, a scan-line method would probably be good enough. However, if your application has a 2d map with objects scattered more or less in both x and y coordinates, you may want to consider using a grid. Note that a grid would probably do about as well in 2D side-scroller applications (it's hard to tell because there are some factors which a scan-line method has the advantage and others where a grid has the advantage).

    Last note:

    You may not need anything at all. Profile and test your program before you begin optimizing to help you identify if it is even required and if so, what areas can provide the biggest gains. You may also find that a simple scan-line works better or good enough for your needs. That's part of the fun.
    Last edited by helloworld922; October 4th, 2012 at 01:35 AM.

  6. #6
    Super Moderator jps's Avatar
    Join Date
    Jul 2012
    Posts
    2,642
    My Mood
    Daring
    Thanks
    90
    Thanked 263 Times in 232 Posts

    Default Re: Efficient Object Detecting?

    This does not answer your question but maybe you will like to see it anyway.
    (Level.tile.get(f).id==1 || Level.tile.get(f).id==2 || Level.tile.get(f).id==3 || Level.tile.get(f).id==10)
    I favor the switch to repeated or statements. For one it seems less redundant. Another reason is that the common things can be grouped in a physically close place where the reader can see that several values cause the same actions. Finally the switch is ever expandable and more easily adapted to changes.
    switch(Level.tile.get(f).id) {
    	case 0:
    		triggerErrorReport();
    		break;
     
    	case 1://fallthrough
    	case 2://fallthrough
    	case 3://fallthrough
    	case 10:
    		tiley=Level.tile.get(f).y;
    		isTouchingFloor=true;
    		break;
     
    	case 4:
    		giveBonus();
    		showHeadshotCloseup();
    		break;
     
    	default:
    		crashComputer();
    }

  7. #7
    Member Gravity Games's Avatar
    Join Date
    May 2012
    Posts
    152
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default Re: Efficient Object Detecting?

    Yes I know about the case method and have used it in other places, I just haven't bothered to change that yet, as I'm not 100% familiar with it yet. I'll try and see if it really needs a grid, and if so, I'll try to implement it, but the problem is that I tend to be a very visual person, so that's why the page you linked seems a bit complex to me. The main reason I'm asking though, is that larger stages might need more memory because of having to check every object.
    Current Projects (and planned release dates):

    Chomp's Wacky Worlds [???] (PC, Android and Ouya)
    Kyle the Caiman [???] (PC, Android and Ouya)
    KTC: King Crocko's Mystic Maze [???] (PC, Android and Ouya)

Similar Threads

  1. help with detecting certain characters
    By goochasauras in forum What's Wrong With My Code?
    Replies: 3
    Last Post: September 27th, 2012, 03:30 PM
  2. [SOLVED] detecting pc type
    By usama8800 in forum Java Theory & Questions
    Replies: 1
    Last Post: June 26th, 2012, 02:17 PM
  3. Reading from ResultSet to Object and from object Object Array
    By anmaston in forum What's Wrong With My Code?
    Replies: 4
    Last Post: April 7th, 2011, 06:11 AM
  4. Collision Detecting
    By iams3b in forum AWT / Java Swing
    Replies: 0
    Last Post: February 6th, 2011, 01:48 AM