mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-08 18:40:55 +03:00
129 lines
4.3 KiB
C++
129 lines
4.3 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 <Message_Messenger.hxx>
|
|
#include <gp_XYZ.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <TDF_Attribute.hxx>
|
|
#include <XCAFDoc_Centroid.hxx>
|
|
#include <XmlMXCAFDoc_CentroidDriver.hxx>
|
|
#include <XmlObjMgt.hxx>
|
|
#include <XmlObjMgt_Persistent.hxx>
|
|
|
|
#include <stdio.h>
|
|
IMPLEMENT_STANDARD_RTTIEXT(XmlMXCAFDoc_CentroidDriver,XmlMDF_ADriver)
|
|
|
|
//=======================================================================
|
|
//function : XmlMXCAFDoc_CentroidDriver
|
|
//purpose : Constructor
|
|
//=======================================================================
|
|
XmlMXCAFDoc_CentroidDriver::XmlMXCAFDoc_CentroidDriver
|
|
(const Handle(Message_Messenger)& theMsgDriver)
|
|
: XmlMDF_ADriver (theMsgDriver, "xcaf", "Centroid")
|
|
{}
|
|
|
|
//=======================================================================
|
|
//function : NewEmpty
|
|
//purpose :
|
|
//=======================================================================
|
|
Handle(TDF_Attribute) XmlMXCAFDoc_CentroidDriver::NewEmpty() const
|
|
{
|
|
return (new XCAFDoc_Centroid());
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste
|
|
//purpose : persistent -> transient (retrieve)
|
|
//=======================================================================
|
|
Standard_Boolean XmlMXCAFDoc_CentroidDriver::Paste
|
|
(const XmlObjMgt_Persistent& theSource,
|
|
const Handle(TDF_Attribute)& theTarget,
|
|
XmlObjMgt_RRelocationTable& ) const
|
|
{
|
|
Handle(XCAFDoc_Centroid) aTPos = Handle(XCAFDoc_Centroid)::DownCast(theTarget);
|
|
|
|
// position
|
|
XmlObjMgt_DOMString aPosStr = XmlObjMgt::GetStringValue(theSource.Element());
|
|
if (aPosStr == NULL)
|
|
{
|
|
myMessageDriver->Send ("Cannot retrieve position string from element", Message_Fail);
|
|
return Standard_False;
|
|
}
|
|
|
|
gp_Pnt aPos;
|
|
Standard_Real aValue;
|
|
Standard_CString aValueStr = Standard_CString(aPosStr.GetString());
|
|
|
|
// X
|
|
if (!XmlObjMgt::GetReal(aValueStr, aValue))
|
|
{
|
|
TCollection_ExtendedString aMessageString =
|
|
TCollection_ExtendedString
|
|
("Cannot retrieve X coordinate for XCAFDoc_Centroid attribute as \"")
|
|
+ aValueStr + "\"";
|
|
myMessageDriver->Send (aMessageString, Message_Fail);
|
|
return Standard_False;
|
|
}
|
|
aPos.SetX(aValue);
|
|
|
|
// Y
|
|
if (!XmlObjMgt::GetReal(aValueStr, aValue))
|
|
{
|
|
TCollection_ExtendedString aMessageString =
|
|
TCollection_ExtendedString
|
|
("Cannot retrieve Y coordinate for XCAFDoc_Centroid attribute as \"")
|
|
+ aValueStr + "\"";
|
|
myMessageDriver->Send (aMessageString, Message_Fail);
|
|
return Standard_False;
|
|
}
|
|
aPos.SetY(aValue);
|
|
|
|
// Z
|
|
if (!XmlObjMgt::GetReal(aValueStr, aValue))
|
|
{
|
|
TCollection_ExtendedString aMessageString =
|
|
TCollection_ExtendedString
|
|
("Cannot retrieve Z coordinate for XCAFDoc_Centroid attribute as \"")
|
|
+ aValueStr + "\"";
|
|
myMessageDriver->Send (aMessageString, Message_Fail);
|
|
return Standard_False;
|
|
}
|
|
aPos.SetZ(aValue);
|
|
|
|
aTPos->Set(aPos);
|
|
|
|
return Standard_True;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Paste
|
|
//purpose : transient -> persistent (store)
|
|
//=======================================================================
|
|
void XmlMXCAFDoc_CentroidDriver::Paste
|
|
(const Handle(TDF_Attribute)& theSource,
|
|
XmlObjMgt_Persistent& theTarget,
|
|
XmlObjMgt_SRelocationTable& ) const
|
|
{
|
|
Handle(XCAFDoc_Centroid) aTPos = Handle(XCAFDoc_Centroid)::DownCast(theSource);
|
|
if (!aTPos.IsNull())
|
|
{
|
|
gp_Pnt aPos = aTPos->Get();
|
|
char buf[75]; // (24 + 1) * 3
|
|
Sprintf (buf, "%.17g %.17g %.17g", aPos.X(), aPos.Y(), aPos.Z());
|
|
XmlObjMgt::SetStringValue(theTarget.Element(), buf);
|
|
}
|
|
}
|