1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
/****************************************************************************
Copyright (C) 2002-2014 Gilles Debunne. All rights reserved.
This file is part of the QGLViewer library version 2.6.3.
http://www.libqglviewer.com - contact@libqglviewer.com
This file may be used under the terms of the GNU General Public License
versions 2.0 or 3.0 as published by the Free Software Foundation and
appearing in the LICENSE file included in the packaging of this file.
In addition, as a special exception, Gilles Debunne gives you certain
additional rights, described in the file GPL_EXCEPTION in this package.
libQGLViewer uses dual licensing. Commercial/proprietary software must
purchase a libQGLViewer Commercial License.
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 "luxo.h"
#include <math.h>
#include <QGLViewer/manipulatedCameraFrame.h>
using namespace qglviewer;
using namespace std;
////////////////////////////////// V i e w e r ////////////////////////////////////////
QString Viewer::helpString() const
{
QString text("<h2>L u x o ©</h2>");
text += "This example illustrates several functionnalities of QGLViewer, ";
text += "showing how easy it is to create a moderately complex application.<br><br>";
text += "The famous luxo lamp (©Pixar) can interactively be manipulated ";
text += "with the mouse. <b>Shift</b> left click on an a part of the lamp to select it, ";
text += "and then move it with the mouse. Press the <b>Alt</b> key or select the background ";
text += "to move the camera instead.<br><br>";
text += "A simpler object selection example is given in the <i>select</i> example. ";
text += "A simpler frame displacement example is available in <i>manipulatedFrame</i> and ";
text += "a simpler constrained frame example is illustrated in <i>constrainedFrame</i>. ";
text += "See <i>multiSelect</i> for a multi-object selection example.<br><br>";
text += "Feel free to use this code as the starting point of a multiple frame manipulation application.";
return text;
}
void Viewer::initSpotLight()
{
glMatrixMode(GL_MODELVIEW);
glEnable(GL_LIGHT1);
glLoadIdentity();
// Light default parameters
GLfloat spot_dir[3] = {0.0, 0.0, 1.0};
GLfloat light_ambient[4] = {0.5, 0.5, 0.5, 1.0};
GLfloat light_specular[4] = {1.0, 1.0, 1.0, 1.0};
GLfloat light_diffuse[4] = {3.0, 3.0, 1.0, 1.0};
glLightfv(GL_LIGHT1, GL_SPOT_DIRECTION, spot_dir);
glLightf( GL_LIGHT1, GL_SPOT_EXPONENT, 3.0);
glLightf( GL_LIGHT1, GL_SPOT_CUTOFF, 50.0);
glLightf( GL_LIGHT1, GL_CONSTANT_ATTENUATION, 0.5);
glLightf( GL_LIGHT1, GL_LINEAR_ATTENUATION, 1.0);
glLightf( GL_LIGHT1, GL_QUADRATIC_ATTENUATION, 1.5);
glLightfv(GL_LIGHT1, GL_AMBIENT, light_ambient);
glLightfv(GL_LIGHT1, GL_SPECULAR, light_specular);
glLightfv(GL_LIGHT1, GL_DIFFUSE, light_diffuse);
}
void Viewer::init()
{
restoreStateFromFile();
// Make camera the default manipulated frame.
setManipulatedFrame( camera()->frame() );
setMouseBinding(Qt::AltModifier, Qt::LeftButton, QGLViewer::CAMERA, QGLViewer::ROTATE);
setMouseBinding(Qt::AltModifier, Qt::RightButton, QGLViewer::CAMERA, QGLViewer::TRANSLATE);
setMouseBinding(Qt::AltModifier, Qt::MidButton, QGLViewer::CAMERA, QGLViewer::ZOOM);
setWheelBinding(Qt::AltModifier, QGLViewer::CAMERA, QGLViewer::ZOOM);
setMouseBinding(Qt::NoModifier, Qt::LeftButton, QGLViewer::FRAME, QGLViewer::ROTATE);
setMouseBinding(Qt::NoModifier, Qt::RightButton, QGLViewer::FRAME, QGLViewer::TRANSLATE);
setMouseBinding(Qt::NoModifier, Qt::MidButton, QGLViewer::FRAME, QGLViewer::ZOOM);
setWheelBinding(Qt::NoModifier, QGLViewer::FRAME, QGLViewer::ZOOM);
initSpotLight();
help();
}
void Viewer::draw()
{
luxo.draw();
// Draw the ground
glColor3f(0.4f, 0.4f, 0.4f);
const float nbPatches = 100;
glNormal3f(0.0,0.0,1.0);
for (int j=0; j<nbPatches; ++j)
{
glBegin(GL_QUAD_STRIP);
for (int i=0; i<=nbPatches; ++i)
{
glVertex2f((2*i/nbPatches-1.0), (2*j/nbPatches-1.0));
glVertex2f((2*i/nbPatches-1.0), (2*(j+1)/nbPatches-1.0));
}
glEnd();
}
}
void Viewer::drawWithNames()
{
// Render scene with objects ids
luxo.draw(true);
}
void Viewer::postSelection(const QPoint&)
{
if (selectedName() == -1)
{
// Camera will be the default frame is no object is selected.
setManipulatedFrame( camera()->frame() );
luxo.setSelectedFrameNumber(4); // dummy value meaning camera
}
else
{
setManipulatedFrame(luxo.frame(selectedName()));
luxo.setSelectedFrameNumber(selectedName());
}
}
////////////////////////////////// L u x o ////////////////////////////////////////
Luxo::Luxo()
{
for (unsigned short i=0; i<4; ++i)
{
frame_[i] = new ManipulatedFrame();
// Creates a hierarchy of frames.
if (i>0)
frame(i)->setReferenceFrame(frame(i-1));
}
// Initialize frames
frame(1)->setTranslation(Vec(0.0, 0.0, 0.08f)); // Base height
frame(2)->setTranslation(Vec(0.0, 0.0, 0.5f)); // Arm length
frame(3)->setTranslation(Vec(0.0, 0.0, 0.5f)); // Arm length
frame(1)->setRotation(Quaternion(Vec(1.0,0.0,0.0), 0.6));
frame(2)->setRotation(Quaternion(Vec(1.0,0.0,0.0), -2.0));
frame(3)->setRotation(Quaternion(Vec(1.0,-0.3f,0.0), -1.7));
// Set frame constraints
WorldConstraint* baseConstraint = new WorldConstraint();
baseConstraint->setTranslationConstraint(AxisPlaneConstraint::PLANE, Vec(0.0,0.0,1.0));
baseConstraint->setRotationConstraint(AxisPlaneConstraint::AXIS, Vec(0.0,0.0,1.0));
frame(0)->setConstraint(baseConstraint);
LocalConstraint* XAxis = new LocalConstraint();
XAxis->setTranslationConstraint(AxisPlaneConstraint::FORBIDDEN, Vec(0.0,0.0,0.0));
XAxis->setRotationConstraint (AxisPlaneConstraint::AXIS, Vec(1.0,0.0,0.0));
frame(1)->setConstraint(XAxis);
frame(2)->setConstraint(XAxis);
LocalConstraint* headConstraint = new LocalConstraint();
headConstraint->setTranslationConstraint(AxisPlaneConstraint::FORBIDDEN, Vec(0.0,0.0,0.0));
frame(3)->setConstraint(headConstraint);
// Means camera is selected.
selected = 4;
}
void Luxo::draw(bool names)
{
// Luxo's local frame
glPushMatrix();
glMultMatrixd(frame(0)->matrix());
if (names) glPushName(0);
setColor(0);
drawBase();
if (names) glPopName();
if (names) glPushName(1);
glMultMatrixd(frame(1)->matrix());
setColor(1);
drawCylinder();
drawArm();
if (names) glPopName();
if (names) glPushName(2);
glMultMatrixd(frame(2)->matrix());
setColor(2);
drawCylinder();
drawArm();
if (names) glPopName();
if (names) glPushName(3);
glMultMatrixd(frame(3)->matrix());
setColor(3);
drawHead();
if (names) glPopName();
// Add light
const GLfloat pos[4] = {0.0, 0.0, 0.0, 1.0};
glLightfv(GL_LIGHT1, GL_POSITION, pos);
const GLfloat spot_dir[3] = {0.0, 0.0, 1.0};
glLightfv(GL_LIGHT1, GL_SPOT_DIRECTION, spot_dir);
glPopMatrix();
}
void Luxo::drawBase()
{
drawCone(0.0, 0.03f, 0.15f, 0.15f, 30);
drawCone(0.03f, 0.05f, 0.15f, 0.13f, 30);
drawCone(0.05f, 0.07f, 0.13f, 0.01f, 30);
drawCone(0.07f, 0.09f, 0.01f, 0.01f, 10);
}
void Luxo::drawArm()
{
glTranslatef(0.02f, 0.0, 0.0);
drawCone(0.0, 0.5f, 0.01f, 0.01f, 10);
glTranslatef(-0.04f, 0.0, 0.0);
drawCone(0.0, 0.5f, 0.01f, 0.01f, 10);
glTranslatef(0.02f, 0.0, 0.0);
}
void Luxo::drawHead()
{
drawCone(-0.02f, 0.06f, 0.04f, 0.04f, 30);
drawCone(0.06f, 0.15f, 0.04f, 0.17f, 30);
drawCone(0.15f, 0.17f, 0.17f, 0.17f, 30);
}
void Luxo::drawCylinder()
{
glPushMatrix();
glRotatef(90, 0.0, 1.0, 0.0);
drawCone(-0.05f, 0.05f, 0.02f, 0.02f, 20);
glPopMatrix();
}
void Luxo::setColor(unsigned short nb)
{
if (nb == selected)
glColor3f(0.9f, 0.9f, 0.0);
else
glColor3f(0.9f, 0.9f, 0.9f);
}
// Draws a truncated cone aligned with the Z axis.
void Luxo::drawCone(float zMin, float zMax, float r1, float r2, int nbSub)
{
static GLUquadric* quadric = gluNewQuadric();
glTranslatef(0.0, 0.0, zMin);
gluCylinder(quadric, r1, r2, zMax-zMin, nbSub, 1);
glTranslatef(0.0, 0.0, -zMin);
}
|