PxClothFabric.h

Go to the documentation of this file.
00001 //
00002 // Redistribution and use in source and binary forms, with or without
00003 // modification, are permitted provided that the following conditions
00004 // are met:
00005 //  * Redistributions of source code must retain the above copyright
00006 //    notice, this list of conditions and the following disclaimer.
00007 //  * Redistributions in binary form must reproduce the above copyright
00008 //    notice, this list of conditions and the following disclaimer in the
00009 //    documentation and/or other materials provided with the distribution.
00010 //  * Neither the name of NVIDIA CORPORATION nor the names of its
00011 //    contributors may be used to endorse or promote products derived
00012 //    from this software without specific prior written permission.
00013 //
00014 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
00015 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00016 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
00017 // PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
00018 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00019 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00020 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
00021 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
00022 // OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
00023 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
00024 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00025 //
00026 // Copyright (c) 2008-2018 NVIDIA Corporation. All rights reserved.
00027 // Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved.
00028 // Copyright (c) 2001-2004 NovodeX AG. All rights reserved.  
00029 
00030 
00031 #ifndef PX_PHYSICS_NX_CLOTH_FABRIC
00032 #define PX_PHYSICS_NX_CLOTH_FABRIC
00033 
00038 #include "common/PxBase.h"
00039 
00040 #if !PX_DOXYGEN
00041 namespace physx
00042 {
00043 #endif
00044 
00050 struct PX_DEPRECATED PxClothFabricPhaseType
00051 {
00052     enum Enum
00053     {
00054         eINVALID,     
00055         eVERTICAL,    
00056         eHORIZONTAL,  
00057         eBENDING,     
00058         eSHEARING,    
00059         eCOUNT        // internal use only
00060     };
00061 };
00062 
00068 struct PX_DEPRECATED PxClothFabricPhase
00069 {
00070     PxClothFabricPhase(PxClothFabricPhaseType::Enum type = 
00071         PxClothFabricPhaseType::eINVALID, PxU32 index = 0);
00072 
00076     PxClothFabricPhaseType::Enum phaseType;
00077 
00081     PxU32 setIndex;
00082 };
00083 
00084 PX_INLINE PxClothFabricPhase::PxClothFabricPhase(
00085     PxClothFabricPhaseType::Enum type, PxU32 index)
00086     : phaseType(type)
00087     , setIndex(index)
00088 {}
00089 
00095 class PX_DEPRECATED PxClothFabricDesc
00096 {
00097 public:
00099     PxU32 nbParticles;
00100 
00102     PxU32 nbPhases;
00104     const PxClothFabricPhase* phases;
00105 
00107     PxU32 nbSets;
00109     const PxU32* sets;
00110 
00112     const PxU32* indices;
00114     const PxReal* restvalues;
00115 
00117     PxU32 nbTethers;
00119     const PxU32* tetherAnchors;
00121     const PxReal* tetherLengths;
00122 
00124     const PxU32* triangles;
00126     PxU32 nbTriangles;
00127 
00131     PX_INLINE PxClothFabricDesc();
00132 
00136     PX_INLINE void setToDefault();
00137 
00142     PX_INLINE bool isValid() const;
00143 };
00144 
00145 PX_INLINE PxClothFabricDesc::PxClothFabricDesc()
00146 {
00147     setToDefault();
00148 }
00149 
00150 PX_INLINE void PxClothFabricDesc::setToDefault()
00151 {
00152     memset(this, 0, sizeof(PxClothFabricDesc));
00153 }
00154 
00155 PX_INLINE bool PxClothFabricDesc::isValid() const
00156 {
00157     return nbParticles && nbPhases && phases && restvalues && nbSets 
00158         && sets && indices && (!nbTethers || (tetherAnchors && tetherLengths))
00159         && (!nbTriangles || triangles);
00160 }
00161 
00162 
00185 class PX_DEPRECATED PxClothFabric   : public PxBase
00186 {
00187 public:
00193     virtual void release() = 0;
00194 
00199     virtual PxU32 getNbParticles() const = 0;
00200 
00205     virtual PxU32 getNbPhases() const = 0;
00206 
00211     virtual PxU32 getNbRestvalues() const = 0;
00212 
00217     virtual PxU32 getNbSets() const = 0;
00218 
00223     virtual PxU32 getNbParticleIndices() const = 0;
00224 
00229     virtual PxU32 getNbTethers() const = 0;
00230 
00241     virtual PxU32 getPhases(PxClothFabricPhase* userPhaseBuffer, PxU32 bufferSize) const = 0;
00242 
00254     virtual PxU32 getSets(PxU32* userSetBuffer, PxU32 bufferSize) const = 0;
00255 
00266     virtual PxU32 getParticleIndices(PxU32* userParticleIndexBuffer, PxU32 bufferSize) const = 0;
00267 
00281     virtual PxU32 getRestvalues(PxReal* userRestvalueBuffer, PxU32 bufferSize) const = 0;
00282 
00295     virtual PxU32 getTetherAnchors(PxU32* userAnchorBuffer, PxU32 bufferSize) const = 0;
00296 
00308     virtual PxU32 getTetherLengths(PxReal* userLengthBuffer, PxU32 bufferSize) const = 0;
00309 
00310 
00315     virtual void scaleRestlengths(PxReal scale) = 0;
00316 
00323     virtual PxU32 getReferenceCount() const = 0;
00324 
00330     virtual void acquireReference() = 0;
00331 
00332 
00333     virtual const char* getConcreteTypeName() const { return "PxClothFabric";   }
00334 
00335 protected:
00336 
00337     PX_INLINE PxClothFabric(PxType concreteType, PxBaseFlags baseFlags) : PxBase(concreteType, baseFlags) {}
00338     PX_INLINE PxClothFabric(PxBaseFlags baseFlags) : PxBase(baseFlags) {}
00339     virtual ~PxClothFabric() {}
00340     virtual bool isKindOf(const char* name) const { return !::strcmp("PxClothFabric", name) || PxBase::isKindOf(name); }
00341 };
00342 
00343 #if !PX_DOXYGEN
00344 } // namespace physx
00345 #endif
00346 
00348 #endif


Copyright © 2008-2018 NVIDIA Corporation, 2701 San Tomas Expressway, Santa Clara, CA 95050 U.S.A. All rights reserved. www.nvidia.com