Sophie

Sophie

distrib > Mandriva > current > i586 > media > main-updates > by-pkgid > 8e6051afcdb111a0317a58fb64c2abf5 > files > 848

qt4-doc-4.6.3-0.2mdv2010.2.i586.rpm

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- collidingmice-example.qdoc -->
<head>
  <title>Qt 4.6: Colliding Mice Example</title>
  <link href="classic.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left" valign="top" width="32"><a href="http://qt.nokia.com/"><img src="images/qt-logo.png" align="left" border="0" /></a></td>
<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">All&nbsp;Functions</font></a>&nbsp;&middot; <a href="overviews.html"><font color="#004faf">Overviews</font></a></td></tr></table><h1 class="title">Colliding Mice Example<br /><span class="subtitle"></span>
</h1>
<p>Files:</p>
<ul>
<li><a href="graphicsview-collidingmice-mouse-cpp.html">graphicsview/collidingmice/mouse.cpp</a></li>
<li><a href="graphicsview-collidingmice-mouse-h.html">graphicsview/collidingmice/mouse.h</a></li>
<li><a href="graphicsview-collidingmice-main-cpp.html">graphicsview/collidingmice/main.cpp</a></li>
<li><a href="graphicsview-collidingmice-collidingmice-pro.html">graphicsview/collidingmice/collidingmice.pro</a></li>
<li><a href="graphicsview-collidingmice-mice-qrc.html">graphicsview/collidingmice/mice.qrc</a></li>
</ul>
<p>The Colliding Mice example shows how to use the Graphics View framework to implement animated items and detect collision between items.</p>
<p align="center"><img src="images/collidingmice-example.png" /></p><p>Graphics View provides the <a href="qgraphicsscene.html">QGraphicsScene</a> class for managing and interacting with a large number of custom-made 2D graphical items derived from the <a href="qgraphicsitem.html">QGraphicsItem</a> class, and a <a href="qgraphicsview.html">QGraphicsView</a> widget for visualizing the items, with support for zooming and rotation.</p>
<p>The example consists of an item class and a main function: the <tt>Mouse</tt> class represents the individual mice extending <a href="qgraphicsitem.html">QGraphicsItem</a>, and the <tt>main()</tt> function provides the main application window.</p>
<p>We will first review the <tt>Mouse</tt> class to see how to animate items and detect item collision, and then we will review the <tt>main()</tt> function to see how to put the items into a scene and how to implement the corresponding view.</p>
<a name="mouse-class-definition"></a>
<h2>Mouse Class Definition</h2>
<p>The <tt>mouse</tt> class inherits from <a href="qgraphicsitem.html">QGraphicsItem</a>. The <a href="qgraphicsitem.html">QGraphicsItem</a> class is the base class for all graphical items in the Graphics View framework, and provides a light-weight foundation for writing your own custom items.</p>
<pre> class Mouse : public QGraphicsItem
 {
 public:
     Mouse();

     QRectF boundingRect() const;
     QPainterPath shape() const;
     void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
                QWidget *widget);

 protected:
     void advance(int step);

 private:
     qreal angle;
     qreal speed;
     qreal mouseEyeDirection;
     QColor color;
 };</pre>
<p>When writing a custom graphics item, you must implement <a href="qgraphicsitem.html">QGraphicsItem</a>'s two pure virtual public functions: <a href="qgraphicsitem.html#boundingRect">boundingRect()</a>, which returns an estimate of the area painted by the item, and <a href="qgraphicsitem.html#paint">paint()</a>, which implements the actual painting. In addition, we reimplement the <a href="qgraphicsitem.html#shape">shape()</a> and <a href="qgraphicsitem.html#advance">advance()</a>. We reimplement <a href="qgraphicsitem.html#shape">shape()</a> to return an accurate shape of our mouse item; the default implementation simply returns the item's bounding rectangle. We reimplement <a href="qgraphicsitem.html#advance">advance()</a> to handle the animation so it all happens on one update.</p>
<a name="mouse-class-definition"></a>
<h2>Mouse Class Definition</h2>
<p>When constructing a mouse item, we first ensure that all the item's private variables are properly initialized:</p>
<pre> Mouse::Mouse()
     : angle(0), speed(0), mouseEyeDirection(0),
       color(qrand() % 256, qrand() % 256, qrand() % 256)
 {
     setRotation(qrand() % (360 * 16));
 }</pre>
<p>To calculate the various components of the mouse's color, we use the global <a href="qtglobal.html#qrand">qrand</a>() function which is a thread-safe version of the standard C++ rand() function.</p>
<p>Then we call the <a href="qgraphicsitem.html#setRotation">setRotation()</a> function inherited from <a href="qgraphicsitem.html">QGraphicsItem</a>. Items live in their own local coordinate system. Their coordinates are usually centered around (0, 0), and this is also the center for all transformations. By calling the item's <a href="qgraphicsitem.html#setRotation">setRotation()</a> function we alter the direction in which the mouse will start moving.</p>
<p>When the <a href="qgraphicsscene.html">QGraphicsScene</a> decides to advance the scene a frame it will call <a href="qgraphicsitem.html#advance">QGraphicsItem::advance</a>() on each of the items. This enables us to animate our mouse using our reimplementation of the advance() function.</p>
<pre> void Mouse::advance(int step)
 {
     if (!step)
         return;
     QLineF lineToCenter(QPointF(0, 0), mapFromScene(0, 0));
     if (lineToCenter.length() &gt; 150) {
         qreal angleToCenter = ::acos(lineToCenter.dx() / lineToCenter.length());
         if (lineToCenter.dy() &lt; 0)
             angleToCenter = TwoPi - angleToCenter;
         angleToCenter = normalizeAngle((Pi - angleToCenter) + Pi / 2);

         if (angleToCenter &lt; Pi &amp;&amp; angleToCenter &gt; Pi / 4) {
             <span class="comment">// Rotate left</span>
             angle += (angle &lt; -Pi / 2) ? 0.25 : -0.25;
         } else if (angleToCenter &gt;= Pi &amp;&amp; angleToCenter &lt; (Pi + Pi / 2 + Pi / 4)) {
             <span class="comment">// Rotate right</span>
             angle += (angle &lt; Pi / 2) ? 0.25 : -0.25;
         }
     } else if (::sin(angle) &lt; 0) {
         angle += 0.25;
     } else if (::sin(angle) &gt; 0) {
         angle -= 0.25;
     }</pre>
<p>First, we don't bother doing any advance if the step is 0 since we want to our advance in the actual advance (advance() is called twice, once with step == 0 indicating that items are about to advance and with step == 1 for the actual advance). We also ensure that the mice stays within a circle with a radius of 150 pixels.</p>
<p>Note the <a href="qgraphicsitem.html#mapFromScene">mapFromScene()</a> function provided by <a href="qgraphicsitem.html">QGraphicsItem</a>. This function maps a position given in <i>scene</i> coordinates, to the item's coordinate system.</p>
<pre>     QList&lt;QGraphicsItem *&gt; dangerMice = scene()-&gt;items(QPolygonF()
                                                        &lt;&lt; mapToScene(0, 0)
                                                        &lt;&lt; mapToScene(-30, -50)
                                                        &lt;&lt; mapToScene(30, -50));
     foreach (QGraphicsItem *item, dangerMice) {
         if (item == this)
             continue;

         QLineF lineToMouse(QPointF(0, 0), mapFromItem(item, 0, 0));
         qreal angleToMouse = ::acos(lineToMouse.dx() / lineToMouse.length());
         if (lineToMouse.dy() &lt; 0)
             angleToMouse = TwoPi - angleToMouse;
         angleToMouse = normalizeAngle((Pi - angleToMouse) + Pi / 2);

         if (angleToMouse &gt;= 0 &amp;&amp; angleToMouse &lt; Pi / 2) {
             <span class="comment">// Rotate right</span>
             angle += 0.5;
         } else if (angleToMouse &lt;= TwoPi &amp;&amp; angleToMouse &gt; (TwoPi - Pi / 2)) {
             <span class="comment">// Rotate left</span>
             angle -= 0.5;
         }
     }

     if (dangerMice.size() &gt; 1 &amp;&amp; (qrand() % 10) == 0) {
         if (qrand() % 1)
             angle += (qrand() % 100) / 500.0;
         else
             angle -= (qrand() % 100) / 500.0;
     }</pre>
<p>Then we try to avoid colliding with other mice.</p>
<pre>     speed += (-50 + qrand() % 100) / 100.0;

     qreal dx = ::sin(angle) * 10;
     mouseEyeDirection = (qAbs(dx / 5) &lt; 1) ? 0 : dx / 5;

     setRotation(rotation() + dx);
     setPos(mapToParent(0, -(3 + sin(speed) * 3)));
 }</pre>
<p>Finally, we calculate the mouse's speed and its eye direction (for use when painting the mouse), and set its new position.</p>
<p>The position of an item describes its origin (local coordinate (0, 0)) in the parent coordinates. The <a href="qgraphicsitem.html#setPos">QGraphicsItem::setPos</a>() function sets the position of the item to the given position in the parent's coordinate system. For items with no parent, the given position is interpreted as scene coordinates. <a href="qgraphicsitem.html">QGraphicsItem</a> also provides a <a href="qgraphicsitem.html#mapToParent">mapToParent()</a> function to map a position given in item coordinates, to the parent's coordinate system. If the item has no parent, the position will be mapped to the scene's coordinate system instead.</p>
<p>Then it is time to provide an implementation for the pure virtual functions inherited from <a href="qgraphicsitem.html">QGraphicsItem</a>. Let's first take a look at the <a href="qgraphicsitem.html#boundingRect">boundingRect()</a> function:</p>
<pre> QRectF Mouse::boundingRect() const
 {
     qreal adjust = 0.5;
     return QRectF(-18 - adjust, -22 - adjust,
                   36 + adjust, 60 + adjust);
 }</pre>
<p>The <a href="qgraphicsitem.html#boundingRect">boundingRect()</a> function defines the outer bounds of the item as a rectangle. Note that the Graphics View framework uses the bounding rectangle to determine whether the item requires redrawing, so all painting must be restricted inside this rectangle.</p>
<pre> void Mouse::paint(QPainter *painter, const QStyleOptionGraphicsItem *, QWidget *)
 {
     <span class="comment">// Body</span>
     painter-&gt;setBrush(color);
     painter-&gt;drawEllipse(-10, -20, 20, 40);

     <span class="comment">// Eyes</span>
     painter-&gt;setBrush(Qt::white);
     painter-&gt;drawEllipse(-10, -17, 8, 8);
     painter-&gt;drawEllipse(2, -17, 8, 8);

     <span class="comment">// Nose</span>
     painter-&gt;setBrush(Qt::black);
     painter-&gt;drawEllipse(QRectF(-2, -22, 4, 4));

     <span class="comment">// Pupils</span>
     painter-&gt;drawEllipse(QRectF(-8.0 + mouseEyeDirection, -17, 4, 4));
     painter-&gt;drawEllipse(QRectF(4.0 + mouseEyeDirection, -17, 4, 4));

     <span class="comment">// Ears</span>
     painter-&gt;setBrush(scene()-&gt;collidingItems(this).isEmpty() ? Qt::darkYellow : Qt::red);
     painter-&gt;drawEllipse(-17, -12, 16, 16);
     painter-&gt;drawEllipse(1, -12, 16, 16);

     <span class="comment">// Tail</span>
     QPainterPath path(QPointF(0, 20));
     path.cubicTo(-5, 22, -5, 22, 0, 25);
     path.cubicTo(5, 27, 5, 32, 0, 30);
     path.cubicTo(-5, 32, -5, 42, 0, 35);
     painter-&gt;setBrush(Qt::NoBrush);
     painter-&gt;drawPath(path);
 }</pre>
<p>The Graphics View framework calls the <a href="qgraphicsitem.html#paint">paint()</a> function to paint the contents of the item; the function paints the item in local coordinates.</p>
<p>Note the painting of the ears: Whenever a mouse item collides with other mice items its ears are filled with red; otherwise they are filled with dark yellow. We use the <a href="qgraphicsscene.html#collidingItems">QGraphicsScene::collidingItems</a>() function to check if there are any colliding mice. The actual collision detection is handled by the Graphics View framework using shape-shape intersection. All we have to do is to ensure that the <a href="qgraphicsitem.html#shape">QGraphicsItem::shape</a>() function returns an accurate shape for our item:</p>
<pre> QPainterPath Mouse::shape() const
 {
     QPainterPath path;
     path.addRect(-10, -20, 20, 40);
     return path;
 }</pre>
<p>Because the complexity of arbitrary shape-shape intersection grows with an order of magnitude when the shapes are complex, this operation can be noticably time consuming. An alternative approach is to reimplement the <a href="qgraphicsitem.html#collidesWithItem">collidesWithItem()</a> function to provide your own custom item and shape collision algorithm.</p>
<p>This completes the <tt>Mouse</tt> class implementation, it is now ready for use. Let's take a look at the <tt>main()</tt> function to see how to implement a scene for the mice and a view for displaying the contents of the scene.</p>
<a name="the-main-function"></a>
<h2>The Main() Function</h2>
<p>In this example we have chosen to let the <tt>main()</tt> function provide the main application window, creating the items and the scene, putting the items into the scene and creating a corresponding view.</p>
<pre> int main(int argc, char **argv)
 {
     QApplication app(argc, argv);
     qsrand(QTime(0,0,0).secsTo(QTime::currentTime()));</pre>
<p>First, we create an application object and call the global <a href="qtglobal.html#qsrand">qsrand</a>() function to specify the seed used to generate a new random number sequence of pseudo random integers with the previously mentioned <a href="qtglobal.html#qrand">qrand</a>() function.</p>
<p>Then it is time to create the scene:</p>
<pre>     QGraphicsScene scene;
     scene.setSceneRect(-300, -300, 600, 600);</pre>
<p>The <a href="qgraphicsscene.html">QGraphicsScene</a> class serves as a container for QGraphicsItems. It also provides functionality that lets you efficiently determine the location of items as well as determining which items that are visible within an arbitrary area on the scene.</p>
<p>When creating a scene it is recommended to set the scene's rectangle, i.e&#x2e;, the rectangle that defines the extent of the scene. It is primarily used by <a href="qgraphicsview.html">QGraphicsView</a> to determine the view's default scrollable area, and by <a href="qgraphicsscene.html">QGraphicsScene</a> to manage item indexing. If not explicitly set, the scene's default rectangle will be the largest bounding rectangle of all the items on the scene since the scene was created (i.e&#x2e;, the rectangle will grow when items are added or moved in the scene, but it will never shrink).</p>
<pre>     scene.setItemIndexMethod(QGraphicsScene::NoIndex);</pre>
<p>The item index function is used to speed up item discovery. <a href="qgraphicsscene.html#ItemIndexMethod-enum">NoIndex</a> implies that item location is of linear complexity, as all items on the scene are searched. Adding, moving and removing items, however, is done in constant time. This approach is ideal for dynamic scenes, where many items are added, moved or removed continuously. The alternative is <a href="qgraphicsscene.html#ItemIndexMethod-enum">BspTreeIndex</a> which makes use of binary search resulting in item location algorithms that are of an order closer to logarithmic complexity.</p>
<pre>     for (int i = 0; i &lt; MouseCount; ++i) {
         Mouse *mouse = new Mouse;
         mouse-&gt;setPos(::sin((i * 6.28) / MouseCount) * 200,
                       ::cos((i * 6.28) / MouseCount) * 200);
         scene.addItem(mouse);
     }</pre>
<p>Then we add the mice to the scene.</p>
<pre>     QGraphicsView view(&amp;scene);
     view.setRenderHint(QPainter::Antialiasing);
     view.setBackgroundBrush(QPixmap(&quot;:/images/cheese.jpg&quot;));</pre>
<p>To be able to view the scene we must also create a <a href="qgraphicsview.html">QGraphicsView</a> widget. The <a href="qgraphicsview.html">QGraphicsView</a> class visualizes the contents of a scene in a scrollable viewport. We also ensure that the contents is rendered using antialiasing, and we create the cheese background by setting the view's background brush.</p>
<p>The image used for the background is stored as a binary file in the application's executable using Qt's <a href="resources.html">resource system</a>. The <a href="qpixmap.html">QPixmap</a> constructor accepts both file names that refer to actual files on disk and file names that refer to the application's embedded resources.</p>
<pre>     view.setCacheMode(QGraphicsView::CacheBackground);
     view.setViewportUpdateMode(QGraphicsView::BoundingRectViewportUpdate);
     view.setDragMode(QGraphicsView::ScrollHandDrag);</pre>
<p>Then we set the cache mode; <a href="qgraphicsview.html">QGraphicsView</a> can cache pre-rendered content in a pixmap, which is then drawn onto the viewport. The purpose of such caching is to speed up the total rendering time for areas that are slow to render, e.g&#x2e;, texture, gradient and alpha blended backgrounds. The <a href="qgraphicsview.html#CacheModeFlag-enum">CacheMode</a> property holds which parts of the view that are cached, and the <a href="qgraphicsview.html#CacheModeFlag-enum">CacheBackground</a> flag enables caching of the view's background.</p>
<p>By setting the <a href="qgraphicsview.html#dragMode-prop">dragMode</a> property we define what should happen when the user clicks on the scene background and drags the mouse. The <a href="qgraphicsview.html#DragMode-enum">ScrollHandDrag</a> flag makes the cursor change into a pointing hand, and dragging the mouse around will scroll the scrollbars.</p>
<pre>     view.setWindowTitle(QT_TRANSLATE_NOOP(QGraphicsView, &quot;Colliding Mice&quot;));
     view.resize(400, 300);
     view.show();

     QTimer timer;
     QObject::connect(&amp;timer, SIGNAL(timeout()), &amp;scene, SLOT(advance()));
     timer.start(1000 / 33);

     return app.exec();
 }</pre>
<p>In the end, we set the application window's title and size before we enter the main event loop using the <a href="qapplication.html#exec">QApplication::exec</a>() function.</p>
<p>Finally, we create a <a href="qtimer.html">QTimer</a> and connect its timeout() signal to the advance() slot of the scene. Every time the timer fires, the scene will advance one frame. We then tell the timer to fire every 1000/33 millisecond. This will give us a frame rate of 30 frames a second, which is fast enough for most animations. Doing the animation with a single timer connect to advance the scene ensures that all the mice are moved at one point and, more importantly, only one update is sent to the screen after all the mice have moved.</p>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="40%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td>
<td width="20%" align="center"><a href="trademarks.html">Trademarks</a></td>
<td width="40%" align="right"><div align="right">Qt 4.6.3</div></td>
</tr></table></div></address></body>
</html>