File indexing completed on 2025-02-16 03:29:35

0001 /*
0002 * Copyright (c) 2006-2010 Erin Catto http://www.box2d.org
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/Contacts/b2ChainAndPolygonContact.h>
0020 #include <Box2D/Common/b2BlockAllocator.h>
0021 #include <Box2D/Dynamics/b2Fixture.h>
0022 #include <Box2D/Collision/Shapes/b2ChainShape.h>
0023 #include <Box2D/Collision/Shapes/b2EdgeShape.h>
0024 
0025 #include <new>
0026 
0027 b2Contact* b2ChainAndPolygonContact::Create(b2Fixture* fixtureA, int32 indexA, b2Fixture* fixtureB, int32 indexB, b2BlockAllocator* allocator)
0028 {
0029     void* mem = allocator->Allocate(sizeof(b2ChainAndPolygonContact));
0030     return new (mem) b2ChainAndPolygonContact(fixtureA, indexA, fixtureB, indexB);
0031 }
0032 
0033 void b2ChainAndPolygonContact::Destroy(b2Contact* contact, b2BlockAllocator* allocator)
0034 {
0035     ((b2ChainAndPolygonContact*)contact)->~b2ChainAndPolygonContact();
0036     allocator->Free(contact, sizeof(b2ChainAndPolygonContact));
0037 }
0038 
0039 b2ChainAndPolygonContact::b2ChainAndPolygonContact(b2Fixture* fixtureA, int32 indexA, b2Fixture* fixtureB, int32 indexB)
0040 : b2Contact(fixtureA, indexA, fixtureB, indexB)
0041 {
0042     b2Assert(m_fixtureA->GetType() == b2Shape::e_chain);
0043     b2Assert(m_fixtureB->GetType() == b2Shape::e_polygon);
0044 }
0045 
0046 void b2ChainAndPolygonContact::Evaluate(b2Manifold* manifold, const b2Transform& xfA, const b2Transform& xfB)
0047 {
0048     b2ChainShape* chain = (b2ChainShape*)m_fixtureA->GetShape();
0049     b2EdgeShape edge;
0050     chain->GetChildEdge(&edge, m_indexA);
0051     b2CollideEdgeAndPolygon(    manifold, &edge, xfA,
0052                                 (b2PolygonShape*)m_fixtureB->GetShape(), xfB);
0053 }