Files
XCEngine/engine/third_party/physx/source/physx/src/NpMaterial.h

111 lines
4.8 KiB
C++

// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of NVIDIA CORPORATION nor the names of its
// contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Copyright (c) 2008-2025 NVIDIA Corporation. All rights reserved.
// Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved.
// Copyright (c) 2001-2004 NovodeX AG. All rights reserved.
#ifndef NP_MATERIAL_H
#define NP_MATERIAL_H
#include "common/PxSerialFramework.h"
#include "foundation/PxUserAllocated.h"
#include "foundation/PxUtilities.h"
#include "CmRefCountable.h"
#include "PxsMaterialCore.h"
namespace physx
{
// Compared to other objects, materials are special since they belong to the SDK and not to scenes
// (similar to meshes). That's why the NpMaterial does have direct access to the core material instead
// of having a buffered interface for it. Scenes will have copies of the SDK material table and there
// the materials will be buffered.
class NpMaterial : public PxMaterial, public PxUserAllocated
{
public:
// PX_SERIALIZATION
NpMaterial(PxBaseFlags baseFlags) : PxMaterial(baseFlags), mMaterial(PxEmpty) {}
virtual void resolveReferences(PxDeserializationContext& context);
static NpMaterial* createObject(PxU8*& address, PxDeserializationContext& context);
void preExportDataReset() { Cm::RefCountable_preExportDataReset(*this); }
void exportExtraData(PxSerializationContext&) {}
void importExtraData(PxDeserializationContext&) {}
virtual void requiresObjects(PxProcessPxBaseCallback&){}
//~PX_SERIALIZATION
NpMaterial(const PxsMaterialCore& desc);
virtual ~NpMaterial();
// PxBase
virtual void release() PX_OVERRIDE;
//~PxBase
// PxRefCounted
virtual void acquireReference() PX_OVERRIDE;
virtual PxU32 getReferenceCount() const PX_OVERRIDE;
virtual void onRefCountZero() PX_OVERRIDE;
//~PxRefCounted
// PxMaterial
virtual void setDynamicFriction(PxReal) PX_OVERRIDE;
virtual PxReal getDynamicFriction() const PX_OVERRIDE;
virtual void setStaticFriction(PxReal) PX_OVERRIDE;
virtual PxReal getStaticFriction() const PX_OVERRIDE;
virtual void setRestitution(PxReal) PX_OVERRIDE;
virtual PxReal getRestitution() const PX_OVERRIDE;
virtual void setDamping(PxReal) PX_OVERRIDE;
virtual PxReal getDamping() const PX_OVERRIDE;
virtual void setFlag(PxMaterialFlag::Enum flag, bool value) PX_OVERRIDE;
virtual void setFlags(PxMaterialFlags inFlags) PX_OVERRIDE;
virtual PxMaterialFlags getFlags() const PX_OVERRIDE;
virtual void setFrictionCombineMode(PxCombineMode::Enum) PX_OVERRIDE;
virtual PxCombineMode::Enum getFrictionCombineMode() const PX_OVERRIDE;
virtual void setRestitutionCombineMode(PxCombineMode::Enum) PX_OVERRIDE;
virtual PxCombineMode::Enum getRestitutionCombineMode() const PX_OVERRIDE;
virtual void setDampingCombineMode(PxCombineMode::Enum combMode) PX_OVERRIDE;
virtual PxCombineMode::Enum getDampingCombineMode() const PX_OVERRIDE;
//~PxMaterial
PX_FORCE_INLINE static void getMaterialIndices(PxMaterial*const* materials, PxU16* materialIndices, PxU32 materialCount);
private:
PX_INLINE void updateMaterial();
// PX_SERIALIZATION
public:
//~PX_SERIALIZATION
PxsMaterialCore mMaterial;
};
PX_FORCE_INLINE void NpMaterial::getMaterialIndices(PxMaterial*const* materials, PxU16* materialIndices, PxU32 materialCount)
{
for(PxU32 i=0; i < materialCount; i++)
materialIndices[i] = static_cast<NpMaterial*>(materials[i])->mMaterial.mMaterialIndex;
}
}
#endif