diff --git a/src/DNaming/DNaming_BooleanOperationDriver.cdl b/src/DNaming/DNaming_BooleanOperationDriver.cdl index cee6439fe2..b8347c5733 100644 --- a/src/DNaming/DNaming_BooleanOperationDriver.cdl +++ b/src/DNaming/DNaming_BooleanOperationDriver.cdl @@ -57,6 +57,9 @@ is LoadNamingDS(me; theResultLabel : Label from TDF; MS : in out BooleanOperation from BRepAlgoAPI) is private; + LoadSectionNDS(me; theResultLabel : Label from TDF; MS : in out BooleanOperation from BRepAlgoAPI) + is private; + CheckAndLoad(me; theMkOpe : in out BooleanOperation from BRepAlgoAPI; theFunction : Function from TFunction) returns Boolean from Standard is private; diff --git a/src/DNaming/DNaming_BooleanOperationDriver.cxx b/src/DNaming/DNaming_BooleanOperationDriver.cxx index 9ed3fbf01b..dfc93c3dc1 100644 --- a/src/DNaming/DNaming_BooleanOperationDriver.cxx +++ b/src/DNaming/DNaming_BooleanOperationDriver.cxx @@ -35,6 +35,7 @@ #include #include #include +#include #include #include #include @@ -147,6 +148,11 @@ Standard_Integer DNaming_BooleanOperationDriver::Execute(TFunction_Logbook& theL else if(aFunction->GetDriverGUID() == COMMON_GUID){ BRepAlgoAPI_Common aMkCom (anOBJECT, aTOOL); anIsDone = CheckAndLoad(aMkCom, aFunction); + } + // case SECTION + else if(aFunction->GetDriverGUID() == SECTION_GUID){ + BRepAlgoAPI_Section aMkSect (anOBJECT, aTOOL); + anIsDone = CheckAndLoad(aMkSect, aFunction); } else { aFunction->SetFailure(UNSUPPORTED_FUNCTION); @@ -319,6 +325,39 @@ void DNaming_BooleanOperationDriver::LoadNamingDS (const TDF_Label& theResultLab } } +//======================================================================= +//function : LoadNamingDS +//purpose : +//======================================================================= +void DNaming_BooleanOperationDriver::LoadSectionNDS (const TDF_Label& theResultLabel, + BRepAlgoAPI_BooleanOperation& MS) const +{ + + const TopoDS_Shape& ResSh = MS.Shape(); + const TopoDS_Shape& ObjSh = MS.Shape1(); + const TopoDS_Shape& ToolSh = MS.Shape2(); + if (ResSh.IsNull()) { +#ifdef DEB + cout<<"LoadSectionNamingDS: The result of the boolean operation is null"<GetDriverGUID() == CUT_GUID) { LoadNamingDS(RESPOSITION(theFunction), theMkOpe); // the same naming only for case of solids } else if(theFunction->GetDriverGUID() == COMMON_GUID) { - LoadNamingDS(RESPOSITION(theFunction), theMkOpe); - } + LoadNamingDS(RESPOSITION(theFunction), theMkOpe); + } else if(theFunction->GetDriverGUID() == SECTION_GUID) { + LoadSectionNDS(RESPOSITION(theFunction), theMkOpe); + } theFunction->SetFailure(DONE); return Standard_True; diff --git a/src/DNaming/DNaming_ModelingCommands.cxx b/src/DNaming/DNaming_ModelingCommands.cxx index 57c21f0a21..5d8c9c00ce 100644 --- a/src/DNaming/DNaming_ModelingCommands.cxx +++ b/src/DNaming/DNaming_ModelingCommands.cxx @@ -124,25 +124,26 @@ static Standard_Boolean GetFuncGUID(Standard_CString aKey,Standard_GUID& GUID) Standard_Boolean aRes(Standard_False); if(!isBuilt) { - aDMap.Bind("PntXYZ", PNTXYZ_GUID); - aDMap.Bind("PntRLT", PNTRLT_GUID); - aDMap.Bind("Line3D", LINE3D_GUID); - aDMap.Bind("Box", BOX_GUID);//+ - aDMap.Bind("Sph", SPH_GUID);//+ - aDMap.Bind("Cyl", CYL_GUID);//+ - aDMap.Bind("Cut", CUT_GUID);//+ - aDMap.Bind("Fuse", FUSE_GUID);//+ - aDMap.Bind("Comm", COMMON_GUID);//+ - aDMap.Bind("Prism", PRISM_GUID);//+ - aDMap.Bind("FulRevol", FULREVOL_GUID);//+ - aDMap.Bind("SecRevol", SECREVOL_GUID);//+ - aDMap.Bind("PMirr", PMIRR_GUID);//+ - aDMap.Bind("PTxyz", PTXYZ_GUID);//+ - aDMap.Bind("PTALine", PTALINE_GUID);//+ - aDMap.Bind("PRLine", PRRLINE_GUID);//+ - aDMap.Bind("Fillet",FILLT_GUID);//+ - aDMap.Bind("Attach",ATTCH_GUID);//+ - aDMap.Bind("XAttach",XTTCH_GUID);//+ + aDMap.Bind("PntXYZ", PNTXYZ_GUID); + aDMap.Bind("PntRLT", PNTRLT_GUID); + aDMap.Bind("Line3D", LINE3D_GUID); + aDMap.Bind("Box", BOX_GUID); + aDMap.Bind("Sph", SPH_GUID); + aDMap.Bind("Cyl", CYL_GUID); + aDMap.Bind("Cut", CUT_GUID); + aDMap.Bind("Fuse", FUSE_GUID); + aDMap.Bind("Comm", COMMON_GUID); + aDMap.Bind("Prism", PRISM_GUID); + aDMap.Bind("FulRevol", FULREVOL_GUID); + aDMap.Bind("SecRevol", SECREVOL_GUID); + aDMap.Bind("PMirr", PMIRR_GUID); + aDMap.Bind("PTxyz", PTXYZ_GUID); + aDMap.Bind("PTALine", PTALINE_GUID); + aDMap.Bind("PRLine", PRRLINE_GUID); + aDMap.Bind("Fillet", FILLT_GUID); + aDMap.Bind("Attach", ATTCH_GUID); + aDMap.Bind("XAttach", XTTCH_GUID); + aDMap.Bind("Section", SECTION_GUID); isBuilt = Standard_True; } @@ -192,8 +193,10 @@ static Handle(TFunction_Driver) GetDriver(const TCollection_AsciiString& name) aDrv = new DNaming_PointDriver(); else if(name == "PntRLT") aDrv = new DNaming_PointDriver(); -else if(name == "Line3D") + else if(name == "Line3D") aDrv = new DNaming_Line3DDriver(); + else if(name == "Section") + aDrv = new DNaming_BooleanOperationDriver(); else cout << "the specified driver is not supported" <Label(), funGUID); + if(aFun.IsNull()) return 1; + TDataStd_Name::Set(aFun->Label(), "Section"); + + TDF_Reference::Set(anObject->Label(), aFun->Label().FindChild(FUNCTION_RESULT_LABEL)); //result is here + DNaming::SetObjectArg(aFun, BOOL_TOOL, aTool); + DDF::ReturnLabel(theDI, aFun->Label()); + return 0; + } + cout << "DModel_AddSection : Error" << endl; + return 1; + } + //======================================================================= //function : DNaming_AddFillet //purpose : "AddFillet Doc Object Radius Path " @@ -2168,6 +2203,8 @@ void DNaming::ModelingCommands (Draw_Interpretor& theCommands) theCommands.Add ("AddCommon", "AddCommon Doc Object Tool", __FILE__, DNaming_AddCommon, g2); + theCommands.Add ("AddSection", "AddSection Doc Object Tool", __FILE__, DNaming_AddSection, g2); + theCommands.Add ("AddFillet", "AddFillet Doc Object Radius Path [SurfaceType(0-Rational;1-QuasiAngular;2-Polynomial)]", __FILE__, DNaming_AddFillet, g2); diff --git a/src/DNaming/ModelDefinitions.hxx b/src/DNaming/ModelDefinitions.hxx index d59cfe4850..49fe7d505d 100644 --- a/src/DNaming/ModelDefinitions.hxx +++ b/src/DNaming/ModelDefinitions.hxx @@ -33,6 +33,7 @@ #define CUT_GUID Standard_GUID("12e94548-6dbc-11d4-b9c8-0060b0ee281b") #define FUSE_GUID Standard_GUID("12e94549-6dbc-11d4-b9c8-0060b0ee281b") #define COMMON_GUID Standard_GUID("12e9454a-6dbc-11d4-b9c8-0060b0ee281b") +#define SECTION_GUID Standard_GUID("12e9454b-6dbc-11d4-b9c8-0060b0ee281b") #define PRISM_GUID Standard_GUID("12e94550-6dbc-11d4-b9c8-0060b0ee281b") #define FULREVOL_GUID Standard_GUID("12e94551-6dbc-11d4-b9c8-0060b0ee281b") @@ -59,6 +60,8 @@ #define CYL_AXIS 3 #define ATTACH_ARG 1 #define BOOL_TOOL 1 +#define SECT_OBJECT 1 +#define SECT_TOOL 2 #define FILLET_RADIUS 1 #define FILLET_SURFTYPE 2 #define FILLET_PATH 3 diff --git a/tests/bugs/caf/bug24869 b/tests/bugs/caf/bug24869 new file mode 100644 index 0000000000..39b17debb7 --- /dev/null +++ b/tests/bugs/caf/bug24869 @@ -0,0 +1,66 @@ +puts "==========" +puts "OCC24869" +puts "==========" +puts "" +################################################### +# OCAF testing framework extending +################################################### + +NewDocument D MDTV-Standard + +#1 - create box1 +NewCommand D +set B1 [AddObject D] +set F1 [AddFunction D $B1 Box] +BoxDX D $B1 100 +BoxDY D $B1 200 +BoxDZ D $B1 300 +InitLogBook D +AddDriver D Box Section PTxyz +ComputeFun D $F1 +GetShape D $F1:2 Box1 + +#1 - create box2 +NewCommand D +set B2 [AddObject D] +set F2 [AddFunction D $B2 Box] +BoxDX D $B2 150 +BoxDY D $B2 200 +BoxDZ D $B2 300 +ComputeFun D $F2 + +NewCommand D +set FTr2 [PTranslateDXYZ D $B2 30 40 50] +ComputeFun D $FTr2 +# get modified result +GetShape D $FTr2:2 Box2 + +#3 Make Section Box1 Box2 +NewCommand D +set CS [AddSection D $B1 $B2] +ComputeFun D $CS +erase +GetShape D $CS:2 S + +# Check result +NewCommand D +erase +ExploreShape D $CS:2:1 R + +# should be 12 edges +set l1 [llength [directory R_*] ] + +# should be 12 faces +set l2 [llength [directory oldR_*] ] + +if { ${l1} == 12 } { + puts "OK: Good edge number" +} else { + puts "Error: Bad edge number" +} + +if { ${l2} == 12 } { + puts "OK: Good face number" +} else { + puts "Error: Bad face number" +}