//----------------------------------------------------------------------------- // This is an implementation of Tom Forsyth's "Linear-Speed Vertex Cache // Optimization" algorithm as described here: // http://home.comcast.net/~tom_forsyth/papers/fast_vert_cache_opt.html // // This code was authored and released into the public domain by // Adrian Stone (stone@gameangst.com). // // THIS 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, TITLE AND NON-INFRINGEMENT. IN NO EVENT // SHALL ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER // LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR // IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. //----------------------------------------------------------------------------- #include #include #include #include #include namespace Forsyth { typedef unsigned int uint; typedef unsigned short uint16; typedef unsigned char byte; //----------------------------------------------------------------------------- // OptimizeFaces //----------------------------------------------------------------------------- // Parameters: // indexList // input index list // indexCount // the number of indices in the list // vertexCount // the largest index value in indexList // newIndexList // a pointer to a preallocated buffer the same size as indexList to // hold the optimized index list // lruCacheSize // the size of the simulated post-transform cache (max:64) //----------------------------------------------------------------------------- void OptimizeFaces(const uint16* indexList, uint indexCount, uint vertexCount, uint16* newIndexList, uint16 lruCacheSize); namespace { // code for computing vertex score was taken, as much as possible // directly from the original publication. float ComputeVertexCacheScore(int cachePosition, int vertexCacheSize) { const float FindVertexScore_CacheDecayPower = 1.5f; const float FindVertexScore_LastTriScore = 0.75f; float score = 0.0f; if ( cachePosition < 0 ) { // Vertex is not in FIFO cache - no score. } else { if ( cachePosition < 3 ) { // This vertex was used in the last triangle, // so it has a fixed score, whichever of the three // it's in. Otherwise, you can get very different // answers depending on whether you add // the triangle 1,2,3 or 3,1,2 - which is silly. score = FindVertexScore_LastTriScore; } else { assert ( cachePosition < vertexCacheSize ); // Points for being high in the cache. const float scaler = 1.0f / ( vertexCacheSize - 3 ); score = 1.0f - ( cachePosition - 3 ) * scaler; score = powf ( score, FindVertexScore_CacheDecayPower ); } } return score; } float ComputeVertexValenceScore(uint numActiveFaces) { const float FindVertexScore_ValenceBoostScale = 2.0f; const float FindVertexScore_ValenceBoostPower = 0.5f; float score = 0.f; // Bonus points for having a low number of tris still to // use the vert, so we get rid of lone verts quickly. float valenceBoost = powf ( static_cast(numActiveFaces), -FindVertexScore_ValenceBoostPower ); score += FindVertexScore_ValenceBoostScale * valenceBoost; return score; } const int kMaxVertexCacheSize = 64; const uint kMaxPrecomputedVertexValenceScores = 64; float s_vertexCacheScores[kMaxVertexCacheSize+1][kMaxVertexCacheSize]; float s_vertexValenceScores[kMaxPrecomputedVertexValenceScores]; bool ComputeVertexScores() { for (int cacheSize=0; cacheSize<=kMaxVertexCacheSize; ++cacheSize) { for (int cachePos=0; cachePos vertexDataList; vertexDataList.resize(vertexCount); // compute face count per vertex for (uint i=0; i activeFaceList; const uint16 kEvictedCacheIndex = std::numeric_limits::max(); { // allocate face list per vertex uint curActiveFaceListPos = 0; for (uint i=0; i processedFaceList; processedFaceList.resize(indexCount); uint16 vertexCacheBuffer[(kMaxVertexCacheSize+3)*2]; uint16* cache0 = vertexCacheBuffer; uint16* cache1 = vertexCacheBuffer+(kMaxVertexCacheSize+3); uint16 entriesInCache0 = 0; uint bestFace = 0; float bestScore = -1.f; const float maxValenceScore = FindVertexScore(1, kEvictedCacheIndex, lruCacheSize) * 3.f; for (uint i = 0; i < indexCount; i += 3) { if (bestScore < 0.f) { // no verts in the cache are used by any unprocessed faces so // search all unprocessed faces for a new starting point for (uint j = 0; j < indexCount; j += 3) { if (processedFaceList[j] == 0) { uint face = j; float faceScore = 0.f; for (uint k=0; k<3; ++k) { uint16 index = indexList[face+k]; OptimizeVertexData& vertexData = vertexDataList[index]; assert(vertexData.activeFaceListSize > 0); assert(vertexData.cachePos0 >= lruCacheSize); faceScore += vertexData.score; } if (faceScore > bestScore) { bestScore = faceScore; bestFace = face; assert(bestScore <= maxValenceScore); if (bestScore >= maxValenceScore) { break; } } } } assert(bestScore >= 0.f); } processedFaceList[bestFace] = 1; uint16 entriesInCache1 = 0; // add bestFace to LRU cache and to newIndexList for (uint v = 0; v < 3; ++v) { uint16 index = indexList[bestFace+v]; newIndexList[i+v] = index; OptimizeVertexData& vertexData = vertexDataList[index]; if (vertexData.cachePos1 >= entriesInCache1) { vertexData.cachePos1 = entriesInCache1; cache1[entriesInCache1++] = index; if (vertexData.activeFaceListSize == 1) { --vertexData.activeFaceListSize; continue; } } assert(vertexData.activeFaceListSize > 0); uint* begin = &activeFaceList[vertexData.activeFaceListStart]; uint* end = &(activeFaceList[vertexData.activeFaceListStart + vertexData.activeFaceListSize - 1]) + 1; uint* it = std::find(begin, end, bestFace); assert(it != end); std::swap(*it, *(end-1)); --vertexData.activeFaceListSize; vertexData.score = FindVertexScore(vertexData.activeFaceListSize, vertexData.cachePos1, lruCacheSize); } // move the rest of the old verts in the cache down and compute their new scores for (uint c0 = 0; c0 < entriesInCache0; ++c0) { uint16 index = cache0[c0]; OptimizeVertexData& vertexData = vertexDataList[index]; if (vertexData.cachePos1 >= entriesInCache1) { vertexData.cachePos1 = entriesInCache1; cache1[entriesInCache1++] = index; vertexData.score = FindVertexScore(vertexData.activeFaceListSize, vertexData.cachePos1, lruCacheSize); } } // find the best scoring triangle in the current cache (including up to 3 that were just evicted) bestScore = -1.f; for (uint c1 = 0; c1 < entriesInCache1; ++c1) { uint16 index = cache1[c1]; OptimizeVertexData& vertexData = vertexDataList[index]; vertexData.cachePos0 = vertexData.cachePos1; vertexData.cachePos1 = kEvictedCacheIndex; for (uint j=0; j bestScore) { bestScore = faceScore; bestFace = face; } } } std::swap(cache0, cache1); entriesInCache0 = std::min(entriesInCache1, lruCacheSize); } } } // namespace Forsyth