diff --git a/src/OpenGl/FILES b/src/OpenGl/FILES index 3dd49f9b51..96ed44c1e5 100755 --- a/src/OpenGl/FILES +++ b/src/OpenGl/FILES @@ -92,6 +92,7 @@ OpenGl_TextureBox.hxx OpenGl_ImageBox.cxx OpenGl_ImageBox.hxx OpenGl_Resource.hxx +OpenGl_Resource.cxx OpenGl_ResourceVBO.hxx OpenGl_ResourceVBO.cxx OpenGl_ResourceTexture.hxx diff --git a/src/OpenGl/OpenGl_Resource.cxx b/src/OpenGl/OpenGl_Resource.cxx new file mode 100644 index 0000000000..030a123f13 --- /dev/null +++ b/src/OpenGl/OpenGl_Resource.cxx @@ -0,0 +1,23 @@ +// Created on: 2012-04-04 +// Created by: Sergey ANIKIN +// Copyright (c) 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 + +IMPLEMENT_STANDARD_HANDLE (OpenGl_Resource, MMgt_TShared) +IMPLEMENT_STANDARD_RTTIEXT(OpenGl_Resource, MMgt_TShared) diff --git a/src/OpenGl/OpenGl_Resource.hxx b/src/OpenGl/OpenGl_Resource.hxx index 14dc19deeb..c7cd264f94 100755 --- a/src/OpenGl/OpenGl_Resource.hxx +++ b/src/OpenGl/OpenGl_Resource.hxx @@ -47,16 +47,6 @@ public: //! Constructor OpenGl_Resource(GLuint theId) : myId(theId) { } - //! Copy constructor - OpenGl_Resource(const OpenGl_Resource& theBase) : myId(theBase.myId) { } - - //! Copy operation - OpenGl_Resource& operator= (const OpenGl_Resource& theBase) - { - this->myId = theBase.myId; - return *this; - } - //! Destructor virtual ~OpenGl_Resource() {} @@ -73,6 +63,10 @@ protected: GLuint myId; // Id of OpenGl memory resource +public: + + DEFINE_STANDARD_RTTI(OpenGl_Resource) // Type definition + }; DEFINE_STANDARD_HANDLE(OpenGl_Resource,MMgt_TShared) diff --git a/src/OpenGl/OpenGl_ResourceCleaner.cxx b/src/OpenGl/OpenGl_ResourceCleaner.cxx index a27462a60d..bcfec366f5 100755 --- a/src/OpenGl/OpenGl_ResourceCleaner.cxx +++ b/src/OpenGl/OpenGl_ResourceCleaner.cxx @@ -72,7 +72,7 @@ void OpenGl_ResourceCleaner::AppendContext(GLCONTEXT theContext, Standard_Boolea // memory resource //======================================================================= -Standard_Boolean OpenGl_ResourceCleaner::AddResource(GLCONTEXT theContext, Handle_OpenGl_Resource theResource) +Standard_Boolean OpenGl_ResourceCleaner::AddResource(GLCONTEXT theContext, const Handle(OpenGl_Resource)& theResource) { // if context found in the shared list if (mySharedContexts.Contains(theContext)) diff --git a/src/OpenGl/OpenGl_ResourceCleaner.hxx b/src/OpenGl/OpenGl_ResourceCleaner.hxx index e1b8cd5b18..dd5a234580 100755 --- a/src/OpenGl/OpenGl_ResourceCleaner.hxx +++ b/src/OpenGl/OpenGl_ResourceCleaner.hxx @@ -57,7 +57,7 @@ public: //! Tell the OpenGl_ResourceCleaner to clean up the OpenGl memory resource //! which has been created by the specified OpenGl context; //! The context should be in the OpenGl_ResourceCleaner control list. - Standard_Boolean AddResource(GLCONTEXT theContext, Handle_OpenGl_Resource theResource); + Standard_EXPORT Standard_Boolean AddResource(GLCONTEXT theContext, const Handle(OpenGl_Resource)& theResource); //! Cancel clean procedure for all the resources added to the OpenGl_ResourceCleaner. void Clear(); @@ -83,7 +83,7 @@ public: GLCONTEXT GetSharedContext() const; //! Get the global instance of OpenGl_ResourceCleaner - static OpenGl_ResourceCleaner* GetInstance(); + Standard_EXPORT static OpenGl_ResourceCleaner* GetInstance(); private: diff --git a/src/OpenGl/OpenGl_ResourceTexture.cxx b/src/OpenGl/OpenGl_ResourceTexture.cxx index 7a84837318..c48056e4ca 100755 --- a/src/OpenGl/OpenGl_ResourceTexture.cxx +++ b/src/OpenGl/OpenGl_ResourceTexture.cxx @@ -21,25 +21,8 @@ #include #include -//======================================================================= -//function : OpenGl_ResourceTexture -//purpose : Constructor -//======================================================================= -OpenGl_ResourceTexture::OpenGl_ResourceTexture (GLuint theId) -: OpenGl_Resource (theId) -{ - // -} - -//======================================================================= -//function : OpenGl_ResourceTexture -//purpose : Copy constructor -//======================================================================= -OpenGl_ResourceTexture::OpenGl_ResourceTexture (const OpenGl_ResourceTexture& theResource) -: OpenGl_Resource (theResource) -{ - // -} +IMPLEMENT_STANDARD_HANDLE (OpenGl_ResourceTexture, OpenGl_Resource) +IMPLEMENT_STANDARD_RTTIEXT(OpenGl_ResourceTexture, OpenGl_Resource) //======================================================================= //function : Clean diff --git a/src/OpenGl/OpenGl_ResourceTexture.hxx b/src/OpenGl/OpenGl_ResourceTexture.hxx index 8b842f21a3..57c4dfd729 100755 --- a/src/OpenGl/OpenGl_ResourceTexture.hxx +++ b/src/OpenGl/OpenGl_ResourceTexture.hxx @@ -34,20 +34,23 @@ class OpenGl_ResourceTexture : public OpenGl_Resource public: //! Constructor - OpenGl_ResourceTexture(GLuint theId); - - //! Copy constructor - OpenGl_ResourceTexture(const OpenGl_ResourceTexture& theResource); + OpenGl_ResourceTexture(GLuint theId) : OpenGl_Resource (theId) {} //! Destructor - ~OpenGl_ResourceTexture() { } + virtual ~OpenGl_ResourceTexture() { } protected: //! Clean procedure for texture resource; //! Should be called by the OpenGl_ResourceCleaner - virtual void Clean (const Handle(OpenGl_Context)& theGlContext); + Standard_EXPORT virtual void Clean (const Handle(OpenGl_Context)& theGlContext); + +public: + + DEFINE_STANDARD_RTTI(OpenGl_ResourceTexture) // Type definition }; +DEFINE_STANDARD_HANDLE(OpenGl_ResourceTexture,OpenGl_Resource) + #endif diff --git a/src/OpenGl/OpenGl_ResourceVBO.cxx b/src/OpenGl/OpenGl_ResourceVBO.cxx index 337830da13..f252562835 100755 --- a/src/OpenGl/OpenGl_ResourceVBO.cxx +++ b/src/OpenGl/OpenGl_ResourceVBO.cxx @@ -22,25 +22,8 @@ #include #include -//======================================================================= -//function : OpenGl_ResourceVBO -//purpose : Constructor -//======================================================================= -OpenGl_ResourceVBO::OpenGl_ResourceVBO (GLuint theId) -: OpenGl_Resource (theId) -{ - // -} - -//======================================================================= -//function : OpenGl_ResourceVBO -//purpose : Copy constructor -//======================================================================= -OpenGl_ResourceVBO::OpenGl_ResourceVBO (const OpenGl_ResourceVBO& theResource) -: OpenGl_Resource (theResource) -{ - // -} +IMPLEMENT_STANDARD_HANDLE (OpenGl_ResourceVBO, OpenGl_Resource) +IMPLEMENT_STANDARD_RTTIEXT(OpenGl_ResourceVBO, OpenGl_Resource) //======================================================================= //function : Clean diff --git a/src/OpenGl/OpenGl_ResourceVBO.hxx b/src/OpenGl/OpenGl_ResourceVBO.hxx index 44283162f7..064335ba7f 100755 --- a/src/OpenGl/OpenGl_ResourceVBO.hxx +++ b/src/OpenGl/OpenGl_ResourceVBO.hxx @@ -34,20 +34,23 @@ class OpenGl_ResourceVBO : public OpenGl_Resource public: //! Constructor - OpenGl_ResourceVBO(GLuint theId); - - //! Copy constructor - OpenGl_ResourceVBO(const OpenGl_ResourceVBO& theResource); + OpenGl_ResourceVBO(GLuint theId) : OpenGl_Resource (theId) {} //! Destructor - ~OpenGl_ResourceVBO() { } + virtual ~OpenGl_ResourceVBO() { } protected: //! Clean procedure for VBO resource; //! Should be called by the OpenGl_ResourceCleaner - virtual void Clean (const Handle(OpenGl_Context)& theGlContext); + Standard_EXPORT virtual void Clean (const Handle(OpenGl_Context)& theGlContext); + +public: + + DEFINE_STANDARD_RTTI(OpenGl_ResourceVBO) // Type definition }; +DEFINE_STANDARD_HANDLE(OpenGl_ResourceVBO,OpenGl_Resource) + #endif diff --git a/src/OpenGl/OpenGl_Workspace.hxx b/src/OpenGl/OpenGl_Workspace.hxx index c946267baf..d689a1f32c 100644 --- a/src/OpenGl/OpenGl_Workspace.hxx +++ b/src/OpenGl/OpenGl_Workspace.hxx @@ -152,10 +152,11 @@ public: void SetTextParam (const OpenGl_TextParam* theParam) { TextParam_set = theParam; } - const OpenGl_AspectLine* AspectLine (const Standard_Boolean theWithApply); - const OpenGl_AspectFace* AspectFace (const Standard_Boolean theWithApply); - const OpenGl_AspectMarker* AspectMarker (const Standard_Boolean theWithApply); - const OpenGl_AspectText* AspectText (const Standard_Boolean theWithApply); + //// THESE METHODS ARE EXPORTED AS THEY PROVIDE STATE INFO TO USERDRAW + Standard_EXPORT const OpenGl_AspectLine* AspectLine (const Standard_Boolean theWithApply); + Standard_EXPORT const OpenGl_AspectFace* AspectFace (const Standard_Boolean theWithApply); + Standard_EXPORT const OpenGl_AspectMarker* AspectMarker (const Standard_Boolean theWithApply); + Standard_EXPORT const OpenGl_AspectText* AspectText (const Standard_Boolean theWithApply); //! Clear the applied aspect state. void ResetAppliedAspect(); diff --git a/src/ViewerTest/FILES b/src/ViewerTest/FILES index 4936233a78..bbe254bd8b 100755 --- a/src/ViewerTest/FILES +++ b/src/ViewerTest/FILES @@ -5,3 +5,4 @@ ViewerTest_RelationCommands.cxx ViewerTest_ObjectCommands.cxx ViewerTest_FilletCommands.cxx ViewerTest_VoxelCommands.cxx +ViewerTest_OpenGlCommands.cxx diff --git a/src/ViewerTest/ViewerTest.cdl b/src/ViewerTest/ViewerTest.cdl index 7243e1ac3b..27dcf35935 100755 --- a/src/ViewerTest/ViewerTest.cdl +++ b/src/ViewerTest/ViewerTest.cdl @@ -125,6 +125,7 @@ is ObjectCommands(theCommands :in out Interpretor from Draw); FilletCommands(theCommands :in out Interpretor from Draw); VoxelCommands(theCommands :in out Interpretor from Draw); + OpenGlCommands(theCommands :in out Interpretor from Draw); GetMousePosition(xpix,ypix: out Integer from Standard); diff --git a/src/ViewerTest/ViewerTest.cxx b/src/ViewerTest/ViewerTest.cxx index 6daf9236d4..85e69b1241 100755 --- a/src/ViewerTest/ViewerTest.cxx +++ b/src/ViewerTest/ViewerTest.cxx @@ -3438,6 +3438,7 @@ void ViewerTest::Commands(Draw_Interpretor& theCommands) ViewerTest::ObjectCommands(theCommands); ViewerTest::FilletCommands(theCommands); ViewerTest::VoxelCommands(theCommands); + ViewerTest::OpenGlCommands(theCommands); const char *group = "AIS_Display"; diff --git a/src/ViewerTest/ViewerTest_OpenGlCommands.cxx b/src/ViewerTest/ViewerTest_OpenGlCommands.cxx new file mode 100644 index 0000000000..be1d6824ce --- /dev/null +++ b/src/ViewerTest/ViewerTest_OpenGlCommands.cxx @@ -0,0 +1,260 @@ +// Created on: 2012-04-09 +// Created by: Sergey ANIKIN +// Copyright (c) 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. + +#ifdef HAVE_CONFIG_H +# include +#endif + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +extern Standard_Boolean VDisplayAISObject (const TCollection_AsciiString& theName, + const Handle(AIS_InteractiveObject)& theAISObj, + Standard_Boolean theReplaceIfExists = Standard_True); + +//======================================================================= +//function : VUserDraw +//purpose : Checks availability and operation of UserDraw feature +//======================================================================= +DEFINE_STANDARD_HANDLE(VUserDrawObj, AIS_InteractiveObject) + +class VUserDrawObj : public AIS_InteractiveObject +{ +public: + // CASCADE RTTI + DEFINE_STANDARD_RTTI(VUserDrawObj); + + VUserDrawObj() + { + myCoords[0] = -10.; + myCoords[1] = -20.; + myCoords[2] = -30.; + myCoords[3] = 10.; + myCoords[4] = 20.; + myCoords[5] = 30.; + } + +public: + class Element : public OpenGl_Element + { + private: + Handle(VUserDrawObj) myIObj; + + public: + Element (const Handle(VUserDrawObj)& theIObj, + CALL_DEF_BOUNDS* theBounds) + : myIObj( theIObj ) + { + if (!myIObj.IsNull()) + myIObj->GetBounds(theBounds); + } + + virtual ~Element () + { + } + + virtual void Render (const Handle(OpenGl_Workspace)& theWorkspace) const + { + if (!myIObj.IsNull()) + myIObj->Render(theWorkspace); + } + + public: + DEFINE_STANDARD_ALLOC + }; + +private: + // Virtual methods implementation + void Compute (const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, + const Handle(Prs3d_Presentation)& thePresentation, + const Standard_Integer theMode); + + void ComputeSelection (const Handle(SelectMgr_Selection)& theSelection, + const Standard_Integer theMode); + + // Called by VUserDrawElement + void Render(const Handle(OpenGl_Workspace)& theWorkspace) const; + void GetBounds(CALL_DEF_BOUNDS* theBounds); + + GLfloat myCoords[6]; + + friend class Element; +}; +IMPLEMENT_STANDARD_HANDLE(VUserDrawObj, AIS_InteractiveObject) +IMPLEMENT_STANDARD_RTTIEXT(VUserDrawObj, AIS_InteractiveObject) + +void VUserDrawObj::Compute(const Handle(PrsMgr_PresentationManager3d)& thePresentationManager, + const Handle(Prs3d_Presentation)& thePresentation, + const Standard_Integer theMode) +{ + thePresentation->Clear(); + + Handle(Graphic3d_Group) aGrp = Prs3d_Root::CurrentGroup(thePresentation); + aGrp->UserDraw(this, Standard_True, Standard_True); +} + +void VUserDrawObj::ComputeSelection (const Handle(SelectMgr_Selection)& theSelection, + const Standard_Integer theMode) +{ + Handle(SelectMgr_EntityOwner) anEntityOwner = new SelectMgr_EntityOwner(this); + Handle(TColgp_HArray1OfPnt) aPnts = new TColgp_HArray1OfPnt(1, 5); + aPnts->SetValue(1, gp_Pnt(myCoords[0], myCoords[1], myCoords[2])); + aPnts->SetValue(2, gp_Pnt(myCoords[3], myCoords[4], myCoords[2])); + aPnts->SetValue(3, gp_Pnt(myCoords[3], myCoords[4], myCoords[5])); + aPnts->SetValue(4, gp_Pnt(myCoords[0], myCoords[1], myCoords[5])); + aPnts->SetValue(5, gp_Pnt(myCoords[0], myCoords[1], myCoords[2])); + Handle(Select3D_SensitiveCurve) aSensitive = new Select3D_SensitiveCurve(anEntityOwner, aPnts); + theSelection->Add(aSensitive); +} + +void VUserDrawObj::GetBounds(CALL_DEF_BOUNDS* theBounds) +{ + if (theBounds) + { + theBounds->XMin = myCoords[0]; + theBounds->YMin = myCoords[1]; + theBounds->ZMin = myCoords[2]; + theBounds->XMax = myCoords[3]; + theBounds->YMax = myCoords[4]; + theBounds->ZMax = myCoords[5]; + } +} + +void VUserDrawObj::Render(const Handle(OpenGl_Workspace)& theWorkspace) const +{ + // To test linking against OpenGl_Workspace and all aspect classes + const OpenGl_AspectLine* aLA = theWorkspace->AspectLine(0); + const OpenGl_AspectFace* aFA = theWorkspace->AspectFace(0); + aFA->Context(); + const OpenGl_AspectMarker* aMA = theWorkspace->AspectMarker(0); + aMA->Type(); + const OpenGl_AspectText* aTA = theWorkspace->AspectText(0); + aTA->Font(); + TEL_COLOUR aColor = theWorkspace->NamedStatus & OPENGL_NS_HIGHLIGHT ? + *(theWorkspace->HighlightColor) : aLA->Color(); + + // To test OpenGl_Window + Handle(OpenGl_Context) aCtx = theWorkspace->GetGlContext(); + GLCONTEXT aGlContext = theWorkspace->GetGContext(); + + // To link against OpenGl_Context and extensions + GLuint aVboId = -1, aTexId = -1; + if (aCtx->arbVBO) + aCtx->arbVBO->glGenBuffersARB(1, &aVboId); + glGenTextures(1, &aTexId); + + // To link against OpenGl_ResourceCleaner, OpenGl_ResourceVBO, OpenGl_ResourceTexture + OpenGl_ResourceCleaner* aResCleaner = OpenGl_ResourceCleaner::GetInstance(); + if (aVboId != (GLuint)-1) + aResCleaner->AddResource(aGlContext, new OpenGl_ResourceVBO(aVboId)); + if (aTexId != (GLuint)-1) + aResCleaner->AddResource(aGlContext, new OpenGl_ResourceTexture(aTexId)); + + // Finally draw something to make sure UserDraw really works + glPushAttrib(GL_ENABLE_BIT); + glDisable(GL_LIGHTING); + glColor4fv(aColor.rgb); + glBegin(GL_LINE_LOOP); + glVertex3f(myCoords[0], myCoords[1], myCoords[2]); + glVertex3f(myCoords[3], myCoords[4], myCoords[2]); + glVertex3f(myCoords[3], myCoords[4], myCoords[5]); + glVertex3f(myCoords[0], myCoords[1], myCoords[5]); + glEnd(); + glPopAttrib(); +} + + + +OpenGl_Element* VUserDrawCallback(const CALL_DEF_USERDRAW * theUserDraw) +{ + Handle(VUserDrawObj) anIObj = (VUserDrawObj*)theUserDraw->Data; + if (anIObj.IsNull()) + { + std::cout << "VUserDrawCallback error: null object passed, the custom scene element will not be rendered" << std::endl; + } + + return new VUserDrawObj::Element(anIObj, theUserDraw->Bounds); +} + +static Standard_Integer VUserDraw (Draw_Interpretor& di, + Standard_Integer argc, + const char ** argv) +{ + Handle(AIS_InteractiveContext) aContext = ViewerTest::GetAISContext(); + if (aContext.IsNull()) + { + di << argv[0] << "Call 'vinit' before!\n"; + return 1; + } + + if (argc > 2) + { + di << argv[0] << "Wrong number of arguments, only the object name expected\n"; + return 1; + } + + TCollection_AsciiString aName (argv[1]); + VDisplayAISObject(aName, Handle(AIS_InteractiveObject)()); + + // register the custom element factory function + ::UserDrawCallback() = VUserDrawCallback; + + Handle(VUserDrawObj) anIObj = new VUserDrawObj(); + VDisplayAISObject(aName, anIObj); + + return 0; +} + +//======================================================================= +//function : OpenGlCommands +//purpose : +//======================================================================= + +void ViewerTest::OpenGlCommands(Draw_Interpretor& theCommands) +{ + const char* aGroup ="Commands for low-level TKOpenGl features"; + + theCommands.Add("vuserdraw", + "vuserdraw : name - simulates drawing with help of UserDraw", + __FILE__, VUserDraw, aGroup); +}