青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

牽著老婆滿街逛

嚴以律己,寬以待人. 三思而后行.
GMail/GTalk: yanglinbo#google.com;
MSN/Email: tx7do#yahoo.com.cn;
QQ: 3 0 3 3 9 6 9 2 0 .

Broadphase Collision Detection

原文地址:http://www.ziggyware.com/readarticle.php?article_id=128

Broadphase Collision Detection


By John Wells, 2007



Special thanks to Krisc for helping get this article online



What is broadphase collision detection?


     Simply put, broadphase collision detection is a method of eliminating costly collision tests, avoid redundant tests, and just not testing most of your objects anyways.


     "Rubbish!", you say, "How can you determine to objects are not colliding if you never test them together?"

Good question. Well, it turns out the easiest way to figure to out something is not colliding is to create a situation where you know, that the object (and potentially 1000s of others) could never collide with something in the first place!

Can I make Grand Theft Halo 2 with it?


     Well, sort of. The broadphase method is just a part of the puzzle; but an enabler of complex games? Sure. The classic problem arises where in making a game; you have two objects, a player and the ground. Testing them for collision becomes easy, and you can use the results to render properly, do physics, or play sound effects. After a while, you've added barrels, trees, and goblins to your game and suddenly testing each object against each other object is getting very difficult.

     Big O notation would describe this as an O(n²) problem, which means as your game grows, the performance is dropping exponentially because of all the collision checks. We need to find a method to drop this O notation to a much more linear (or better) performance curve. We may never get to O(1) performance, but with even mildly complex games, we'll certainly have to do something if we want any amount of detail.

Spatial partitioning


     Broadphase collision detection is accomplished through a spatial partitioning algorithm, of which there are many known varieties. The two main branches of widely used algorithms either form some sort of grid or bucket system, or use a sorting algorithm. As with any algorithmic choice, no answer is one-size fits all, and there are several pluses and minuses to each method. For my purposes, I need an algorithm that has the following features:


  • Creates no heap-based objects during runtime (The 360 hates that!)
  • Can take advantage of multiple processors/cores
  • Runs quickly, but does not take long to add/remove objects
  • Does not limit the world size and works with disparate sized objects


Sort-and-Sweep


     Of course no such algorithm exists, but for my purposes, the best choice was a sort-and-sweep algorithm. Also known as sweep-and-prune, this is considered by many to be the naive algorithm to implement, but it can still be very effective when used properly. The idea behind any spatial sorting algorithm is to break the problem of interference detection into a 'greater than' or 'less than' or 'equal to' problem. Implementing this algorithm with a simple array and an IComparer<> instance is actually quite easy and should scale well to many types of games you might think would be unfit for a '1D' implementation. For instance, Grand Theft Halo 2 would be a good candidate, as would any 2D-Platformer, because the action in these games generally takes place on one or two axes. A space shooter, where objects exist (bountifully) on three axes would not be a great choice for this algorithm.

     Although it's not intuitive, follow me on this one. To implement this algorithm, take every object in your world, consider where they begin and end on one arbitrary axis, and sort that list. Say we're sorting on the X axis; objects with a bounding box minimum value of 8 sort before an object with a bounding box minimum of 15. We've effectively broken a 3D problem down to 1D - the interesting thing is that as long as your objects are not highly clustered, performance can be amazing.


Delimiters


     When breaking the 3D problem down to 1D, we need to keep track of only two things in our array, for each object: where it starts on that axis, and where it ends. Consider the following structure used to represent a delimiter:


struct Delimiter
{
public BoundaryType Boundary;
public MyGameObject Body;
}
enum BoundaryType
{
Begin, End
}
class MyGameObject
{
public BoundingBox Bounds;
//... health, status, etc ...
    }




     So, for a moment, consider a 1D array, and imagine putting delimiters from every object in our game into the array, and then sorting that array. The only thing we need to ensure is that the 'Body' value has some sort of bounding volume such as an XNA BoundingBox or BoundingSphere. Suddenly, our world can be enumerated in 1D fashion, and in a bit I'll show you how finding objects can be optimized for speed.


Delimiter Comparison


     The heart of a sorting algorithm is the comparer, and luckily the .NET Framework already has a standard pattern that will work fine for our needs, plus, by implementing a generic IComparer<Delimiter> class, we get loads of built-in functionality from the System.Array class static methods. Consider the following comparer, which for the purposes of example only compares on the X axis:


class DelimiterComparer : IComparer<Delimiter>
{
public int Compare(Delimiter a, Delimiter b)
{
if  (a.Boundary == BoundaryType.Begin && b.Boundary == BoundaryType.Begin)
return a.Body.Bounds.Min.X.CompareTo(b.Body.Bounds.Min.X);
else if (a.Boundary == BoundaryType.Begin && b.Boundary == BoundaryType.End)
return a.Body.Bounds.Min.X.CompareTo(b.Body.Bounds.Max.X);
else if (a.Boundary == BoundaryType.End && b.Boundary == BoundaryType.Begin)
return a.Body.Bounds.Max.X.CompareTo(b.Body.Bounds.Min.X);
else
return a.Body.Bounds.Max.X.CompareTo(b.Body.Bounds.Max.X);
}
}



     "Oh gosh," you say, "You've lost me!" Okay, lets try pictures; this concept sounds simple but can get confusing quickly without some visual aid. Consider a small collection of objects, now figure we've scattered them about our world and are arranging them based upon their X axis values only. In the picture below, I've labeled the 'Begin' (as '<') and 'End' (as '>')
of the objects near the axis. Note that the Y and Z axis arrangement of these objects isn't shown below, in fact, the entire point is that at this point we don't care.

Objects


     Now consider taking the objects above, and sorting them into our array of delimiters. Here's the array:

Array



     Filling the array with delimiters for the beginning and end of each object is pretty simple. The Array.Sort() method takes our array, in un-sorted form, and an instance of our comparer class, and creates a sorted array like this one: (The #'s above the array elements show you which begin/end delimiter points to which body)

Sorted



Finding Interference


     Wow, with very little theory, we're at the point where we can begin to detect collisions! Almost, we're actually ready to detect what is called interference, a 1D collision. Going from interference to collision is simple, however, because we can test 'interfering' objects' bounding volumes to determine collision. For rendering purposes, this is almost always enough. In a physics engine, however, we may need to go one step further and find out if the actual objects within the bounding volumes intersect.

     There are two approaches to finding interference, first, you could ask the broadphase algorithm to send you each pair of interfering objects, and second you could ask it "Which objects interfere with this one?" If you use the second bit of logic you will be better suited to multiple core execution and can use the .NET IEnumerable<> pattern.

     Either way you go, the algorithm is very simple to implement:

  1. Create the 'Begin' delimiter for an object.
  2. Use Array.BinarySearch<> to find the index of that delimiter within your array.
  3. Enumerate through the array from that index on, following rules 4-6.
  4. If you hit the end of the array, you're done.
  5. If you hit another 'Begin' delimiter, you've found interference.
  6. If you pass the 'End' delimiter for the original object, start ignoring rule 5.
  7. If you hit an 'End' delimiter, construct the 'Begin' delimiter for it and compare to the delimiter at the index from rule 1. When greater than or equal to zero, ignore this delimiter. When less than zero, you've found interference.


Optimizations


     The first thing you might notice is that rule 4, above, indicates you might be searching through much of the array looking for interfering objects. A simple optimization is to keep track of which delimiters border void space. This is simple figure out, because each update we have to sort the array, and in that time we can walk through it and mark some delimiters as 'touches void'. In the below diagram, I've started a stack, indicated in text below the array. Every time I hit a 'Begin', I add one, every time I hit an 'End' I remove one. Thus, every time the stack is zero, I know that there are no more objects in that space. I can then amend rule 4, above, to say "Also stop when you hit a delimiter that borders the void." The dotted lines below represent the placement of the 'Touches Void' flags.

Delimeted


     When working with the .NET Framework, and especially with the .NET Compact Framework on the Xbox 360, avoiding garbage is a must. Two things we must be aware of are that we don't create new arrays or resize arrays dynamically where possible, and that we don't box values. Boxing is easy to do, for instance if you opt for the IEnumerable<> pattern, you might create the following structure:


struct MyEnumerator : IEnumerable<MyGameObject>, IEnumerator<MyGameObject>
{
//... implementation ...
    }



     In doing so, you avoid the garbage created by using the yield return keyword, but you will cause boxing (and thus garbage) unless you specifically reference your enumerator type as MyEnumerator, and not through the interfaces it implements. This one can be tricky, and certainly obfuscate your code, so take it with a grain of salt.

     To avoid resizing arrays and having portions stored non-contiguously in memory, you might consider using a default large array and keeping track of how many items in the array are 'in use.' Do avoid, however, leaving references to MyGameObject in the unused portion of the array, and consider growing when needed, too. You might be tempted to use List<Delimiter>, which has a .ToArray() method; but watch out, that's a new array you're playing with!

     Every so often, you should evaluate the clustering of the sorted array, and potentially decide to start sorting on another axis. This axis, of course, does not have to be a cardinal axis, but picking X, Y, or Z is usually most straight forward. The best candidate axis could be either fixed, or better yet, the axis where values vary the most. For my Grand Theft Halo 2 example, for instance, this axis would not be the Y axis, because most objects usually cluster on the ground in those kind of games. Less
axial clustering means more 'Touches Void' flags, means fewer array enumerations.



References



  • Johnnylightbulb - My project on CodePlex, where I am implementing this algorithm
  • Real-Time Collision Detection, book by Christer Ericson - A very useful resource that is invaluable when discovering and implementing any collision related algorithm, an excellent book.
  • Erwin Couman's Physics Simulation Forum - Centered around physics, but still useful for non-physics collision detection and trolled by the best of the best of industry experts in the field.
  • XNADEV.RU - A C# implementation of Erwin Coumans' Bullet engine (see previous link)
  • Open Dynamics Engine - An open source physics engine that has many C and C++ algorithms for collision detection implemented.
  • GeometricTools.com - Dave Eberly's site with code and algorithms from his many incredibly useful books.

posted on 2008-01-09 17:04 楊粼波 閱讀(522) 評論(0)  編輯 收藏 引用


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            久久免费国产精品1| 欧美日韩国产美| 欧美韩日视频| 欧美国产第一页| 亚洲国产天堂久久综合| 美女任你摸久久| 欧美第一黄色网| 亚洲人成网站精品片在线观看| 亚洲人成网站在线观看播放| 一本色道久久综合亚洲二区三区| 在线综合视频| 久久精品女人天堂| 欧美激情无毛| 国产精品私拍pans大尺度在线| 国产欧美一区二区三区沐欲| 91久久久久久| 欧美亚洲一区| 亚洲国产小视频| 性欧美大战久久久久久久久| 欧美va天堂| 国产午夜精品久久久| 亚洲精品美女在线观看| 羞羞色国产精品| 亚洲高清不卡| 欧美一区二区三区久久精品茉莉花| 麻豆精品在线播放| 国产精品国产三级国产普通话三级 | 一区二区欧美精品| 欧美在线观看你懂的| 先锋影音网一区二区| 久久久精品欧美丰满| 亚洲高清av| 欧美在线视频日韩| 欧美日韩亚洲在线| 伊人蜜桃色噜噜激情综合| 在线亚洲精品| 欧美成人午夜影院| 亚洲欧美综合v| 欧美日韩日日夜夜| 亚洲国产人成综合网站| 欧美在线播放高清精品| 亚洲精品一区在线观看香蕉| 久久夜色精品亚洲噜噜国产mv| 国产精品久久久久免费a∨大胸| 亚洲国产一区二区精品专区| 久久九九国产精品| 亚洲一级二级| 国产精品va| 亚洲天堂久久| 亚洲精品日产精品乱码不卡| 欧美aⅴ一区二区三区视频| 国产亚洲欧美日韩日本| 亚洲欧美综合另类中字| 亚洲精品在线看| 欧美激情精品久久久久| 亚洲黄一区二区三区| 免费一级欧美片在线播放| 欧美在线播放| 国产综合香蕉五月婷在线| 欧美专区在线| 午夜久久影院| 国产尤物精品| 久久女同互慰一区二区三区| 午夜精品一区二区三区在线播放| 国产精品欧美久久| 新狼窝色av性久久久久久| 亚洲图片欧美日产| 国产美女精品视频| 欧美一区二区精品| 亚洲在线黄色| 国产一区二区三区在线观看网站 | 亚洲国产精品毛片| 女人色偷偷aa久久天堂| 蜜臀av一级做a爰片久久| 最新中文字幕一区二区三区| 亚洲黄色三级| 欧美性大战久久久久| 午夜伦欧美伦电影理论片| 亚洲在线黄色| 18成人免费观看视频| 欧美高清在线视频| 欧美视频精品在线| 久久av二区| 免费看亚洲片| 亚洲一区二区免费看| 欧美亚洲视频在线观看| 亚洲国产高清aⅴ视频| 亚洲人成在线观看| 亚洲欧美日韩视频一区| 国产午夜精品久久久| 欧美刺激午夜性久久久久久久| 欧美理论大片| 久久福利资源站| 欧美国产精品v| 久久精品91久久香蕉加勒比| 鲁大师影院一区二区三区| 亚洲午夜女主播在线直播| 欧美在线视频a| 在线视频一区二区| 久久青草久久| 亚洲男人第一网站| 鲁大师成人一区二区三区 | 亚洲电影免费在线| 国产精品国产一区二区| 媚黑女一区二区| 国产精品免费福利| 91久久精品www人人做人人爽| 国产色视频一区| 999亚洲国产精| 亚洲黄色免费电影| 欧美一区二区三区精品电影| 亚洲一区二区三区四区五区午夜| 久久久亚洲国产美女国产盗摄| 亚洲一区二区三区精品视频| 美腿丝袜亚洲色图| 久久久久中文| 国产日本欧洲亚洲| 一本色道久久综合亚洲精品婷婷| 亚洲国产一区二区视频| 午夜在线播放视频欧美| 亚洲一区二区成人在线观看| 欧美阿v一级看视频| 另类av一区二区| 国产一区二区日韩精品欧美精品| 宅男精品导航| 亚洲一区视频在线观看视频| 欧美高清日韩| 欧美激情精品久久久久| 激情六月综合| 久久精品国产一区二区电影| 久久精品夜色噜噜亚洲a∨| 国产精品久久久久77777| 日韩午夜在线观看视频| 日韩视频中文字幕| 欧美精品一区在线| 亚洲精品日韩欧美| 中日韩午夜理伦电影免费| 欧美精品国产| 夜夜嗨一区二区| 亚洲一区激情| 国产精品高潮久久| 亚洲网站视频| 久久久www免费人成黑人精品| 国产视频亚洲精品| 久久aⅴ国产紧身牛仔裤| 久久天堂精品| 亚洲高清视频在线| 免费亚洲一区二区| 亚洲三级影院| 午夜视频久久久久久| 国产欧美午夜| 鲁大师影院一区二区三区| 亚洲国产成人精品女人久久久| 亚洲国产精选| 欧美人交a欧美精品| 一本久道久久综合婷婷鲸鱼| 欧美视频三区在线播放| 亚洲网站视频| 久久先锋影音| 亚洲免费激情| 欧美性色视频在线| 午夜亚洲影视| 欧美夫妇交换俱乐部在线观看| 亚洲精品视频在线| 欧美日韩在线精品| 午夜精品国产更新| 欧美高清hd18日本| 亚洲午夜电影网| 国内精品国产成人| 欧美精彩视频一区二区三区| 亚洲尤物影院| 亚洲国产成人在线| 午夜视频一区二区| 亚洲黄色毛片| 国产日韩视频| 欧美日韩精品在线| 久久久久久久一区二区三区| 日韩视频免费看| 狼人天天伊人久久| 亚洲天堂第二页| 亚洲国产精品久久| 国产精品亚洲美女av网站| 蜜臀91精品一区二区三区| 亚洲欧美国产制服动漫| 亚洲国产精品综合| 久久久之久亚州精品露出| 亚洲一区精品电影| 亚洲精品国产精品国产自| 国产视频亚洲精品| 国产精品久久久久久模特 | 欧美中文字幕精品| 99视频一区二区| 亚洲国产精品一区二区第一页| 久久精品水蜜桃av综合天堂| 亚洲性夜色噜噜噜7777| 亚洲黄色尤物视频| 在线观看亚洲精品视频| 国产午夜精品视频| 国产精品久久久久久影视| 欧美日韩精品久久久|