2010-09-09 19:41:14 +00:00
|
|
|
/********************************************************************************
|
|
|
|
* ReactPhysics3D physics library, http://code.google.com/p/reactphysics3d/ *
|
|
|
|
* Copyright (c) 2010 Daniel Chappuis *
|
|
|
|
*********************************************************************************
|
|
|
|
* *
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy *
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal *
|
|
|
|
* in the Software without restriction, including without limitation the rights *
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell *
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is *
|
|
|
|
* furnished to do so, subject to the following conditions: *
|
|
|
|
* *
|
|
|
|
* The above copyright notice and this permission notice shall be included in *
|
|
|
|
* all copies or substantial portions of the Software. *
|
|
|
|
* *
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN *
|
|
|
|
* THE SOFTWARE. *
|
|
|
|
********************************************************************************/
|
2009-02-09 11:21:46 +00:00
|
|
|
|
|
|
|
// Libraries
|
2010-08-05 15:06:34 +00:00
|
|
|
#include "Body.h"
|
2010-09-01 16:37:13 +00:00
|
|
|
#include "BroadBoundingVolume.h"
|
|
|
|
#include "NarrowBoundingVolume.h"
|
2009-02-09 11:21:46 +00:00
|
|
|
|
2009-02-10 11:54:34 +00:00
|
|
|
// We want to use the ReactPhysics3D namespace
|
|
|
|
using namespace reactphysics3d;
|
2009-02-09 11:21:46 +00:00
|
|
|
|
2009-02-10 11:54:34 +00:00
|
|
|
// Constructor
|
2010-09-01 16:37:13 +00:00
|
|
|
Body::Body(double mass) throw(std::invalid_argument)
|
|
|
|
: mass(mass), broadBoundingVolume(0), narrowBoundingVolume(0) {
|
2010-07-24 17:14:29 +00:00
|
|
|
// Check if the mass is not larger than zero
|
|
|
|
if (mass <= 0.0) {
|
2009-02-10 11:54:34 +00:00
|
|
|
// We throw an exception
|
2010-07-24 17:14:29 +00:00
|
|
|
throw std::invalid_argument("Exception in Body constructor : the mass has to be different larger than zero");
|
2009-02-10 11:54:34 +00:00
|
|
|
}
|
|
|
|
}
|
2009-02-09 17:00:18 +00:00
|
|
|
|
2009-02-10 11:54:34 +00:00
|
|
|
// Destructor
|
|
|
|
Body::~Body() {
|
2010-09-01 16:37:13 +00:00
|
|
|
if (broadBoundingVolume) {
|
|
|
|
delete broadBoundingVolume;
|
|
|
|
}
|
|
|
|
if (narrowBoundingVolume) {
|
|
|
|
delete narrowBoundingVolume;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the broad-phase bounding volume
|
|
|
|
void Body::setBroadBoundingVolume(BroadBoundingVolume* broadBoundingVolume) {
|
|
|
|
assert(broadBoundingVolume);
|
|
|
|
this->broadBoundingVolume = broadBoundingVolume;
|
|
|
|
broadBoundingVolume->setBodyPointer(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the narrow-phase bounding volume
|
|
|
|
void Body::setNarrowBoundingVolume(NarrowBoundingVolume* narrowBoundingVolume) {
|
|
|
|
assert(narrowBoundingVolume);
|
|
|
|
this->narrowBoundingVolume = narrowBoundingVolume;
|
|
|
|
narrowBoundingVolume->setBodyPointer(this);
|
2009-02-10 11:54:34 +00:00
|
|
|
}
|