mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-03 15:55:27 +08:00
qt 6.5.1 original
This commit is contained in:
49
examples/widgets/graphicsview/collidingmice/CMakeLists.txt
Normal file
49
examples/widgets/graphicsview/collidingmice/CMakeLists.txt
Normal file
@ -0,0 +1,49 @@
|
||||
# Copyright (C) 2022 The Qt Company Ltd.
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
project(collidingmice LANGUAGES CXX)
|
||||
|
||||
if(NOT DEFINED INSTALL_EXAMPLESDIR)
|
||||
set(INSTALL_EXAMPLESDIR "examples")
|
||||
endif()
|
||||
|
||||
set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/widgets/graphicsview/collidingmice")
|
||||
|
||||
find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets)
|
||||
|
||||
qt_standard_project_setup()
|
||||
|
||||
qt_add_executable(collidingmice
|
||||
main.cpp
|
||||
mouse.cpp mouse.h
|
||||
)
|
||||
|
||||
set_target_properties(collidingmice PROPERTIES
|
||||
WIN32_EXECUTABLE TRUE
|
||||
MACOSX_BUNDLE TRUE
|
||||
)
|
||||
|
||||
target_link_libraries(collidingmice PRIVATE
|
||||
Qt6::Core
|
||||
Qt6::Gui
|
||||
Qt6::Widgets
|
||||
)
|
||||
|
||||
# Resources:
|
||||
set(mice_resource_files
|
||||
"images/cheese.jpg"
|
||||
)
|
||||
|
||||
qt_add_resources(collidingmice "mice"
|
||||
PREFIX
|
||||
"/"
|
||||
FILES
|
||||
${mice_resource_files}
|
||||
)
|
||||
|
||||
install(TARGETS collidingmice
|
||||
RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
|
||||
BUNDLE DESTINATION "${INSTALL_EXAMPLEDIR}"
|
||||
LIBRARY DESTINATION "${INSTALL_EXAMPLEDIR}"
|
||||
)
|
@ -0,0 +1,14 @@
|
||||
QT += widgets
|
||||
|
||||
HEADERS += \
|
||||
mouse.h
|
||||
SOURCES += \
|
||||
main.cpp \
|
||||
mouse.cpp
|
||||
|
||||
RESOURCES += \
|
||||
mice.qrc
|
||||
|
||||
# install
|
||||
target.path = $$[QT_INSTALL_EXAMPLES]/widgets/graphicsview/collidingmice
|
||||
INSTALLS += target
|
BIN
examples/widgets/graphicsview/collidingmice/images/cheese.jpg
Normal file
BIN
examples/widgets/graphicsview/collidingmice/images/cheese.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
52
examples/widgets/graphicsview/collidingmice/main.cpp
Normal file
52
examples/widgets/graphicsview/collidingmice/main.cpp
Normal file
@ -0,0 +1,52 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||||
|
||||
#include <QtMath>
|
||||
#include <QtWidgets>
|
||||
|
||||
#include "mouse.h"
|
||||
|
||||
static constexpr int MouseCount = 7;
|
||||
|
||||
//! [0]
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
QApplication app(argc, argv);
|
||||
//! [0]
|
||||
|
||||
//! [1]
|
||||
QGraphicsScene scene;
|
||||
scene.setSceneRect(-300, -300, 600, 600);
|
||||
//! [1] //! [2]
|
||||
scene.setItemIndexMethod(QGraphicsScene::NoIndex);
|
||||
//! [2]
|
||||
|
||||
//! [3]
|
||||
for (int i = 0; i < MouseCount; ++i) {
|
||||
Mouse *mouse = new Mouse;
|
||||
mouse->setPos(::sin((i * 6.28) / MouseCount) * 200,
|
||||
::cos((i * 6.28) / MouseCount) * 200);
|
||||
scene.addItem(mouse);
|
||||
}
|
||||
//! [3]
|
||||
|
||||
//! [4]
|
||||
QGraphicsView view(&scene);
|
||||
view.setRenderHint(QPainter::Antialiasing);
|
||||
view.setBackgroundBrush(QPixmap(":/images/cheese.jpg"));
|
||||
//! [4] //! [5]
|
||||
view.setCacheMode(QGraphicsView::CacheBackground);
|
||||
view.setViewportUpdateMode(QGraphicsView::BoundingRectViewportUpdate);
|
||||
view.setDragMode(QGraphicsView::ScrollHandDrag);
|
||||
//! [5] //! [6]
|
||||
view.setWindowTitle(QT_TRANSLATE_NOOP(QGraphicsView, "Colliding Mice"));
|
||||
view.resize(400, 300);
|
||||
view.show();
|
||||
|
||||
QTimer timer;
|
||||
QObject::connect(&timer, &QTimer::timeout, &scene, &QGraphicsScene::advance);
|
||||
timer.start(1000 / 33);
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
//! [6]
|
5
examples/widgets/graphicsview/collidingmice/mice.qrc
Normal file
5
examples/widgets/graphicsview/collidingmice/mice.qrc
Normal file
@ -0,0 +1,5 @@
|
||||
<RCC>
|
||||
<qresource prefix="/" >
|
||||
<file>images/cheese.jpg</file>
|
||||
</qresource>
|
||||
</RCC>
|
160
examples/widgets/graphicsview/collidingmice/mouse.cpp
Normal file
160
examples/widgets/graphicsview/collidingmice/mouse.cpp
Normal file
@ -0,0 +1,160 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||||
|
||||
#include "mouse.h"
|
||||
|
||||
#include <QGraphicsScene>
|
||||
#include <QPainter>
|
||||
#include <QRandomGenerator>
|
||||
#include <QStyleOption>
|
||||
#include <QtMath>
|
||||
|
||||
constexpr qreal Pi = M_PI;
|
||||
constexpr qreal TwoPi = 2 * M_PI;
|
||||
|
||||
static qreal normalizeAngle(qreal angle)
|
||||
{
|
||||
while (angle < 0)
|
||||
angle += TwoPi;
|
||||
while (angle > TwoPi)
|
||||
angle -= TwoPi;
|
||||
return angle;
|
||||
}
|
||||
|
||||
//! [0]
|
||||
Mouse::Mouse() : color(QRandomGenerator::global()->bounded(256),
|
||||
QRandomGenerator::global()->bounded(256),
|
||||
QRandomGenerator::global()->bounded(256))
|
||||
{
|
||||
setRotation(QRandomGenerator::global()->bounded(360 * 16));
|
||||
}
|
||||
//! [0]
|
||||
|
||||
//! [1]
|
||||
QRectF Mouse::boundingRect() const
|
||||
{
|
||||
qreal adjust = 0.5;
|
||||
return QRectF(-18 - adjust, -22 - adjust,
|
||||
36 + adjust, 60 + adjust);
|
||||
}
|
||||
//! [1]
|
||||
|
||||
//! [2]
|
||||
QPainterPath Mouse::shape() const
|
||||
{
|
||||
QPainterPath path;
|
||||
path.addRect(-10, -20, 20, 40);
|
||||
return path;
|
||||
}
|
||||
//! [2]
|
||||
|
||||
//! [3]
|
||||
void Mouse::paint(QPainter *painter, const QStyleOptionGraphicsItem *, QWidget *)
|
||||
{
|
||||
// Body
|
||||
painter->setBrush(color);
|
||||
painter->drawEllipse(-10, -20, 20, 40);
|
||||
|
||||
// Eyes
|
||||
painter->setBrush(Qt::white);
|
||||
painter->drawEllipse(-10, -17, 8, 8);
|
||||
painter->drawEllipse(2, -17, 8, 8);
|
||||
|
||||
// Nose
|
||||
painter->setBrush(Qt::black);
|
||||
painter->drawEllipse(QRectF(-2, -22, 4, 4));
|
||||
|
||||
// Pupils
|
||||
painter->drawEllipse(QRectF(-8.0 + mouseEyeDirection, -17, 4, 4));
|
||||
painter->drawEllipse(QRectF(4.0 + mouseEyeDirection, -17, 4, 4));
|
||||
|
||||
// Ears
|
||||
painter->setBrush(scene()->collidingItems(this).isEmpty() ? Qt::darkYellow : Qt::red);
|
||||
painter->drawEllipse(-17, -12, 16, 16);
|
||||
painter->drawEllipse(1, -12, 16, 16);
|
||||
|
||||
// Tail
|
||||
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->setBrush(Qt::NoBrush);
|
||||
painter->drawPath(path);
|
||||
}
|
||||
//! [3]
|
||||
|
||||
//! [4]
|
||||
void Mouse::advance(int step)
|
||||
{
|
||||
if (!step)
|
||||
return;
|
||||
//! [4]
|
||||
// Don't move too far away
|
||||
//! [5]
|
||||
QLineF lineToCenter(QPointF(0, 0), mapFromScene(0, 0));
|
||||
if (lineToCenter.length() > 150) {
|
||||
qreal angleToCenter = std::atan2(lineToCenter.dy(), lineToCenter.dx());
|
||||
angleToCenter = normalizeAngle((Pi - angleToCenter) + Pi / 2);
|
||||
|
||||
if (angleToCenter < Pi && angleToCenter > Pi / 4) {
|
||||
// Rotate left
|
||||
angle += (angle < -Pi / 2) ? 0.25 : -0.25;
|
||||
} else if (angleToCenter >= Pi && angleToCenter < (Pi + Pi / 2 + Pi / 4)) {
|
||||
// Rotate right
|
||||
angle += (angle < Pi / 2) ? 0.25 : -0.25;
|
||||
}
|
||||
} else if (::sin(angle) < 0) {
|
||||
angle += 0.25;
|
||||
} else if (::sin(angle) > 0) {
|
||||
angle -= 0.25;
|
||||
//! [5] //! [6]
|
||||
}
|
||||
//! [6]
|
||||
|
||||
// Try not to crash with any other mice
|
||||
//! [7]
|
||||
const QList<QGraphicsItem *> dangerMice = scene()->items(QPolygonF()
|
||||
<< mapToScene(0, 0)
|
||||
<< mapToScene(-30, -50)
|
||||
<< mapToScene(30, -50));
|
||||
|
||||
for (const QGraphicsItem *item : dangerMice) {
|
||||
if (item == this)
|
||||
continue;
|
||||
|
||||
QLineF lineToMouse(QPointF(0, 0), mapFromItem(item, 0, 0));
|
||||
qreal angleToMouse = std::atan2(lineToMouse.dy(), lineToMouse.dx());
|
||||
angleToMouse = normalizeAngle((Pi - angleToMouse) + Pi / 2);
|
||||
|
||||
if (angleToMouse >= 0 && angleToMouse < Pi / 2) {
|
||||
// Rotate right
|
||||
angle += 0.5;
|
||||
} else if (angleToMouse <= TwoPi && angleToMouse > (TwoPi - Pi / 2)) {
|
||||
// Rotate left
|
||||
angle -= 0.5;
|
||||
//! [7] //! [8]
|
||||
}
|
||||
//! [8] //! [9]
|
||||
}
|
||||
//! [9]
|
||||
|
||||
// Add some random movement
|
||||
//! [10]
|
||||
if (dangerMice.size() > 1 && QRandomGenerator::global()->bounded(10) == 0) {
|
||||
if (QRandomGenerator::global()->bounded(1))
|
||||
angle += QRandomGenerator::global()->bounded(1 / 500.0);
|
||||
else
|
||||
angle -= QRandomGenerator::global()->bounded(1 / 500.0);
|
||||
}
|
||||
//! [10]
|
||||
|
||||
//! [11]
|
||||
speed += (-50 + QRandomGenerator::global()->bounded(100)) / 100.0;
|
||||
|
||||
qreal dx = ::sin(angle) * 10;
|
||||
mouseEyeDirection = (qAbs(dx / 5) < 1) ? 0 : dx / 5;
|
||||
|
||||
setRotation(rotation() + dx);
|
||||
setPos(mapToParent(0, -(3 + sin(speed) * 3)));
|
||||
}
|
||||
//! [11]
|
31
examples/widgets/graphicsview/collidingmice/mouse.h
Normal file
31
examples/widgets/graphicsview/collidingmice/mouse.h
Normal file
@ -0,0 +1,31 @@
|
||||
// Copyright (C) 2016 The Qt Company Ltd.
|
||||
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
||||
|
||||
#ifndef MOUSE_H
|
||||
#define MOUSE_H
|
||||
|
||||
#include <QGraphicsItem>
|
||||
|
||||
//! [0]
|
||||
class Mouse : public QGraphicsItem
|
||||
{
|
||||
public:
|
||||
Mouse();
|
||||
|
||||
QRectF boundingRect() const override;
|
||||
QPainterPath shape() const override;
|
||||
void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
|
||||
QWidget *widget) override;
|
||||
|
||||
protected:
|
||||
void advance(int step) override;
|
||||
|
||||
private:
|
||||
qreal angle = 0;
|
||||
qreal speed = 0;
|
||||
qreal mouseEyeDirection = 0;
|
||||
QColor color;
|
||||
};
|
||||
//! [0]
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user