/*++ Copyright (C) 2019 3MF Consortium (Original Author) 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: This is a stub class definition of CObject */ #include "lib3mf_object.hpp" #include "lib3mf_interfaceexception.hpp" #include "lib3mf_meshobject.hpp" #include "lib3mf_componentsobject.hpp" #include "lib3mf_metadatagroup.hpp" #include "lib3mf_slicestack.hpp" #include "lib3mf_attachment.hpp" // Include custom headers here. #include "Model/Classes/NMR_ModelMeshObject.h" #include "Model/Classes/NMR_ModelComponentsObject.h" using namespace Lib3MF::Impl; /************************************************************************************************************************* Class definition of CObject **************************************************************************************************************************/ NMR::CModelObject* CObject::object() { NMR::CModelObject* pObject = dynamic_cast(resource().get()); if (pObject == nullptr) throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDOBJECT); return pObject; } IObject* CObject::fnCreateObjectFromModelResource(NMR::PModelResource pResource, bool bFailIfUnkownClass) { if (!pResource.get()) throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDPARAM); NMR::CModelMeshObject * pMeshObject = dynamic_cast (pResource.get()); if (pMeshObject) { return new CMeshObject(pResource); } NMR::CModelComponentsObject * pComponentsResource = dynamic_cast (pResource.get()); if (pComponentsResource) { return new CComponentsObject(pResource); } if (bFailIfUnkownClass) throw ELib3MFInterfaceException(NMR_ERROR_UNKNOWNMODELRESOURCE); return nullptr; } CObject::CObject(NMR::PModelResource pResource) :CResource(pResource) { } eLib3MFObjectType CObject::GetType () { return eLib3MFObjectType(object()->getObjectType()); } void CObject::SetType (const eLib3MFObjectType eObjectType) { object()->setObjectType(NMR::eModelObjectType(eObjectType)); } std::string CObject::GetName () { return object()->getName(); } void CObject::SetName (const std::string & sName) { object()->setName(sName); } std::string CObject::GetPartNumber () { return object()->getPartNumber(); } void CObject::SetPartNumber (const std::string & sPartNumber) { object()->setPartNumber(sPartNumber); } bool CObject::IsMeshObject () { // overwritten by child class throw ELib3MFInterfaceException(LIB3MF_ERROR_SHOULDNOTBECALLED); } bool CObject::IsComponentsObject () { // overwritten by child class throw ELib3MFInterfaceException(LIB3MF_ERROR_SHOULDNOTBECALLED); } IMeshObject * CObject::AsMeshObject() { if (dynamic_cast(resource().get())) { return new CMeshObject(resource()); } throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDCAST); } IComponentsObject * CObject::AsComponentsObject() { if (dynamic_cast(resource().get())) { return new CComponentsObject(resource()); } throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDCAST); } bool CObject::IsValid () { // Implemented by base class throw ELib3MFInterfaceException (LIB3MF_ERROR_SHOULDNOTBECALLED); } void CObject::SetAttachmentAsThumbnail(IAttachment* pAttachment) { auto pModelAttachment = object()->getModel()->findModelAttachment(pAttachment->GetPath()); if (!pModelAttachment) { throw ELib3MFInterfaceException(LIB3MF_ERROR_ATTACHMENTNOTFOUND); } object()->setThumbnailAttachment(pModelAttachment, true); } IAttachment * CObject::GetThumbnailAttachment() { if (object()->getThumbnailAttachment()) { return new CAttachment(object()->getThumbnailAttachment()); } return nullptr; } void CObject::ClearThumbnailAttachment() { object()->clearThumbnailAttachment(); } IMetaDataGroup * CObject::GetMetaDataGroup () { return new CMetaDataGroup(object()->metaDataGroup()); } std::string CObject::GetUUID(bool & bHasUUID) { NMR::PUUID pUUID = object()->uuid(); bHasUUID = (pUUID.get() != nullptr); if (bHasUUID) return pUUID->toString(); else return ""; } void CObject::SetUUID(const std::string & sUUID) { NMR::PUUID pUUID = std::make_shared(sUUID); object()->setUUID(pUUID); } void CObject::SetSlicesMeshResolution(const eLib3MFSlicesMeshResolution eMeshResolution) { object()->setSlicesMeshResolution(NMR::eModelSlicesMeshResolution(eMeshResolution)); } eLib3MFSlicesMeshResolution CObject::GetSlicesMeshResolution() { return eLib3MFSlicesMeshResolution(object()->slicesMeshResolution()); } bool CObject::HasSlices(const bool bRecursive) { return object()->hasSlices(bRecursive); } void CObject::ClearSliceStack() { object()->assignSliceStack(nullptr); } ISliceStack * CObject::GetSliceStack() { NMR::PModelSliceStack pSliceStackResource = object()->getSliceStack(); if (pSliceStackResource) return new CSliceStack(pSliceStackResource); else throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDSLICESTACKRESOURCE); } void CObject::AssignSliceStack(ISliceStack* pSliceStackInstance) { NMR::ModelResourceID nID = pSliceStackInstance->GetResourceID(); std::shared_ptr pPackagePart(pSliceStackInstance->PackagePart()); std::string sPath = pPackagePart->GetPath(); NMR::PModelSliceStack pSliceStackResource = std::dynamic_pointer_cast ( object()->getModel()->findResource(sPath, nID) ); if (!pSliceStackResource) throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDSLICESTACKRESOURCE); object()->assignSliceStack(pSliceStackResource); } Lib3MF::sBox CObject::GetOutbox() { NMR::NOUTBOX3 oOutbox; NMR::fnOutboxInitialize(oOutbox); object()->extendOutbox(oOutbox, NMR::fnMATRIX3_identity()); sBox s; s.m_MinCoordinate[0] = oOutbox.m_min.m_fields[0]; s.m_MinCoordinate[1] = oOutbox.m_min.m_fields[1]; s.m_MinCoordinate[2] = oOutbox.m_min.m_fields[2]; s.m_MaxCoordinate[0] = oOutbox.m_max.m_fields[0]; s.m_MaxCoordinate[1] = oOutbox.m_max.m_fields[1]; s.m_MaxCoordinate[2] = oOutbox.m_max.m_fields[2]; return s; }