Download presentation
Presentation is loading. Please wait.
Published byMadison Byrd Modified over 9 years ago
1
ONLINE CONFERENCE DESIGN.BUILD.DELIVE R with WINDOWS PHONE THURSDAY 24 MARCH 2011
2
Edward Powell Vectric Ltd @VeraShackle XNA-UK Blog vera@XNA-UK.net 3D Collisions
3
Assumptions You have reasonable understand basic 3D rendering with BasicEffect, Components, Services and the Content Pipeline. You have had a crack at some 2D games You have some ideas about the principles 2D collision detection. You’re probably better at C# than me!
4
Content 15 mins - A bit of theory 15 mins - Building a simple, but flexible system 5 mins - The Full Isaac Newton!
5
Elements of a collision system Collision detection – Have any objects collided? – Which object pairs have collided? – In what way have the objects collided? Collision Resolution – Simple event? – Complex interaction? – Correcting for detection lag?
6
Collision Detection
7
Discrete time step between checks The actual moment of collision is never going to coincide with the checking algorithm. So Two Options: – Look forward to find collisions about to occur Complex interactions, complex algorithm Never quite sure when the next check will be – Look back at collisions that have already occurred Simple algorithm (relatively!) Know time since the last check But, have to correct things that have already occurred
8
Looking back (hopefully not in anger) Things to watch out for: – Some overlap already at the point of detection- ‘Drill through’... – Complete containment – boundaries no longer intersect Swept volumes? – Multiple apparently ‘simultaneous’ collisions
9
Have objects collided – the lessons from 2D? Pixel perfect collision was too expensive – We checked for overlapping bounding rectangle or circle – Multiple collision shapes per object – Use hierarchy of collision areas to reduce the pixel perfect search to a manageable area
11
Same principles apply in 3D - Especially under WP7! triangle-triangle is the new pixel perfect! Same solutions, but replace 2D areas with 3D entities...
12
Collision Entities XNA Intrinsics – BoundingBox (AABB) – BoundingFrustum – BoundingSphere – Plane – Ray – Model (via spheres) Other common ones – Capsule – swept volumes – Oriented Bounding Box (OBB) – Height map – ‘Slabs’ – Discrete Oriented Polytopes (DOP)!! – Triangle Mesh
13
Reduced Poly Collision Skin
14
Collision Primitives Summary... We don’t need a one-to- one mapping of collision primitive to drawable object Several simple volumes is generally cheaper than a single more complicated one. We can still do high- accuracy collision tests, but limit the volume with cheaper tests first. (Image Source: http://sharky.bluecog.co.nz )http://sharky.bluecog.co.nz
15
Pruning the Collision Search Space Brute force Refining Bounding Volumes Sweep & Prune (SAP) – Insertion sort, relies on the fact that objects tend to be in a similar state between time steps. Grid Registration BSP, kd-tree, quad-tree, oct-tree...
16
Collision Resolution Wotcha gonna do about it...
17
Approaches to Resolvers Distinct Resolver Class – Single location for all your resolution code – Needs to be modified as new entities are added – What collision information is needed? Entities Resolve their own collisions – Collision entities are self-contained – Entities need to ‘know’ about at least some others – Easily extensible
18
Common Collision Situations Entities: – Player – Non-players – Scenery – ‘bullets’ Up to 14 distinct collision pairs which may each require unique resolution algorithms
19
How much information do you need about the collision? When did the collision occur? Which point (or points) contacted? Other significant properties of the object? – Velocity – Mass – Angular Momentum, coefficient of restitution... etc. etc.!
20
Implementation Simple Collision Manager Component – Brute force check each update for... ICollidable Interface – Collision check – Collision resolution 2 Basic Classes: – CollidableSphere – CollidablePlane
21
Implementation
22
Simple start, but... Bounding Spheres are calculated by the pipeline for meshes Discrete Oriented Polytope (DOP) – defining convex volumes using only planes. (Image Source: epicgames.com)
23
Defining a volume with Planes
24
Has a sphere collided with a plane? Distance = Plane.DotCoordinate(sphere.Centre) 1.If the distance is positive, the sphere is in front of the plane 2.If the distance is negative, the sphere is behind the plane 3.If the distance from the plane is less than the radius of the sphere - COLLISION
25
Collision with Volume In front of 1 plane, but intersecting 0. No collision In front = 2 Intersecting = 0 No Collision In front = 2 Intersecting = 1 No Collision Rule: Must be intersecting all the planes we’re in front of...?
26
Collision with Volume In front = 1 Intersecting = 1 COLLISION In front = 2 Intersecting = 2 COLLISION Rule: Must be intersecting all the planes we’re in front of...? In front = 0 COLLISION
27
Volume Edges & Corners In front = 2 Intersecting = 2 But no collision
28
Simple Collision System Demo http://www.youtube.com/watch?v=5Xe2twpDe_8 XNACollisions_1 Duration: 1:14s
29
Using a Full Physics Engine Examples – Jitter (jitter-physics.com) Full & free use of dll Source code access US$400 – BEPUPhysics (www.bepu-games.com) Free for non-commercial use Open Source as of last week!! – JigLibX (jiglibx.codeplex.com) Free Open-source
30
JigLibX Phyics Demo http://www.youtube.com/watch?v=Sc7XOJgCVdc XNACollisions_2 Duration: 1:00s
31
Thank You for attending today’s Tech.Days Online Conference. Today’s Online Conference will be recorded. It will be made available on-demand very soon. Your Feedback Matters! Please complete the online evaluation form which will be emailed to you.
32
© 2008 Microsoft Corporation. All rights reserved. Microsoft, Windows, Windows Vista and other product names are or may be registered trademarks and/or trademarks in the U.S. and/or other countries. The information herein is for informational purposes only and represents the current view of Microsoft Corporation as of the date of this presentation. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information provided after the date of this presentation. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS PRESENTATION. ONLINE CONFERENCE
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.