|
|
|
|
/*
|
|
|
|
|
This file is part of Magnum.
|
|
|
|
|
|
|
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019
|
|
|
|
|
Vladimír Vondruš <mosra@centrum.cz>
|
|
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
to deal in the Software without restriction, including without limitation
|
|
|
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included
|
|
|
|
|
in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
|
|
THE 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 AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "CompressIndices.h"
|
|
|
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
|
#include <Corrade/Containers/Array.h>
|
|
|
|
|
#include <Corrade/Containers/ArrayViewStl.h>
|
|
|
|
|
#include <Corrade/Utility/Algorithms.h>
|
|
|
|
|
|
|
|
|
|
#include "Magnum/Math/FunctionsBatch.h"
|
|
|
|
|
#include "Magnum/Trade/MeshData.h"
|
|
|
|
|
|
|
|
|
|
namespace Magnum { namespace MeshTools {
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
template<class T, class U> inline Containers::Array<char> compress(const Containers::StridedArrayView1D<const U>& indices, Long offset) {
|
|
|
|
|
/* Can't use Utility::copy() here because we're copying from a larger type
|
|
|
|
|
to a smaller one (and subtracting an offset in addition) */
|
|
|
|
|
Containers::Array<char> buffer(indices.size()*sizeof(T));
|
|
|
|
|
for(std::size_t i = 0; i != indices.size(); ++i) {
|
|
|
|
|
T index = static_cast<T>(indices[i] - offset);
|
|
|
|
|
std::memcpy(buffer.begin()+i*sizeof(T), &index, sizeof(T));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<class T> std::pair<Containers::Array<char>, MeshIndexType> compressIndicesImplementation(const Containers::StridedArrayView1D<const T>& indices, const MeshIndexType atLeast, const Long offset) {
|
|
|
|
|
const UnsignedInt max = Math::max(indices) - offset;
|
|
|
|
|
Containers::Array<char> out;
|
|
|
|
|
MeshIndexType type;
|
|
|
|
|
const UnsignedInt log = Math::log(256, max);
|
|
|
|
|
|
|
|
|
|
/* If it fits into 8 bytes and 8 bytes are allowed, pack into 8 */
|
|
|
|
|
if(log == 0 && atLeast == MeshIndexType::UnsignedByte) {
|
|
|
|
|
out = compress<UnsignedByte>(indices, offset);
|
|
|
|
|
type = MeshIndexType::UnsignedByte;
|
|
|
|
|
|
|
|
|
|
/* Otherwise, if it fits into either 8 or 16 bytes and we allow either 8 or
|
|
|
|
|
16, pack into 16 */
|
|
|
|
|
} else if(log <= 1 && atLeast != MeshIndexType::UnsignedInt) {
|
|
|
|
|
out = compress<UnsignedShort>(indices, offset);
|
|
|
|
|
type = MeshIndexType::UnsignedShort;
|
|
|
|
|
|
|
|
|
|
/* Otherwise pack into 32 */
|
|
|
|
|
} else {
|
|
|
|
|
out = compress<UnsignedInt>(indices, offset);
|
|
|
|
|
type = MeshIndexType::UnsignedInt;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return {std::move(out), type};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<Containers::Array<char>, MeshIndexType> compressIndices(const Containers::StridedArrayView1D<const UnsignedInt>& indices, const MeshIndexType atLeast, const Long offset) {
|
|
|
|
|
return compressIndicesImplementation(indices, atLeast, offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<Containers::Array<char>, MeshIndexType> compressIndices(const Containers::StridedArrayView1D<const UnsignedShort>& indices, const MeshIndexType atLeast, const Long offset) {
|
|
|
|
|
return compressIndicesImplementation(indices, atLeast, offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<Containers::Array<char>, MeshIndexType> compressIndices(const Containers::StridedArrayView1D<const UnsignedByte>& indices, const MeshIndexType atLeast, const Long offset) {
|
|
|
|
|
return compressIndicesImplementation(indices, atLeast, offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<Containers::Array<char>, MeshIndexType> compressIndices(const Containers::StridedArrayView1D<const UnsignedInt>& indices, const Long offset) {
|
|
|
|
|
return compressIndicesImplementation(indices, MeshIndexType::UnsignedShort, offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<Containers::Array<char>, MeshIndexType> compressIndices(const Containers::StridedArrayView1D<const UnsignedShort>& indices, const Long offset) {
|
|
|
|
|
return compressIndicesImplementation(indices, MeshIndexType::UnsignedShort, offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<Containers::Array<char>, MeshIndexType> compressIndices(const Containers::StridedArrayView1D<const UnsignedByte>& indices, const Long offset) {
|
|
|
|
|
return compressIndicesImplementation(indices, MeshIndexType::UnsignedShort, offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<Containers::Array<char>, MeshIndexType> compressIndices(const Containers::StridedArrayView2D<const char>& indices, const MeshIndexType atLeast, const Long offset) {
|
|
|
|
|
CORRADE_ASSERT(indices.isContiguous<1>(), "MeshTools::compressIndices(): second view dimension is not contiguous", {});
|
|
|
|
|
if(indices.size()[1] == 4)
|
|
|
|
|
return compressIndicesImplementation(Containers::arrayCast<1, const UnsignedInt>(indices), atLeast, offset);
|
|
|
|
|
else if(indices.size()[1] == 2)
|
|
|
|
|
return compressIndicesImplementation(Containers::arrayCast<1, const UnsignedShort>(indices), atLeast, offset);
|
|
|
|
|
else {
|
|
|
|
|
CORRADE_ASSERT(indices.size()[1] == 1, "MeshTools::compressIndices(): expected index type size 1, 2 or 4 but got" << indices.size()[1], {});
|
|
|
|
|
return compressIndicesImplementation(Containers::arrayCast<1, const UnsignedByte>(indices), atLeast, offset);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<Containers::Array<char>, MeshIndexType> compressIndices(const Containers::StridedArrayView2D<const char>& indices, const Long offset) {
|
|
|
|
|
return compressIndices(indices, MeshIndexType::UnsignedShort, offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Trade::MeshData compressIndices(Trade::MeshData&& data, MeshIndexType atLeast) {
|
|
|
|
|
CORRADE_ASSERT(data.isIndexed(), "MeshTools::compressIndices(): mesh data not indexed", (Trade::MeshData{MeshPrimitive::Triangles, 0}));
|
|
|
|
|
|
|
|
|
|
/* Transfer vertex data as-is, as those don't need any changes. Release if
|
|
|
|
|
possible. */
|
|
|
|
|
Containers::Array<char> vertexData;
|
|
|
|
|
const UnsignedInt vertexCount = data.vertexCount();
|
|
|
|
|
if(data.vertexDataFlags() & Trade::DataFlag::Owned)
|
|
|
|
|
vertexData = data.releaseVertexData();
|
|
|
|
|
else {
|
|
|
|
|
vertexData = Containers::Array<char>{Containers::NoInit, data.vertexData().size()};
|
|
|
|
|
Utility::copy(data.vertexData(), vertexData);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Compress the indices */
|
|
|
|
|
UnsignedInt offset;
|
|
|
|
|
std::pair<Containers::Array<char>, MeshIndexType> result;
|
|
|
|
|
if(data.indexType() == MeshIndexType::UnsignedInt) {
|
|
|
|
|
auto indices = data.indices<UnsignedInt>();
|
|
|
|
|
offset = Math::min(indices);
|
|
|
|
|
result = compressIndicesImplementation<UnsignedInt>(indices, atLeast, offset);
|
|
|
|
|
} else if(data.indexType() == MeshIndexType::UnsignedShort) {
|
|
|
|
|
auto indices = data.indices<UnsignedShort>();
|
|
|
|
|
offset = Math::min(indices);
|
|
|
|
|
result = compressIndicesImplementation<UnsignedShort>(indices, atLeast, offset);
|
|
|
|
|
} else {
|
|
|
|
|
CORRADE_INTERNAL_ASSERT(data.indexType() == MeshIndexType::UnsignedByte);
|
|
|
|
|
auto indices = data.indices<UnsignedByte>();
|
|
|
|
|
offset = Math::min(indices);
|
|
|
|
|
result = compressIndicesImplementation<UnsignedByte>(indices, atLeast, offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Recreate the attribute array */
|
|
|
|
|
const UnsignedInt newVertexCount = vertexCount - offset;
|
|
|
|
|
Containers::Array<Trade::MeshAttributeData> attributeData{data.attributeCount()};
|
|
|
|
|
for(UnsignedInt i = 0, max = attributeData.size(); i != max; ++i) {
|
|
|
|
|
const UnsignedInt stride = data.attributeStride(i);
|
|
|
|
|
attributeData[i] = Trade::MeshAttributeData{data.attributeName(i),
|
|
|
|
|
data.attributeFormat(i),
|
|
|
|
|
Containers::StridedArrayView1D<const void>{vertexData, vertexData.data() + data.attributeOffset(i) + offset*stride, newVertexCount, stride}};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Trade::MeshIndexData indices{result.second, result.first};
|
|
|
|
|
return Trade::MeshData{data.primitive(), std::move(result.first), indices,
|
|
|
|
|
std::move(vertexData), std::move(attributeData)};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Trade::MeshData compressIndices(const Trade::MeshData& data, MeshIndexType atLeast) {
|
|
|
|
|
CORRADE_ASSERT(data.isIndexed(), "MeshTools::compressIndices(): mesh data not indexed", (Trade::MeshData{MeshPrimitive::Triangles, 0}));
|
|
|
|
|
|
|
|
|
|
return compressIndices(Trade::MeshData{data.primitive(),
|
|
|
|
|
{}, data.indexData(), Trade::MeshIndexData{data.indices()},
|
|
|
|
|
{}, data.vertexData(), Trade::meshAttributeDataNonOwningArray(data.attributeData()),
|
|
|
|
|
data.vertexCount()}, atLeast);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef MAGNUM_BUILD_DEPRECATED
|
|
|
|
|
std::tuple<Containers::Array<char>, MeshIndexType, UnsignedInt, UnsignedInt> compressIndices(const std::vector<UnsignedInt>& indices) {
|
|
|
|
|
const auto minmax = Math::minmax(indices);
|
|
|
|
|
Containers::Array<char> data;
|
|
|
|
|
MeshIndexType type;
|
|
|
|
|
std::tie(data, type) = compressIndices(indices, MeshIndexType::UnsignedByte);
|
|
|
|
|
return std::make_tuple(std::move(data), type, minmax.first, minmax.second);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<class T> Containers::Array<T> compressIndicesAs(const std::vector<UnsignedInt>& indices) {
|
|
|
|
|
#if !defined(CORRADE_NO_ASSERT) || defined(CORRADE_GRACEFUL_ASSERT)
|
|
|
|
|
const auto max = Math::max(indices);
|
|
|
|
|
CORRADE_ASSERT(Math::log(256, max) < sizeof(T), "MeshTools::compressIndicesAs(): type too small to represent value" << max, {});
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
Containers::Array<T> buffer(indices.size());
|
|
|
|
|
for(std::size_t i = 0; i != indices.size(); ++i)
|
|
|
|
|
buffer[i] = T(indices[i]);
|
|
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template Containers::Array<UnsignedByte> compressIndicesAs(const std::vector<UnsignedInt>&);
|
|
|
|
|
template Containers::Array<UnsignedShort> compressIndicesAs(const std::vector<UnsignedInt>&);
|
|
|
|
|
template Containers::Array<UnsignedInt> compressIndicesAs(const std::vector<UnsignedInt>&);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
}}
|