From 22cc9fe996441293bf2efc4ddb91eac9e9710ba7 Mon Sep 17 00:00:00 2001 From: bugmaster Date: Tue, 9 Oct 2012 16:29:43 +0400 Subject: [PATCH] 0021189: Clean up KAS:dev:ros and Products VoxelDemo is modified to be compliant with OCC 6.5.4 Update of environment files and VS projects. --- .../{VoxelDemo.sln => VoxelDemo-vc9.sln} | 4 ++-- samples/qt/VoxelDemo/VoxelDemo.vcproj | 19 ++++++++-------- samples/qt/VoxelDemo/inc/Viewer.h | 4 ++++ .../qt/VoxelDemo/inc/VoxelClient_VisDrawer.h | 4 +++- samples/qt/VoxelDemo/msvc.bat | 8 +++---- samples/qt/VoxelDemo/run.bat | 22 +++++++++++++++++++ samples/qt/VoxelDemo/src/Application.cpp | 2 +- samples/qt/VoxelDemo/src/Viewer.cpp | 8 ++++++- .../VoxelDemo/src/VoxelClient_VisDrawer.cxx | 13 ++++++----- 9 files changed, 59 insertions(+), 25 deletions(-) rename samples/qt/VoxelDemo/{VoxelDemo.sln => VoxelDemo-vc9.sln} (90%) create mode 100644 samples/qt/VoxelDemo/run.bat diff --git a/samples/qt/VoxelDemo/VoxelDemo.sln b/samples/qt/VoxelDemo/VoxelDemo-vc9.sln similarity index 90% rename from samples/qt/VoxelDemo/VoxelDemo.sln rename to samples/qt/VoxelDemo/VoxelDemo-vc9.sln index 1e5a741470..fabee776e4 100644 --- a/samples/qt/VoxelDemo/VoxelDemo.sln +++ b/samples/qt/VoxelDemo/VoxelDemo-vc9.sln @@ -1,6 +1,6 @@  -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "VoxelDemo", "VoxelDemo.vcproj", "{EF9DFAE9-E10E-42D4-87D1-52431728AFDF}" EndProject Global diff --git a/samples/qt/VoxelDemo/VoxelDemo.vcproj b/samples/qt/VoxelDemo/VoxelDemo.vcproj index 538b89c1e2..1745563d36 100644 --- a/samples/qt/VoxelDemo/VoxelDemo.vcproj +++ b/samples/qt/VoxelDemo/VoxelDemo.vcproj @@ -1,11 +1,12 @@ - @@ -144,6 +144,8 @@ SubSystem="1" OptimizeReferences="2" EnableCOMDATFolding="2" + RandomizedBaseAddress="1" + DataExecutionPrevention="0" TargetMachine="1" /> - @@ -218,7 +217,7 @@ > @@ -227,7 +226,7 @@ > diff --git a/samples/qt/VoxelDemo/inc/Viewer.h b/samples/qt/VoxelDemo/inc/Viewer.h index ee57227eb3..41c8f2dff5 100644 --- a/samples/qt/VoxelDemo/inc/Viewer.h +++ b/samples/qt/VoxelDemo/inc/Viewer.h @@ -8,7 +8,9 @@ #include #include +#include #include +#include #include #include @@ -25,6 +27,7 @@ public: Handle(AIS_InteractiveContext) getIC() const { return myIC; } Handle(V3d_View) getView() const { return myView; } + Handle(OpenGl_GraphicDriver) getGraphicDriver() const { return myGraphicDriver; } Voxel_Selector& getSelector() { return mySelector; } void setPrs(const Handle(Voxel_Prs)& prs) { myPrs = prs; } virtual QPaintEngine* paintEngine() const; @@ -47,6 +50,7 @@ protected: private: Handle(AIS_InteractiveContext) myIC; Handle(V3d_View) myView; + Handle(OpenGl_GraphicDriver) myGraphicDriver; bool myRotate; bool myZoom; diff --git a/samples/qt/VoxelDemo/inc/VoxelClient_VisDrawer.h b/samples/qt/VoxelDemo/inc/VoxelClient_VisDrawer.h index cb89ac2bfd..a36cca95ea 100644 --- a/samples/qt/VoxelDemo/inc/VoxelClient_VisDrawer.h +++ b/samples/qt/VoxelDemo/inc/VoxelClient_VisDrawer.h @@ -24,6 +24,8 @@ #include "Voxel_VisData.h" #include +class Handle(OpenGl_GraphicDriver); + class VoxelClient_VisDrawer { public: @@ -32,7 +34,7 @@ public: public: - Standard_EXPORT static void Init(); + Standard_EXPORT static void Init (Handle(OpenGl_GraphicDriver)& theDriver); Standard_EXPORT VoxelClient_VisDrawer(Voxel_VisData* theData); Standard_EXPORT virtual ~VoxelClient_VisDrawer(); diff --git a/samples/qt/VoxelDemo/msvc.bat b/samples/qt/VoxelDemo/msvc.bat index fc4216854b..a5b3b6c60d 100644 --- a/samples/qt/VoxelDemo/msvc.bat +++ b/samples/qt/VoxelDemo/msvc.bat @@ -1,6 +1,4 @@ -set CASROOT=D:\OCC653\ros -set QTDIR=D:\qt\4.8.2 -set PATH=%QTDIR%\bin;%PATH% +call ../../../env.bat %1 %2 %3 -call %CASROOT%/env.bat %1 %2 %3 -call %CASROOT%/msvc.bat %1 %2 %3 VoxelDemo.sln +if not ["%CASDEB%"] == [""] call ../../../msvc.bat %VCVER% win%ARCH% %CASDEB% VoxelDemo-%VCVER%.sln +if ["%CASDEB%"] == [""] call ../../../msvc.bat %VCVER% win%ARCH% "" VoxelDemo-%VCVER%.sln \ No newline at end of file diff --git a/samples/qt/VoxelDemo/run.bat b/samples/qt/VoxelDemo/run.bat new file mode 100644 index 0000000000..33b0b79c1c --- /dev/null +++ b/samples/qt/VoxelDemo/run.bat @@ -0,0 +1,22 @@ +call ../../../env.bat %1 %2 %3 + +IF not "%CASDEB%" EQU "" ( +SET BIN_DIR=Debug +) ELSE ( +SET BIN_DIR=Release +) + +if not exist "%BIN_DIR%\VoxelDemo.exe" goto ERR_EXE + +echo Starting VoxelDemo ..... +start /D "%BIN_DIR%" VoxelDemo.exe + +goto END + +:ERR_EXE +echo Executable %BIN_DIR%\VoxelDemo.exe not found." +echo Probably you didn't compile the application. +pause +goto END + +:END \ No newline at end of file diff --git a/samples/qt/VoxelDemo/src/Application.cpp b/samples/qt/VoxelDemo/src/Application.cpp index c4379b042f..0a1ae077bb 100644 --- a/samples/qt/VoxelDemo/src/Application.cpp +++ b/samples/qt/VoxelDemo/src/Application.cpp @@ -319,7 +319,7 @@ Application::Application() myDisplayedZMin = -DBL_MAX; myDisplayedZMax = DBL_MAX; - VoxelClient_VisDrawer::Init(); + VoxelClient_VisDrawer::Init(myViewer->getGraphicDriver()); resize( 450, 600 ); } diff --git a/samples/qt/VoxelDemo/src/Viewer.cpp b/samples/qt/VoxelDemo/src/Viewer.cpp index d0304bfb54..9008c07817 100644 --- a/samples/qt/VoxelDemo/src/Viewer.cpp +++ b/samples/qt/VoxelDemo/src/Viewer.cpp @@ -19,9 +19,15 @@ static Handle(Graphic3d_WNTGraphicDevice) device; Viewer::Viewer(QWidget* parent):QWidget(parent) { if(device.IsNull()) + { device = new Graphic3d_WNTGraphicDevice(); + if (!device->GraphicDriver().IsNull()) + { + myGraphicDriver = Handle(OpenGl_GraphicDriver)::DownCast(device->GraphicDriver()); + } + } - Handle(V3d_Viewer) aViewer = new V3d_Viewer(device, TCollection_ExtendedString("Visu3D").ToExtString(), "", + Handle(V3d_Viewer) aViewer = new V3d_Viewer(device, TCollection_ExtendedString("Visu3D").ToExtString(), "", 1000, V3d_XposYnegZpos, Quantity_NOC_GRAY30, V3d_ZBUFFER, V3d_GOURAUD, V3d_WAIT, true, true, V3d_TEX_NONE); diff --git a/samples/qt/VoxelDemo/src/VoxelClient_VisDrawer.cxx b/samples/qt/VoxelDemo/src/VoxelClient_VisDrawer.cxx index e75fbc7228..88497ec46d 100644 --- a/samples/qt/VoxelDemo/src/VoxelClient_VisDrawer.cxx +++ b/samples/qt/VoxelDemo/src/VoxelClient_VisDrawer.cxx @@ -27,7 +27,7 @@ #include #include -#include +#include #include #include @@ -46,6 +46,11 @@ public: void Render (const Handle(OpenGl_Workspace) &theWorkspace) const; + virtual void Release (const Handle(OpenGl_Context)& theContext) + { + // + } + private: VoxelClient_VisDrawer* myHandler; @@ -126,16 +131,14 @@ static OpenGl_Element* VisDrawerCallBack (const Graphic3d_CUserDraw* theUserDraw } /**************************************************************************/ -void VoxelClient_VisDrawer::Init() +void VoxelClient_VisDrawer::Init (Handle(OpenGl_GraphicDriver)& theDriver) { static Standard_Boolean isInitializeded(Standard_False); if (!isInitializeded) { isInitializeded = Standard_True; - - OpenGl_UserDrawCallback& aCallback = UserDrawCallback (); - aCallback = VisDrawerCallBack; + theDriver->UserDrawCallback() = VisDrawerCallBack; } }