lib3mf 2.5 :

- aggiornamento versione
- utilizzate le nostre librerie esterne libzip e zlib e non quelle incluse in lib3mf.
This commit is contained in:
SaraP
2026-08-25 12:44:11 +02:00
parent ea6efc1e36
commit 513f08e691
544 changed files with 52634 additions and 30760 deletions
@@ -0,0 +1,185 @@
/*++
Copyright (C) 2019 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:
CModelReaderNode_Volumetric2201_Property.cpp covers the official 3MF volumetric extension.
--*/
#include "Model/Reader/Volumetric2201/NMR_ModelReaderNode_Volumetric2201_Property.h"
#include "Model/Classes/NMR_ModelConstants.h"
#include "Model/Classes/NMR_ModelMeshObject.h"
#include "Model/Classes/NMR_ModelResource.h"
#include "Model/Classes/NMR_Model.h"
#include "Common/NMR_StringUtils.h"
#include "Common/NMR_Exception.h"
#include "Common/NMR_Exception_Windows.h"
namespace NMR {
CModelReaderNode_Volumetric2201_Property::CModelReaderNode_Volumetric2201_Property(_In_ PModelWarnings pWarnings)
: CModelReaderNode(pWarnings)
{
}
void CModelReaderNode_Volumetric2201_Property::parseXML(_In_ CXmlReader * pXMLReader)
{
// Parse name
parseName(pXMLReader);
// Parse attribute
parseAttributes(pXMLReader);
// Parse Content
parseContent(pXMLReader);
}
PVolumeDataProperty CModelReaderNode_Volumetric2201_Property::MakeProperty(_In_ CModel* pModel)
{
if (!pModel)
throw CNMRException(NMR_ERROR_INVALIDPARAM);
if (!m_bHasFieldID) {
throw CNMRException(NMR_ERROR_MISSINGVOLUMEDATAFIELDID);
}
if (!m_bHasName) {
throw CNMRException(NMR_ERROR_MISSINGVOLUMEDATAPROPERTYNAME);
}
PPackageResourceID pID = pModel->findPackageResourceID(pModel->currentPath(), m_nFieldID);
if (!pID.get()) {
throw CNMRException(NMR_ERROR_UNKNOWNMODELRESOURCE);
}
auto pFunction = pModel->findFunction(pID->getUniqueID());
NMR::PVolumeDataProperty pProperty;
if (pFunction)
{
pProperty = std::make_shared<CVolumeDataProperty>(pFunction, m_sName);
}
if (!pProperty) {
throw CNMRException(NMR_ERROR_UNKNOWNMODELRESOURCE);
}
pProperty->setIsRequired(m_bRequired);
if (m_bHasTransform)
{
pProperty->setTransform(m_Transform);
}
if (m_bHasChannel)
{
pProperty->setChannelName(m_sChannel);
}
if (m_bHasMinFeatureSize)
{
pProperty->setMinFeatureSize(m_dMinFeatureSize);
}
if (m_bHasFallBackValue)
{
pProperty->setFallBackValue(m_dFallBackValue);
}
return pProperty;
}
void CModelReaderNode_Volumetric2201_Property::OnAttribute(_In_z_ const nfChar * pAttributeName, _In_z_ const nfChar * pAttributeValue)
{
if (strcmp(pAttributeName, XML_3MF_ATTRIBUTE_VOLUMEDATA_TRANSFORM) == 0) {
if (m_bHasTransform)
throw CNMRException(NMR_ERROR_DUPLICATEVOLUMEDATATRANSFORM);
m_Transform = fnMATRIX3_fromString(pAttributeValue);
m_bHasTransform = true;
}
if (strcmp(pAttributeName, XML_3MF_ATTRIBUTE_VOLUMEDATA_PROPERTY) == 0) {
if (m_bHasName)
throw CNMRException(NMR_ERROR_DUPLICATEVOLUMEDATAPROPERTY);
m_bHasName = true;
m_sName = pAttributeValue;
}
if (strcmp(pAttributeName, XML_3MF_ATTRIBUTE_VOLUMEDATA_FUNCTIONID) == 0) {
if (m_bHasFieldID)
throw CNMRException(NMR_ERROR_DUPLICATEVOLUMEDATAFIELDID);
m_bHasFieldID = true;
m_nFieldID = fnStringToUint32(pAttributeValue);
}
if (strcmp(pAttributeName, XML_3MF_ATTRIBUTE_VOLUMEDATA_PROPERTY_REQUIRED) == 0) {
m_bHasRequired = true;
m_bRequired = !(std::string(pAttributeValue) == "false");
}
if (strcmp(pAttributeName, XML_3MF_ATTRIBUTE_VOLUMEDATA_CHANNEL) == 0) {
if (m_bHasChannel)
throw CNMRException(NMR_ERROR_DUPLICATEVOLUMEDATACHANNEL);
m_bHasChannel = true;
m_sChannel = pAttributeValue;
}
if (strcmp(pAttributeName, XML_3MF_ATTRIBUTE_VOLUMEDATA_MINFEATURESIZE) == 0) {
if (m_bHasMinFeatureSize)
throw CNMRException(NMR_ERROR_DUPLICATE_VOLUMEDATA_MINFEATURESIZE);
m_bHasMinFeatureSize = true;
m_dMinFeatureSize = strtod(pAttributeValue, nullptr);
}
if (strcmp(pAttributeName, XML_3MF_ATTRIBUTE_VOLUMEDATA_FALLBACKVALUE) == 0) {
if (m_bHasFallBackValue)
throw CNMRException(NMR_ERROR_DUPLICATE_VOLUMEDATA_FALLBACKVALUE);
m_bHasFallBackValue = true;
m_dFallBackValue = fnStringToDouble(pAttributeValue);
}
}
void CModelReaderNode_Volumetric2201_Property::OnNSChildElement(_In_z_ const nfChar * pChildName, _In_z_ const nfChar * pNameSpace, _In_ CXmlReader * pXMLReader)
{
__NMRASSERT(pChildName);
__NMRASSERT(pXMLReader);
__NMRASSERT(pNameSpace);
}
}