File indexing completed on 2025-08-03 03:50:01
0001 /* 0002 * Copyright (c) 2006-2009 Erin Catto http://www.gphysics.com 0003 * 0004 * This software is provided 'as-is', without any express or implied 0005 * warranty. In no event will the authors be held liable for any damages 0006 * arising from the use of this software. 0007 * Permission is granted to anyone to use this software for any purpose, 0008 * including commercial applications, and to alter it and redistribute it 0009 * freely, subject to the following restrictions: 0010 * 1. The origin of this software must not be misrepresented; you must not 0011 * claim that you wrote the original software. If you use this software 0012 * in a product, an acknowledgment in the product documentation would be 0013 * appreciated but is not required. 0014 * 2. Altered source versions must be plainly marked as such, and must not be 0015 * misrepresented as being the original software. 0016 * 3. This notice may not be removed or altered from any source distribution. 0017 */ 0018 0019 #include <Box2D/Dynamics/b2WorldCallbacks.h> 0020 #include <Box2D/Dynamics/b2Fixture.h> 0021 0022 // Return true if contact calculations should be performed between these two shapes. 0023 // If you implement your own collision filter you may want to build from this implementation. 0024 bool b2ContactFilter::ShouldCollide(b2Fixture* fixtureA, b2Fixture* fixtureB) 0025 { 0026 const b2Filter& filterA = fixtureA->GetFilterData(); 0027 const b2Filter& filterB = fixtureB->GetFilterData(); 0028 0029 if (filterA.groupIndex == filterB.groupIndex && filterA.groupIndex != 0) 0030 { 0031 return filterA.groupIndex > 0; 0032 } 0033 0034 bool collide = (filterA.maskBits & filterB.categoryBits) != 0 && (filterA.categoryBits & filterB.maskBits) != 0; 0035 return collide; 0036 } 0037 0038 b2DebugDraw::b2DebugDraw() 0039 { 0040 m_drawFlags = 0; 0041 } 0042 0043 void b2DebugDraw::SetFlags(uint32 flags) 0044 { 0045 m_drawFlags = flags; 0046 } 0047 0048 uint32 b2DebugDraw::GetFlags() const 0049 { 0050 return m_drawFlags; 0051 } 0052 0053 void b2DebugDraw::AppendFlags(uint32 flags) 0054 { 0055 m_drawFlags |= flags; 0056 } 0057 0058 void b2DebugDraw::ClearFlags(uint32 flags) 0059 { 0060 m_drawFlags &= ~flags; 0061 }