1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
/*++
Copyright (C) 2018 3MF Consortium
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. 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.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 HOLDER 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.
Abstract:
NMR_MeshInformationHandler.cpp implements the Mesh Information Handler Class.
It allows to include different kinds of information in one mesh (like Textures AND colors).
--*/
#include "Common/MeshInformation/NMR_MeshInformationHandler.h"
#include "Common/Math/NMR_Vector.h"
#include "Common/NMR_Exception.h"
#include <cmath>
namespace NMR {
CMeshInformationHandler::CMeshInformationHandler()
{
nfInt32 eType;
for (eType = emiAbstract; eType < emiLastType; eType++) {
m_pLookup[eType] = NULL;
}
m_nInternalIDCounter = 1;
}
void CMeshInformationHandler::addInformation(_In_ PMeshInformation pInformation)
{
__NMRASSERT(pInformation.get());
eMeshInformationType eType = pInformation->getType();
m_pInformations.push_back(pInformation);
m_pLookup[eType] = pInformation.get();
pInformation->setInternalID(m_nInternalIDCounter);
m_nInternalIDCounter++;
if (m_nInternalIDCounter > MESHINFORMATION_MAXINTERNALID)
throw CNMRException(NMR_ERROR_HANDLEOVERFLOW);
}
void CMeshInformationHandler::addFace(_In_ nfUint32 nNewFaceCount)
{
std::vector<PMeshInformation>::iterator iter = m_pInformations.begin();
while (iter != m_pInformations.end()) {
MESHINFORMATIONFACEDATA * pData = (*iter)->addFaceData(nNewFaceCount);
if (pData)
(*iter)->invalidateFace(pData);
iter++;
}
}
CMeshInformation * CMeshInformationHandler::getInformationIndexed(_In_ nfUint32 nIdx)
{
if (nIdx >= (nfUint32)m_pInformations.size())
throw CNMRException(NMR_ERROR_INVALIDMESHINFORMATIONINDEX);
return m_pInformations[nIdx].get();
}
PMeshInformation CMeshInformationHandler::getPInformationIndexed(_In_ nfUint32 nIdx)
{
if (nIdx >= (nfUint32)m_pInformations.size())
throw CNMRException(NMR_ERROR_INVALIDMESHINFORMATIONINDEX);
return m_pInformations[nIdx];
}
CMeshInformation * CMeshInformationHandler::getInformationByType(_In_ nfUint32 nChannel, _In_ eMeshInformationType eType)
{
return m_pLookup[eType];
}
nfUint32 CMeshInformationHandler::getInformationCount()
{
return (nfUint32)m_pInformations.size();
}
void CMeshInformationHandler::addInfoTableFrom(_In_ CMeshInformationHandler * pOtherInfoHandler, _In_ nfUint32 nCurrentFaceCount)
{
nfInt32 eType;
for (eType = emiAbstract; eType < emiLastType; eType++) {
if ((pOtherInfoHandler->m_pLookup[eType]) && (!m_pLookup[eType]))
addInformation(pOtherInfoHandler->m_pLookup[eType]->cloneInstance(nCurrentFaceCount));
if ((pOtherInfoHandler->m_pLookup[eType]) && (m_pLookup[eType]))
m_pLookup[eType]->mergeInformationFrom(pOtherInfoHandler->m_pLookup[eType]);
}
}
void CMeshInformationHandler::cloneFaceInfosFrom(_In_ nfUint32 nFaceIdx, _In_ CMeshInformationHandler * pOtherInfoHandler, _In_ nfUint32 nOtherFaceIndex)
{
nfInt32 eType;
for (eType = emiAbstract; eType < emiLastType; eType++) {
if ((pOtherInfoHandler->m_pLookup[eType]) && (m_pLookup[eType]))
m_pLookup[eType]->cloneFaceInfosFrom(nFaceIdx, pOtherInfoHandler->m_pLookup[eType], nOtherFaceIndex);
}
}
void CMeshInformationHandler::permuteNodeInformation(_In_ nfUint32 nFaceIdx, _In_ nfUint32 nNodeIndex1, _In_ nfUint32 nNodeIndex2, _In_ nfUint32 nNodeIndex3)
{
std::vector<PMeshInformation>::iterator iter = m_pInformations.begin();
while (iter != m_pInformations.end()) {
(*iter)->permuteNodeInformation(nFaceIdx, nNodeIndex1, nNodeIndex2, nNodeIndex3);
iter++;
}
}
void CMeshInformationHandler::resetFaceInformation(_In_ nfUint32 nFaceIdx)
{
std::vector<PMeshInformation>::iterator iter = m_pInformations.begin();
while (iter != m_pInformations.end()) {
(*iter)->resetFaceInformation(nFaceIdx);
iter++;
}
}
void CMeshInformationHandler::removeInformation(eMeshInformationType eType)
{
nfUint32 nCount = (nfUint32)m_pInformations.size();
nfUint32 nIdx;
nfUint32 nNewIdx = 0;
m_pLookup[eType] = NULL;
for (nIdx = 0; nIdx < nCount; nIdx++) {
eMeshInformationType eCurrentType = m_pInformations[nIdx]->getType();
if (eCurrentType != eType) {
m_pInformations[nNewIdx] = m_pInformations[nIdx];
nNewIdx++;
}
}
if (nNewIdx < nCount) {
for (nIdx = nNewIdx; nIdx < nCount; nIdx++)
m_pInformations.pop_back();
}
}
void CMeshInformationHandler::removeInformationIndexed(_In_ nfUint32 nIndex)
{
nfUint32 nCount = (nfUint32)m_pInformations.size();
nfUint32 nIdx;
if (nIndex >= nCount)
throw CNMRException(NMR_ERROR_INVALIDINDEX);
PMeshInformation pInformation = m_pInformations[nIndex];
eMeshInformationType eType = pInformation->getType();
// clean lookup table
if (m_pLookup[eType] == pInformation.get()) {
m_pLookup[eType] = nullptr;
}
// reorder vector
for (nIdx = nIndex; nIdx < nCount - 1; nIdx++) {
m_pInformations[nIdx] = m_pInformations[nIdx + 1];
}
m_pInformations[nCount - 1] = nullptr;
m_pInformations.pop_back();
}
}
|