open_toontown_panda3d/panda/src/physx/physxHeightFieldShape.cxx

66 lines
2.0 KiB
C++

// Filename: physxHeightFieldShape.cxx
// Created by: enn0x (15Oct09)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) Carnegie Mellon University. All rights reserved.
//
// All use of this software is subject to the terms of the revised BSD
// license. You should have received a copy of this license along
// with this source code in a file named "LICENSE."
//
////////////////////////////////////////////////////////////////////
#include "physxHeightFieldShape.h"
#include "physxHeightFieldShapeDesc.h"
TypeHandle PhysxHeightFieldShape::_type_handle;
////////////////////////////////////////////////////////////////////
// Function: PhysxHeightFieldShape::link
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
void PhysxHeightFieldShape::
link(NxShape *shapePtr) {
_ptr = shapePtr->isHeightField();
_ptr->userData = this;
_error_type = ET_ok;
set_name(shapePtr->getName());
PhysxActor *actor = (PhysxActor *)_ptr->getActor().userData;
actor->_shapes.add(this);
}
////////////////////////////////////////////////////////////////////
// Function: PhysxHeightFieldShape::unlink
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
void PhysxHeightFieldShape::
unlink() {
_ptr->userData = NULL;
_error_type = ET_released;
PhysxActor *actor = (PhysxActor *)_ptr->getActor().userData;
actor->_shapes.remove(this);
}
////////////////////////////////////////////////////////////////////
// Function : PhysxHeightFieldShape::save_to_desc
// Access : Published
// Description : Saves the state of the shape object to a
// descriptor.
////////////////////////////////////////////////////////////////////
void PhysxHeightFieldShape::
save_to_desc(PhysxHeightFieldShapeDesc &shapeDesc) const {
nassertv(_error_type == ET_ok);
_ptr->saveToDesc(shapeDesc._desc);
}