Embedding Ogre into a qt application on windows platform

1.8k views Asked by At

Embedding Ogre into a qt application Link:QtOgre

But it is mac and linux platform,I try to migrate to windows platform, but failed. My app run like this: enter image description here

enter code here
#ifndef OGREWIDGET_H
#define OGREWIDGET_H
#include "XVQCUGLLIB_Global.h"
#include <QGLWidget>
#include <Ogre/Ogre.h>


class XVQCUGLFXLIB_API OgreWidget : public QGLWidget
{
    //Q_OBJECT;

public:
    OgreWidget( QWidget *parent=0 );
    virtual ~OgreWidget();

protected:
     virtual void initializeGL();
    virtual void resizeGL( int, int );
    virtual void paintGL();

    void init();

    virtual Ogre::RenderSystem* chooseRenderer( Ogre::RenderSystemList* );

    Ogre::Root *mOgreRoot;
    Ogre::RenderWindow *mOgreWindow;
    Ogre::Camera *mCamera;
    Ogre::Viewport *mViewport;
    Ogre::SceneManager *mSceneMgr;
};
#endif // OGREWIDGET_H

///////////////////////////////////////

  #include "XVQCUGLLIB_Internal.h"

 #include "OgreWidget.h"
 #define THIS OgreWidget

 OgreWidget::OgreWidget(QWidget *parent)
     : QGLWidget( parent ),
     mOgreWindow(NULL)
 {
     init();
 }

 OgreWidget::~OgreWidget()
 {
     mOgreRoot->shutdown();
     delete mOgreRoot;
     destroy();
 }

 /**
  * @brief init the object
  * @author kito berg-taylor
  */
      void THIS::init()
      {
   // create the main ogre object
   mOgreRoot = new Ogre::Root;

   mOgreRoot->loadPlugin("RenderSystem_GL_d");
   Ogre::String rName("OpenGL Rendering Subsystem");
   Ogre::RenderSystemList rList = mOgreRoot->getAvailableRenderers();
   Ogre::RenderSystemList::iterator it = rList.begin();
   Ogre::RenderSystem *rSys = 0;
   while(it != rList.end())
   {
       rSys = * (it++);
       Ogre::String strx=rSys->getName();
       if(strx == rName)
       {
           mOgreRoot->setRenderSystem(rSys);
           break;
       }
   }
   mOgreRoot->initialise(false); // don't create a window
 }

 /**
  * @brief setup the rendering context
  * @author Kito Berg-Taylor
  */
 void THIS::initializeGL()
 {

   //== Creating and Acquiring Ogre Window ==//

   // Get the parameters of the window QT created

   Ogre::String winHandle=Ogre::StringConverter::toString((size_t)(HWND)winId());

   Ogre::NameValuePairList params;
   params["parentWindowHandle"] = winHandle;

   mOgreWindow = mOgreRoot->createRenderWindow( "QOgreWidget_RenderWindow",
                            this->width(),
                            this->height(),
                            false,
                            &params );

   //mOgreWindow->setActive(true);
   //WId ogreWinId = 0x0;
   //mOgreWindow->getCustomAttribute( "WINDOW", &ogreWinId );

   //assert( ogreWinId );

   //this->create( ogreWinId );
   setAttribute( Qt::WA_PaintOnScreen, true );
   setAttribute( Qt::WA_NoBackground );

   //== Ogre Initialization ==//
   Ogre::SceneType scene_manager_type = Ogre::ST_EXTERIOR_CLOSE;

   mSceneMgr = mOgreRoot->createSceneManager( scene_manager_type );
   mSceneMgr->setAmbientLight( Ogre::ColourValue(1,1,1) );

   mCamera = mSceneMgr->createCamera( "QOgreWidget_Cam" );
   mCamera->setPosition( Ogre::Vector3(0,1,0) );
   mCamera->lookAt( Ogre::Vector3(0,0,0) );
   mCamera->setNearClipDistance( 1.0 );

   Ogre::Viewport *mViewport = mOgreWindow->addViewport( mCamera );
   mViewport->setBackgroundColour( Ogre::ColourValue( 1.0,1.0,1.0 ) );
 }

 /**
  * @brief render a frame
  * @author Kito Berg-Taylor
  */
 void THIS::paintGL()
 {
     //QGLWidget::paintGL();
   assert( mOgreWindow );


   mOgreRoot->_fireFrameStarted();

  mOgreWindow->update();

  // mOgreRoot->renderOneFrame();

   mOgreRoot->_fireFrameEnded();
 }

 /**
  * @brief resize the GL window
  * @author Kito Berg-Taylor
  */
 void THIS::resizeGL( int width, int height )
 {
//QGLWidget::resizeGL(width,height);
   assert( mOgreWindow );
   mOgreWindow->windowMovedOrResized();
   mCamera->setAspectRatio(Ogre::Real(width) / Ogre::Real(height));
 }

 /**
  * @brief choose the right renderer
  * @author Kito Berg-Taylor
  */
 Ogre::RenderSystem* THIS::chooseRenderer( Ogre::RenderSystemList *renderers )
 {
   // It would probably be wise to do something more friendly 
   // that just use the first available renderer
   return *renderers->begin();
 }
2

There are 2 answers

2
Martin Beckett On

Are you calling initializeGL() anywhere?

IIRC you have to explicitly call it - it doesn't happen automatically

0
Jay On

Over ride the QWidget::resizeEvent() method. In that method you receive notifications of changes in the size of the window. Resize the ogre window.