1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/PrsMgr/PrsMgr_PresentationManager3d.cxx
dbv 6942f04af5 0023810: Cyclic dependency detected between the several OCCT units
Removed package Viewer. Methods and class filed from Viewer_View and Viewer_Viewer have been moved to V3d_View and V3d_Viewer
accordingly.
Removed Aspect_GraphicDriver.
V3d_View declaration fix
2013-03-06 13:17:05 +04:00

202 lines
8.5 KiB
C++
Executable File

// Copyright (c) 1998-1999 Matra Datavision
// Copyright (c) 1999-2012 OPEN CASCADE SAS
//
// The content of this file is subject to the Open CASCADE Technology Public
// License Version 6.5 (the "License"). You may not use the content of this file
// except in compliance with the License. Please obtain a copy of the License
// at http://www.opencascade.org and read it completely before using this file.
//
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
//
// The Original Code and all software distributed under the License is
// distributed on an "AS IS" basis, without warranty of any kind, and the
// Initial Developer hereby disclaims all such warranties, including without
// limitation, any warranties of merchantability, fitness for a particular
// purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License.
#include <PrsMgr_PresentationManager3d.ixx>
#include <PrsMgr_Presentation3d.hxx>
#include <Prs3d_ShadingAspect.hxx>
#include <Visual3d_TransientManager.hxx>
#include <V3d_View.hxx>
#include <TColStd_ListIteratorOfListOfTransient.hxx>
PrsMgr_PresentationManager3d::PrsMgr_PresentationManager3d (const Handle(Graphic3d_StructureManager)& aStructureManager):myStructureManager(aStructureManager) {}
Standard_Boolean PrsMgr_PresentationManager3d::Is3D() const
{return Standard_True;}
Handle(PrsMgr_Presentation) PrsMgr_PresentationManager3d::newPresentation (const Handle(PrsMgr_PresentableObject) & aPresentableObject) {
return new PrsMgr_Presentation3d(this,aPresentableObject);
}
void PrsMgr_PresentationManager3d::Connect(const Handle(PrsMgr_PresentableObject)& aPresentableObject, const Handle(PrsMgr_PresentableObject)& anOtherObject, const Standard_Integer aMode, const Standard_Integer anOtherMode) {
if (!HasPresentation(aPresentableObject,aMode)){
AddPresentation(aPresentableObject,aMode);
}
if (!HasPresentation(anOtherObject,anOtherMode)){
AddPresentation(anOtherObject,anOtherMode);
}
CastPresentation(aPresentableObject,aMode)->Connect(CastPresentation(anOtherObject,aMode));
}
//=======================================================================
//function : Transform
//purpose :
//=======================================================================
void PrsMgr_PresentationManager3d::Transform(const Handle(PrsMgr_PresentableObject)& aPresentableObject,const Handle(Geom_Transformation)& aTransformation, const Standard_Integer aMode) {
CastPresentation(aPresentableObject,aMode)->Transform(aTransformation);
}
//=======================================================================
//function : Place
//purpose :
//=======================================================================
void PrsMgr_PresentationManager3d::Place(const Handle(PrsMgr_PresentableObject)& aPresentableObject, const Quantity_Length X,const Quantity_Length Y,const Quantity_Length Z,const Standard_Integer aMode) {
CastPresentation(aPresentableObject,aMode)->Place(X,Y,Z);
}
//=======================================================================
//function : Multiply
//purpose :
//=======================================================================
void PrsMgr_PresentationManager3d::Multiply(const Handle(PrsMgr_PresentableObject)& aPresentableObject,const Handle(Geom_Transformation)& aTransformation, const Standard_Integer aMode) {
CastPresentation(aPresentableObject,aMode)->Multiply(aTransformation);
}
//=======================================================================
//function : Move
//purpose :
//=======================================================================
void PrsMgr_PresentationManager3d::Move(const Handle(PrsMgr_PresentableObject)& aPresentableObject, const Quantity_Length X,const Quantity_Length Y,const Quantity_Length Z,const Standard_Integer aMode) {
CastPresentation(aPresentableObject,aMode)->Move(X,Y,Z);
}
//=======================================================================
//function : Color
//purpose :
//=======================================================================
void PrsMgr_PresentationManager3d::Color(const Handle(PrsMgr_PresentableObject)& aPresentableObject, const Quantity_NameOfColor aColor, const Standard_Integer aMode) {
if (!HasPresentation(aPresentableObject,aMode)){
AddPresentation(aPresentableObject,aMode);
}
else if(Presentation(aPresentableObject,aMode)->MustBeUpdated()){
Update(aPresentableObject,aMode);
}
CastPresentation(aPresentableObject,aMode)->Color(aColor);
if(myImmediateMode)
Add(aPresentableObject,aMode);
}
//=======================================================================
//function : BoundBox
//purpose :
//=======================================================================
void PrsMgr_PresentationManager3d::BoundBox(const Handle(PrsMgr_PresentableObject)& aPresentableObject, const Standard_Integer aMode) {
if (!HasPresentation(aPresentableObject,aMode)){
AddPresentation(aPresentableObject,aMode);
}
else if(Presentation(aPresentableObject,aMode)->MustBeUpdated()){
Update(aPresentableObject,aMode);
}
CastPresentation(aPresentableObject,aMode)->BoundBox();
}
//=======================================================================
//function : SetShadingAspect
//purpose :
//=======================================================================
//POP pour K4L
void PrsMgr_PresentationManager3d::SetShadingAspect(const Handle(PrsMgr_PresentableObject)& aPresentableObject, const Quantity_NameOfColor aColor, const Graphic3d_NameOfMaterial aMaterial, const Standard_Integer aMode) {
//void PrsMgr_PresentationManager3d::SetShadingAspect(const Handle(PrsMgr_PresentableObject)& aPresentableObject, const Quantity_NameOfColor aColor, const Graphic3d_NameOfPhysicalMaterial aMaterial, const Standard_Integer aMode) {
Handle(Prs3d_ShadingAspect) sa = new Prs3d_ShadingAspect;
sa->SetColor(aColor);
sa->SetMaterial(aMaterial);
SetShadingAspect(aPresentableObject,sa,aMode);
}
void PrsMgr_PresentationManager3d::SetShadingAspect(const Handle(PrsMgr_PresentableObject)& aPresentableObject, const Handle(Prs3d_ShadingAspect)& aShadingAspect, const Standard_Integer aMode) {
if (HasPresentation(aPresentableObject,aMode)){
CastPresentation(aPresentableObject,aMode)->SetShadingAspect(aShadingAspect);
}
}
//=======================================================================
//function : CastPresentation
//purpose :
//=======================================================================
Handle(PrsMgr_Presentation3d) PrsMgr_PresentationManager3d::CastPresentation(const Handle(PrsMgr_PresentableObject)& aPresentableObject, const Standard_Integer aMode) const {
return Handle(PrsMgr_Presentation3d)::DownCast(Presentation(aPresentableObject,aMode));
}
//=======================================================================
//function : BeginDraw
//purpose :
//=======================================================================
void PrsMgr_PresentationManager3d::BeginDraw()
{
PrsMgr_PresentationManager::BeginDraw();
myStrList.Clear();
}
//=======================================================================
//function : EndDraw
//purpose :
//=======================================================================
void PrsMgr_PresentationManager3d::EndDraw(const Handle(V3d_View)& theView, const Standard_Boolean DoubleBuffer)
{
if (!theView->TransientManagerBeginDraw (DoubleBuffer, Standard_True))
{
myImmediateMode = Standard_False;
return;
}
if(myImmediateList.IsEmpty() && myStrList.IsEmpty()) {
Visual3d_TransientManager::EndDraw();
myImmediateMode = Standard_False;
return;
}
TColStd_ListIteratorOfListOfTransient it(myImmediateList);
Handle(PrsMgr_Presentation3d) P3d;
for (; it.More(); it.Next()) {
P3d = *((Handle(PrsMgr_Presentation3d)*)&(it.Value()));
Visual3d_TransientManager::DrawStructure(P3d->Presentation());
}
Handle(Standard_Transient) Tr;
for(it.Initialize(myStrList);it.More();it.Next()){
Tr = it.Value();
Visual3d_TransientManager::DrawStructure(*((Handle(Prs3d_Presentation)*)&Tr));
}
Visual3d_TransientManager::EndDraw();
myImmediateMode = Standard_False;
}
//=======================================================================
//function : Add
//purpose :
//=======================================================================
void PrsMgr_PresentationManager3d::AddToImmediateList(const Handle(Prs3d_Presentation)& P){
myStrList.Append(P);
}