Helper to copy a TSMesh ready for adding to this TSShape (with the right vertex format etc)
| 909 | |
| 910 | // Helper to copy a TSMesh ready for adding to this TSShape (with the right vertex format etc) |
| 911 | TSMesh* TSShape::copyMesh( const TSMesh* srcMesh ) const |
| 912 | { |
| 913 | TSMesh * mesh = 0; |
| 914 | if ( srcMesh && ( srcMesh->getMeshType() == TSMesh::SkinMeshType ) ) |
| 915 | { |
| 916 | TSSkinMesh* skin = new TSSkinMesh; |
| 917 | |
| 918 | // Copy skin elements |
| 919 | const TSSkinMesh *srcSkin = dynamic_cast<const TSSkinMesh*>(srcMesh); |
| 920 | skin->weight = srcSkin->weight; |
| 921 | skin->vertexIndex = srcSkin->vertexIndex; |
| 922 | skin->boneIndex = srcSkin->boneIndex; |
| 923 | |
| 924 | skin->batchData.nodeIndex = srcSkin->batchData.nodeIndex; |
| 925 | skin->batchData.initialTransforms = srcSkin->batchData.initialTransforms; |
| 926 | skin->batchData.initialVerts = srcSkin->batchData.initialVerts; |
| 927 | skin->batchData.initialNorms = srcSkin->batchData.initialNorms; |
| 928 | |
| 929 | mesh = static_cast<TSMesh*>(skin); |
| 930 | } |
| 931 | else |
| 932 | { |
| 933 | mesh = new TSMesh; |
| 934 | } |
| 935 | |
| 936 | if ( !srcMesh ) |
| 937 | return mesh; // return an empty mesh |
| 938 | |
| 939 | // Copy mesh elements |
| 940 | mesh->mIndices = srcMesh->mIndices; |
| 941 | mesh->mPrimitives = srcMesh->mPrimitives; |
| 942 | mesh->numFrames = srcMesh->numFrames; |
| 943 | mesh->numMatFrames = srcMesh->numMatFrames; |
| 944 | mesh->vertsPerFrame = srcMesh->vertsPerFrame; |
| 945 | mesh->setFlags(srcMesh->getFlags()); |
| 946 | mesh->mNumVerts = srcMesh->mNumVerts; |
| 947 | |
| 948 | // Copy vertex data in an *unpacked* form |
| 949 | mesh->copySourceVertexDataFrom(srcMesh); |
| 950 | |
| 951 | mesh->createTangents(mesh->mVerts, mesh->mNorms); |
| 952 | mesh->mEncodedNorms.set(NULL, 0); |
| 953 | |
| 954 | mesh->computeBounds(); |
| 955 | |
| 956 | return mesh; |
| 957 | } |
| 958 | |
| 959 | bool TSShape::addMesh(TSMesh* mesh, const String& meshName) |
| 960 | { |
no test coverage detected