Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Tous les espaces de nom  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

glwidget.cpp Example File
opengl/pbuffers/glwidget.cpp

 /****************************************************************************
 **
 ** Copyright (C) 2005-2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
 **
 ** This file is part of the documentation of the Qt Toolkit.
 **
 ** Licensees holding a valid Qt License Agreement may use this file in
 ** accordance with the rights, responsibilities and obligations
 ** contained therein.  Please consult your licensing agreement or
 ** contact qt-sales@nokia.com if any conditions of this licensing
 ** agreement are not clear to you.
 **
 ** Further information about Qt licensing is available at:
 ** http://trolltech.com/products/appdev/licensing.
 **
 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 **
 ****************************************************************************/

 #include "glwidget.h"
 #include <QtGui/QImage>

 #include <math.h>

 static GLint cubeArray[][3] = {
     {0, 0, 0}, {0, 1, 0}, {1, 1, 0}, {1, 0, 0},
     {0, 0, 1}, {1, 0, 1}, {1, 1, 1}, {0, 1, 1},
     {0, 0, 0}, {1, 0, 0}, {1, 0, 1}, {0, 0, 1},
     {0, 1, 0}, {0, 1, 1}, {1, 1, 1}, {1, 1, 0},
     {0, 1, 0}, {0, 0, 0}, {0, 0, 1}, {0, 1, 1},
     {1, 0, 0}, {1, 1, 0}, {1, 1, 1}, {1, 0, 1}
 };

 static GLint cubeTextureArray[][2] = {
     {0, 0}, {1, 0}, {1, 1}, {0, 1},
     {0, 0}, {0, 1}, {1, 1}, {1, 0},
     {0, 0}, {1, 0}, {1, 1}, {0, 1},
     {1, 0}, {0, 0}, {0, 1}, {1, 1},
     {0, 0}, {1, 0}, {1, 1}, {0, 1},
     {1, 0}, {0, 0}, {0, 1}, {1, 1}
 };

 static GLint faceArray[][2] = {
     {1, -1}, {1, 1}, {-1, 1}, {-1, -1}
 };

 static GLubyte colorArray[][4] = {
     {102, 176, 54, 255},
     {81, 141, 41, 255},
     {62, 108, 32, 255},
     {45, 79, 23, 255}
 };

 GLWidget::GLWidget(QWidget *parent)
   : QGLWidget(QGLFormat(QGL::SampleBuffers), parent)
 {
     // create the pbuffer
     pbuffer = new QGLPixelBuffer(QSize(512, 512), format(), this);
     timerId = startTimer(20);
     setWindowTitle(tr("OpenGL pbuffers"));
 }

 GLWidget::~GLWidget()
 {
     pbuffer->releaseFromDynamicTexture();
     glDeleteTextures(1, &dynamicTexture);
     glDeleteLists(pbufferList, 1);
     delete pbuffer;
 }

 void GLWidget::initializeGL()
 {
     glMatrixMode(GL_MODELVIEW);

     glEnable(GL_CULL_FACE);
     initCommon();
     initPbuffer();

     for (int i = 0; i < 3; ++i) {
         yOffs[i] = 0.0f;
         xInc[i] = 0.005f;
         rot[i] = 0.0f;
     }
     xOffs[0]= 0.0f;
     xOffs[1]= 0.5f;
     xOffs[2]= 1.0f;

     cubeTexture = bindTexture(QImage(":res/cubelogo.png"));
 }

 void GLWidget::resizeGL(int w, int h)
 {
     glViewport(0, 0, w, h);
     glMatrixMode(GL_PROJECTION);
     glLoadIdentity();
     float aspect = w/(float)(h ? h : 1);
     glFrustum(-aspect, aspect, -1, 1, 10, 100);
     glTranslatef(-0.5f, -0.5f, -0.5f);
     glTranslatef(0.0f, 0.0f, -15.0f);
 }

 void GLWidget::paintGL()
 {
     // draw a spinning cube into the pbuffer..
     pbuffer->makeCurrent();
     glBindTexture(GL_TEXTURE_2D, cubeTexture);
     glCallList(pbufferList);
     glFlush();

     // rendering directly to a texture is not supported on X11 and
     // some Windows implementations, unfortunately
     if (!hasDynamicTextureUpdate)
         pbuffer->updateDynamicTexture(dynamicTexture);

     // ..and use the pbuffer contents as a texture when rendering the
     // background and the bouncing cubes
     makeCurrent();
     glBindTexture(GL_TEXTURE_2D, dynamicTexture);
     glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);

     // draw the background
     glMatrixMode(GL_MODELVIEW);
     glPushMatrix();
     glLoadIdentity();
     glMatrixMode(GL_PROJECTION);
     glPushMatrix();
     glLoadIdentity();

     glVertexPointer(2, GL_INT, 0, faceArray);
     glTranslatef(-1.2f, -0.8f, 0.0f);
     glScalef(0.2f, 0.2f, 0.2f);
     for (int y = 0; y < 5; ++y) {
         for (int x = 0; x < 5; ++x) {
             glTranslatef(2.0f, 0, 0);
             glColor4f(0.8, 0.8, 0.8, 1.0);
             glDrawArrays(GL_QUADS, 0, 4);
         }
         glTranslatef(-10.0f, 2.0f, 0);
     }
     glVertexPointer(3, GL_INT, 0, cubeArray);

     glPopMatrix();
     glMatrixMode(GL_MODELVIEW);
     glPopMatrix();

     // draw the bouncing cubes
     drawCube(0, 0.0f, 1.5f, 2.5f, 1.5f);
     drawCube(1, 1.0f, 2.0f, 2.5f, 2.0f);
     drawCube(2, 2.0f, 3.5f, 2.5f, 2.5f);
 }

 void GLWidget::drawCube(int i, GLfloat z, GLfloat rotation, GLfloat jmp, GLfloat amp)
 {
     glMatrixMode(GL_MODELVIEW);
     glLoadIdentity();
     glTranslatef(xOffs[i], yOffs[i], z);
     glTranslatef(0.5f, 0.5f, 0.5f);
     GLfloat scale = 0.75 + i*(0.25f/2);
     glScalef(scale, scale, scale);
     glRotatef(rot[i], 1.0f, 1.0f, 1.0f);
     glTranslatef(-0.5f, -0.5f, -0.5f);

     glColor4f(1.0f, 1.0f, 1.0f, 0.8f);
     glDrawArrays(GL_QUADS, 0, 24);

     if (xOffs[i] > 1.0f || xOffs[i] < -1.0f) {
         xInc[i] = -xInc[i];
         xOffs[i] = xOffs[i] > 1.0f ? 1.0f : -1.0f;
     }
     xOffs[i] += xInc[i];
     yOffs[i] = qAbs(cos((-3.141592f * jmp) * xOffs[i]) * amp) - 1;
     rot[i] += rotation;
 }

 void GLWidget::initCommon()
 {
     glEnableClientState(GL_VERTEX_ARRAY);
     glEnableClientState(GL_TEXTURE_COORD_ARRAY);
     glVertexPointer(3, GL_INT, 0, cubeArray);
     glTexCoordPointer(2, GL_INT, 0, cubeTextureArray);
     glColorPointer(4, GL_UNSIGNED_BYTE, 0, colorArray);

     glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
     glEnable(GL_BLEND);
     glEnable(GL_TEXTURE_2D);
     glEnable(GL_DEPTH_TEST);

     glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
 }

 void GLWidget::initPbuffer()
 {
     // set up the pbuffer context
     pbuffer->makeCurrent();
     initCommon();

     glViewport(0, 0, pbuffer->size().width(), pbuffer->size().height());
     glMatrixMode(GL_PROJECTION);
     glLoadIdentity();
     glOrtho(-1, 1, -1, 1, -99, 99);
     glTranslatef(-0.5f, -0.5f, 0.0f);
     glMatrixMode(GL_MODELVIEW);
     glLoadIdentity();

     pbufferList = glGenLists(1);
     glNewList(pbufferList, GL_COMPILE);
     {
         glClear(GL_DEPTH_BUFFER_BIT | GL_COLOR_BUFFER_BIT);

         // draw cube background
         glPushMatrix();
         glLoadIdentity();
         glTranslatef(0.5f, 0.5f, -2.0f);
         glDisable(GL_TEXTURE_2D);
         glEnableClientState(GL_COLOR_ARRAY);
         glVertexPointer(2, GL_INT, 0, faceArray);
         glDrawArrays(GL_QUADS, 0, 4);
         glVertexPointer(3, GL_INT, 0, cubeArray);
         glDisableClientState(GL_COLOR_ARRAY);
         glEnable(GL_TEXTURE_2D);
         glPopMatrix();

         // draw cube
         glTranslatef(0.5f, 0.5f, 0.5f);
         glRotatef(3.0f, 1.0f, 1.0f, 1.0f);
         glTranslatef(-0.5f, -0.5f, -0.5f);
         glColor4f(0.9f, 0.9f, 0.9f, 1.0f);
         glDrawArrays(GL_QUADS, 0, 24);
     }
     glEndList();
     // generate a texture that has the same size/format as the pbuffer
     dynamicTexture = pbuffer->generateDynamicTexture();

     // bind the dynamic texture to the pbuffer - this is a no-op under X11
     hasDynamicTextureUpdate = pbuffer->bindToDynamicTexture(dynamicTexture);
     makeCurrent();
 }

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 44
  2. Microsoft ouvre aux autres compilateurs C++ AMP, la spécification pour la conception d'applications parallèles C++ utilisant le GPU 22
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. RIM : « 13 % des développeurs ont gagné plus de 100 000 $ sur l'AppWord », Qt et open-source au menu du BlackBerry DevCon Europe 0
  5. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  6. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  7. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
Page suivante

Le blog Digia au hasard

Logo

Déploiement d'applications Qt Commercial sur les tablettes Windows 8

Le blog Digia est l'endroit privilégié pour la communication sur l'édition commerciale de Qt, où des réponses publiques sont apportées aux questions les plus posées au support. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.4
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web