1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/RWStepVisual/RWStepVisual_RWTextStyleWithBoxCharacteristics.cxx
abv 42cf5bc1ca 0024002: Overall code and build procedure refactoring -- automatic
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl":
- WOK-generated header files from inc and sources from drv are moved to src
- CDL files removed
- All packages are converted to nocdlpack
2015-07-12 07:42:38 +03:00

135 lines
4.7 KiB
C++

// Copyright (c) 1999-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 <Interface_Check.hxx>
#include <Interface_EntityIterator.hxx>
#include <RWStepVisual_RWTextStyleWithBoxCharacteristics.hxx>
#include <Standard_Real.hxx>
#include <StepData_StepReaderData.hxx>
#include <StepData_StepWriter.hxx>
#include <StepVisual_HArray1OfBoxCharacteristicSelect.hxx>
#include <StepVisual_TextStyleForDefinedFont.hxx>
#include <StepVisual_TextStyleWithBoxCharacteristics.hxx>
RWStepVisual_RWTextStyleWithBoxCharacteristics::RWStepVisual_RWTextStyleWithBoxCharacteristics () {}
void RWStepVisual_RWTextStyleWithBoxCharacteristics::ReadStep
(const Handle(StepData_StepReaderData)& data,
const Standard_Integer num,
Handle(Interface_Check)& ach,
const Handle(StepVisual_TextStyleWithBoxCharacteristics)& ent) const
{
// --- Number of Parameter Control ---
if (!data->CheckNbParams(num,3,ach,"text_style_with_box_characteristics has not 3 parameter(s)")) return;
// --- inherited field : name ---
Handle(TCollection_HAsciiString) aName;
//szv#4:S4163:12Mar99 `Standard_Boolean stat1 =` not needed
data->ReadString (num,1,"name",ach,aName);
// --- inherited field : characterAppearance ---
Handle(StepVisual_TextStyleForDefinedFont) aCharacterAppearance;
//szv#4:S4163:12Mar99 `Standard_Boolean stat2 =` not needed
data->ReadEntity(num, 2,"character_appearance", ach,
STANDARD_TYPE(StepVisual_TextStyleForDefinedFont), aCharacterAppearance);
// --- own field : characteristics ---
Standard_Integer numr, numpr;
TCollection_AsciiString TypeHeigth("BOX_HEIGHT");
TCollection_AsciiString TypeWidth("BOX_WIDTH");
TCollection_AsciiString TypeSlant("BOX_SLANT_ANGLE");
TCollection_AsciiString TypeRotate("BOX_ROTATE_ANGLE");
TCollection_AsciiString TrueType;
Handle(StepVisual_HArray1OfBoxCharacteristicSelect) aCharacteristics;
Standard_Real aCharacteristicsItem;
StepVisual_BoxCharacteristicSelect aBoxCharacteristicSelect;
Standard_Integer nsub3;
nsub3 = data->SubListNumber(num, 3, Standard_False);
if (nsub3 !=0) {
Standard_Integer nb3 = data->NbParams(nsub3);
aCharacteristics = new StepVisual_HArray1OfBoxCharacteristicSelect(1, nb3);
for (Standard_Integer i3 = 1; i3 <= nb3; i3 ++) {
// Looks for true type :
//szv#4:S4163:12Mar99 `Standard_Boolean statType =` not needed
if (data->ReadTypedParam(nsub3,i3,Standard_True,"characteristics",ach,numr,numpr,TrueType)) {
//szv#4:S4163:12Mar99 `Standard_Boolean stat3 =` not needed
if (data->ReadReal (numr,numpr,"characteristics",ach,aCharacteristicsItem)) {
aBoxCharacteristicSelect.SetRealValue(aCharacteristicsItem);
if (TrueType == TypeHeigth)
aBoxCharacteristicSelect.SetTypeOfContent(1);
else if (TrueType == TypeWidth)
aBoxCharacteristicSelect.SetTypeOfContent(2);
else if (TrueType == TypeSlant)
aBoxCharacteristicSelect.SetTypeOfContent(3);
else if (TrueType == TypeRotate)
aBoxCharacteristicSelect.SetTypeOfContent(4);
else {
ach->AddFail("Parameter #3 (characteristics) item has illegal TYPE");
}
aCharacteristics->SetValue(i3, aBoxCharacteristicSelect);
}
else {
ach->AddFail("Parameter #3 (characteristics) item is not a REAL");
}
}
else {
ach->AddFail("Parameter #3 (characteristics) item is not TYPED");
}
}
}
else {
ach->AddFail("Parameter #3 (characteristics) is not a LIST");
}
//--- Initialisation of the read entity ---
ent->Init(aName, aCharacterAppearance, aCharacteristics);
}
void RWStepVisual_RWTextStyleWithBoxCharacteristics::WriteStep
(StepData_StepWriter& SW,
const Handle(StepVisual_TextStyleWithBoxCharacteristics)& ent) const
{
// --- inherited field name ---
SW.Send(ent->Name());
// --- inherited field characterAppearance ---
SW.Send(ent->CharacterAppearance());
// --- own field : characteristics ---
// Attention : a modifier avant utilisation
SW.Send(ent->Characteristics());
}
void RWStepVisual_RWTextStyleWithBoxCharacteristics::Share(const Handle(StepVisual_TextStyleWithBoxCharacteristics)& ent, Interface_EntityIterator& iter) const
{
iter.GetOneItem(ent->CharacterAppearance());
}