mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-07-25 12:55:50 +03:00
- Package TPrsStd is moved into new toolkit TKVCAF. This is the only toolkit in OCAF that depends on visualization libraries. - All persistent data stored in TPrsStd_AISPresentation attribute are moved to new attribute TDataXtd_Presentation, which is maintained automatically on the same label as TPrsStd_AISPresentation. All parameters used by TPrsStd_AISPresentation are stored in corresponding TDataXtd_Presentation attribute. - TPrsStd_AISPresentation is not stored in file any more; when OCAF document is loaded from a file, these attributes are created at all labels where TDataXtd_Presentation attribute is located, by TPrsStd_AISViewer::New(). - File src/StdResources/MigrationSheet.txt necessary for reading files written by previous versions of OCCT (lost in one of previous integrations) is restored and updated as necessary to handle this change (defines replacement of TPrsStd_AISPresentation by TDataXtd_Presentation). Environment variable CSF_MIGRATION_TYPES should be defined, pointing to this file. - Packages BinMPrsStd and XmlMPrsStd are removed; their drivers are moved into BinMDataXtd and XmlMDataXtd respectively. - Version numbers of BinOCAF and XmlOCAF formats are increased, new files cannot be read by previous versions of OCCT - New tests added - Adding new TKVCAF toolkit in sample projects - Restore IsDisplayed(false) in TPrsStd_AISPresentation::Erase()
246 lines
6.9 KiB
C++
246 lines
6.9 KiB
C++
// Created on: 2001-09-04
|
|
// Created by: Julia DOROVSKIKH
|
|
// Copyright (c) 2001-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#include <XmlMDataXtd_PresentationDriver.hxx>
|
|
|
|
#include <CDM_MessageDriver.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <TDF_Attribute.hxx>
|
|
#include <XmlObjMgt.hxx>
|
|
#include <XmlObjMgt_Persistent.hxx>
|
|
|
|
#include <TDataXtd_Presentation.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(XmlMDataXtd_PresentationDriver,XmlMDF_ADriver)
|
|
|
|
IMPLEMENT_DOMSTRING (GuidString, "guid")
|
|
IMPLEMENT_DOMSTRING (IsDisplayedString, "isdisplayed")
|
|
IMPLEMENT_DOMSTRING (ColorString, "color")
|
|
IMPLEMENT_DOMSTRING (MaterialString, "material")
|
|
IMPLEMENT_DOMSTRING (TransparencyString,"transparency")
|
|
IMPLEMENT_DOMSTRING (WidthString, "width")
|
|
IMPLEMENT_DOMSTRING (ModeString, "mode")
|
|
|
|
IMPLEMENT_DOMSTRING (DisplayedString, "true")
|
|
|
|
//=======================================================================
|
|
//function : XmlMDataXtd_PresentationDriver
|
|
//purpose : Constructor
|
|
//=======================================================================
|
|
XmlMDataXtd_PresentationDriver::XmlMDataXtd_PresentationDriver
|
|
(const Handle(CDM_MessageDriver)& theMsgDriver)
|
|
: XmlMDF_ADriver (theMsgDriver, NULL)
|
|
{}
|
|
|
|
//=======================================================================
|
|
//function : NewEmpty
|
|
//purpose :
|
|
//=======================================================================
|
|
Handle(TDF_Attribute) XmlMDataXtd_PresentationDriver::NewEmpty() const
|
|
{
|
|
return (new TDataXtd_Presentation());
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste
|
|
//purpose : persistent -> transient (retrieve)
|
|
//=======================================================================
|
|
Standard_Boolean XmlMDataXtd_PresentationDriver::Paste
|
|
(const XmlObjMgt_Persistent& theSource,
|
|
const Handle(TDF_Attribute)& theTarget,
|
|
XmlObjMgt_RRelocationTable& ) const
|
|
{
|
|
TCollection_ExtendedString aMessageString;
|
|
XmlObjMgt_DOMString aDOMStr;
|
|
|
|
Handle(TDataXtd_Presentation) aTPrs =
|
|
Handle(TDataXtd_Presentation)::DownCast(theTarget);
|
|
const XmlObjMgt_Element& anElem = theSource;
|
|
|
|
//convert attribute value into GUID
|
|
aDOMStr = anElem.getAttribute(::GuidString());
|
|
if (aDOMStr == NULL)
|
|
{
|
|
WriteMessage("Cannot retrieve guid string from attribute");
|
|
return Standard_False;
|
|
}
|
|
Standard_CString aGuidStr = (Standard_CString) aDOMStr.GetString();
|
|
aTPrs->SetDriverGUID(aGuidStr);
|
|
|
|
// is displayed
|
|
aDOMStr = anElem.getAttribute(::IsDisplayedString());
|
|
aTPrs->SetDisplayed(aDOMStr != NULL);
|
|
|
|
Standard_Integer anIValue;
|
|
|
|
// color
|
|
aDOMStr = anElem.getAttribute(::ColorString());
|
|
if (aDOMStr != NULL)
|
|
{
|
|
if (!aDOMStr.GetInteger(anIValue))
|
|
{
|
|
aMessageString = TCollection_ExtendedString
|
|
("Cannot retrieve Integer value from \"") + aDOMStr + "\"";
|
|
WriteMessage (aMessageString);
|
|
return Standard_False;
|
|
}
|
|
aTPrs->SetColor((Quantity_NameOfColor)anIValue);
|
|
}
|
|
else
|
|
{
|
|
aTPrs->UnsetColor();
|
|
}
|
|
|
|
// material
|
|
aDOMStr = anElem.getAttribute(::MaterialString());
|
|
if (aDOMStr != NULL)
|
|
{
|
|
if (!aDOMStr.GetInteger(anIValue))
|
|
{
|
|
aMessageString = TCollection_ExtendedString
|
|
("Cannot retrieve Integer value from \"") + aDOMStr + "\"";
|
|
WriteMessage (aMessageString);
|
|
return Standard_False;
|
|
}
|
|
aTPrs->SetMaterialIndex(anIValue);
|
|
}
|
|
else
|
|
{
|
|
aTPrs->UnsetMaterial();
|
|
}
|
|
|
|
Standard_Real aValue;
|
|
|
|
// transparency
|
|
aDOMStr = anElem.getAttribute(::TransparencyString());
|
|
if (aDOMStr != NULL)
|
|
{
|
|
if (!XmlObjMgt::GetReal(aDOMStr, aValue))
|
|
{
|
|
aMessageString = TCollection_ExtendedString
|
|
("Cannot retrieve Real value from \"") + aDOMStr + "\"";
|
|
WriteMessage (aMessageString);
|
|
return Standard_False;
|
|
}
|
|
aTPrs->SetTransparency(aValue);
|
|
}
|
|
else
|
|
{
|
|
aTPrs->UnsetTransparency();
|
|
}
|
|
|
|
// width
|
|
aDOMStr = anElem.getAttribute(::WidthString());
|
|
if (aDOMStr != NULL)
|
|
{
|
|
if (!XmlObjMgt::GetReal(aDOMStr, aValue))
|
|
{
|
|
aMessageString = TCollection_ExtendedString
|
|
("Cannot retrieve Real value from \"") + aDOMStr + "\"";
|
|
WriteMessage (aMessageString);
|
|
return Standard_False;
|
|
}
|
|
aTPrs->SetWidth(aValue);
|
|
}
|
|
else
|
|
{
|
|
aTPrs->UnsetWidth();
|
|
}
|
|
|
|
// mode
|
|
aDOMStr = anElem.getAttribute(::ModeString());
|
|
if (aDOMStr != NULL)
|
|
{
|
|
if (!aDOMStr.GetInteger(anIValue))
|
|
{
|
|
aMessageString = TCollection_ExtendedString
|
|
("Cannot retrieve Integer value from \"") + aDOMStr + "\"";
|
|
WriteMessage (aMessageString);
|
|
return Standard_False;
|
|
}
|
|
aTPrs->SetMode(anIValue);
|
|
}
|
|
else
|
|
{
|
|
aTPrs->UnsetMode();
|
|
}
|
|
|
|
return Standard_True;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste
|
|
//purpose : transient -> persistent (store)
|
|
//=======================================================================
|
|
void XmlMDataXtd_PresentationDriver::Paste
|
|
(const Handle(TDF_Attribute)& theSource,
|
|
XmlObjMgt_Persistent& theTarget,
|
|
XmlObjMgt_SRelocationTable&) const
|
|
{
|
|
Handle(TDataXtd_Presentation) aTPrs =
|
|
Handle(TDataXtd_Presentation)::DownCast(theSource);
|
|
if (aTPrs.IsNull()) return;
|
|
|
|
//convert GUID into attribute value
|
|
Standard_Character aGuidStr [40];
|
|
Standard_PCharacter pGuidStr;
|
|
pGuidStr=aGuidStr;
|
|
aTPrs->GetDriverGUID().ToCString (pGuidStr);
|
|
theTarget.Element().setAttribute(::GuidString(), aGuidStr);
|
|
|
|
// is displayed
|
|
if (aTPrs->IsDisplayed())
|
|
theTarget.Element().setAttribute(::IsDisplayedString(), ::DisplayedString());
|
|
|
|
Standard_Integer aNb;
|
|
|
|
// color
|
|
if (aTPrs->HasOwnColor())
|
|
{
|
|
aNb = aTPrs->Color();
|
|
theTarget.Element().setAttribute(::ColorString(), aNb);
|
|
}
|
|
|
|
// material
|
|
if (aTPrs->HasOwnMaterial())
|
|
{
|
|
aNb = aTPrs->MaterialIndex();
|
|
theTarget.Element().setAttribute(::MaterialString(), aNb);
|
|
}
|
|
|
|
// transparency
|
|
if (aTPrs->HasOwnTransparency())
|
|
{
|
|
TCollection_AsciiString aRNbStr (aTPrs->Transparency());
|
|
theTarget.Element().setAttribute(::TransparencyString(), aRNbStr.ToCString());
|
|
}
|
|
|
|
// width
|
|
if (aTPrs->HasOwnWidth())
|
|
{
|
|
TCollection_AsciiString aRNbStr (aTPrs->Width());
|
|
theTarget.Element().setAttribute(::WidthString(), aRNbStr.ToCString());
|
|
}
|
|
|
|
#ifdef OCC6010
|
|
// mode
|
|
if (aTPrs->HasOwnMode())
|
|
{
|
|
aNb = aTPrs->Mode();
|
|
theTarget.Element().setAttribute(::ModeString(), aNb);
|
|
}
|
|
#endif
|
|
}
|