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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>libQGLViewer select example</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="../qglviewer.css" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="../images/qglviewer.ico" type="image/x-icon" />
<link rel="icon" href="../images/qglviewer.icon.png" type="image/png" />
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-23223012-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="banner">
<a class="qindex" href="../index.html">Home</a>
<a class="qindex" href="../download.html">Download</a>
<a class="qindex highlight" href="index.html">Gallery</a>
<a class="qindex" href="../refManual/hierarchy.html">Documentation</a>
<a class="qindex" href="../developer.html">Developer</a>
</div>
<h1>The select example</h1>
<center>
<img src="../images/select.jpg" width="330" height="228" alt="select"/>
</center>
<p>
Selection of scene objects using <code>select()</code> and an GL_SELECT render mode.
</p>
<p>
Use the <code>select()</code> callback function to implement your object selection function. This
examples is based on a generic GL_SELECT implementation that can easily be cut and pasted in your
applications.
</p>
<p>
Analytic intersection computations are also possible once the screen coordinates have be converted
to a half line using <code>convertClickToLine()</code>. Make a selection and then move the camera
to see a representation of the intersection line.
</p>
<h2>select.h</h2>
<pre>
#include <QGLViewer/qglviewer.h>
class Viewer : public QGLViewer {
protected:
virtual void draw();
virtual void drawWithNames();
virtual void postSelection(const QPoint &point);
virtual void init();
virtual QString helpString() const;
private:
qglviewer::Vec orig, dir, selectedPoint;
};
</pre>
<h2>select.cpp</h2>
<pre>
#include "select.h"
#include <math.h>
#include <qmessagebox.h>
using namespace std;
static void drawSpiral(const bool specialColor = false) {
const float nbSteps = 100.0;
glBegin(GL_QUAD_STRIP);
for (float i = 0; i < nbSteps; ++i) {
float ratio = i / nbSteps;
float angle = 21.0 * ratio;
float c = cos(angle);
float s = sin(angle);
float r1 = 0.5 - 0.3 * ratio;
float r2 = 0.3 - 0.3 * ratio;
float alt = ratio - 0.5;
const float nor = .5;
const float up = sqrt(1.0 - nor * nor);
if (specialColor)
glColor3f(1.0 - ratio, 0.8f, ratio / 2.0);
else
glColor3f(1.0 - ratio, 0.2f, ratio);
glNormal3f(nor * c, nor * s, up);
glVertex3f(r2 * c, r2 * s, alt + 0.05f);
glVertex3f(r1 * c, r1 * s, alt);
}
glEnd();
}
void Viewer::drawWithNames() {
// Draw spirals, pushing a name (id) for each of them
const int nb = 10;
for (int i = 0; i < nb; ++i) {
glPushMatrix();
glTranslatef(cos(2.0 * i * M_PI / nb), sin(2.0 * i * M_PI / nb), 0.);
glPushName(i);
drawSpiral();
glPopName();
glPopMatrix();
}
}
void Viewer::postSelection(const QPoint &point) {
// Compute orig and dir, used to draw a representation of the intersecting
// line
camera()->convertClickToLine(point, orig, dir);
// Find the selectedPoint coordinates, using camera()->pointUnderPixel().
bool found;
selectedPoint = camera()->pointUnderPixel(point, found);
selectedPoint -= 0.01f * dir; // Small offset to make point clearly visible.
// Note that "found" is different from (selectedObjectId()>=0) because of the
// size of the select region.
if (selectedName() == -1)
QMessageBox::information(this, "No selection",
"No object selected under pixel " +
QString::number(point.x()) + "," +
QString::number(point.y()));
else
QMessageBox::information(
this, "Selection",
"Spiral number " + QString::number(selectedName()) +
" selected under pixel " + QString::number(point.x()) + "," +
QString::number(point.y()));
}
void Viewer::init() {
restoreStateFromFile();
glLineWidth(3.0);
glPointSize(10.0);
help();
}
void Viewer::draw() {
// Draw ten spirals
const int nb = 10;
for (int i = 0; i < nb; ++i) {
glPushMatrix();
glTranslatef(cos(2.0 * i * M_PI / nb), sin(2.0 * i * M_PI / nb), 0.0);
drawSpiral(i == selectedName());
glPopMatrix();
}
// Draw the intersection line
glBegin(GL_LINES);
glVertex3fv(orig);
glVertex3fv(orig + 100.0 * dir);
glEnd();
// Draw (approximated) intersection point on selected object
if (selectedName() >= 0) {
glColor3f(0.9f, 0.2f, 0.1f);
glBegin(GL_POINTS);
glVertex3fv(selectedPoint);
glEnd();
}
}
QString Viewer::helpString() const {
QString text("<h2>S e l e c t</h2>");
text += "Left click while pressing the <b>Shift</b> key to select an object "
"of the scene.<br><br>";
text += "A line is drawn between the selected point and the camera selection "
"position. ";
text += "using <i>convertClickToLine()</i>, a useful function for analytical "
"intersections.<br><br>";
text += "To add object selection in your viewer, all you need to do is to "
"define the <i>drawWithNames</i> function. ";
text += "It gives a name to each selectable object and selection is then "
"performed using the OpenGL <i>GL_SELECT</i> render mode.<br><br>";
text += "Feel free to cut and paste this implementation in your own "
"applications.";
return text;
}
</pre>
<h2>main.cpp</h2>
<pre>
#include "select.h"
#include <qapplication.h>
int main(int argc, char **argv) {
QApplication application(argc, argv);
Viewer viewer;
viewer.setWindowTitle("select");
viewer.show();
return application.exec();
}
</pre>
<p>
Back to the <a href="index.html">examples main page</a>.
</p>
</body>
</html>
|