上次發了個純painter繪製的老鼠,那個就是qt目錄下的demo,改的,只是比demo中的老鼠稍微胖一點,估計人到中年都發福吧。此次來一個魔法小魚,這條魚能夠變換顏色,尾巴還會搖動,能夠設定旋轉的角度以及尾巴擺動的幅度等,原理是參考網上一個安卓大神寫的(繪製原理 https://www.jianshu.com/p/3dd3d1524851)。 其實在Qt學習過程當中,若是越到問題找不到相關文章和答案,能夠試着將關鍵字改爲安卓試試,你會發現另一篇天地,大量的資源和文章介紹等,就好比安卓中用的java的painter,就幾乎和Qt中的同樣,估計填寫編程語言都很相似,連方法名字幾乎都是同樣,設置參數,具備不少通用性,做爲一名程序員,最重要的是理解思路和原理,甚至學習的方法,這些掌握了,任何語言都不是問題。html
#ifndef MAGICFISH_H #define MAGICFISH_H /** * 魔幻魚控件 做者:feiyangqingyun(QQ:517216493) 2018-7-15 * 本控件來源於網絡(原做者:tyroneli(http://www.qtcn.org/bbs/read-htm-tid-65412.html)) * 繪製原理 https://www.jianshu.com/p/3dd3d1524851 * 1:可設置魚頭+魚身+魚鰭+魚尾的顏色 * 2:可設置魚頭+魚身+魚鰭+魚尾的比例 * 3:可設置基準顏色,做爲全部統一顏色 * 4:可設置魚鰭是否擺動 * 5:可設置魚的停留位置旋轉角度 */ #include <QWidget> #ifdef quc #if (QT_VERSION < QT_VERSION_CHECK(5,7,0)) #include <QtDesigner/QDesignerExportWidget> #else #include <QtUiPlugin/QDesignerExportWidget> #endif class QDESIGNER_WIDGET_EXPORT MagicFish : public QWidget #else class MagicFish : public QWidget #endif { Q_OBJECT Q_PROPERTY(QColor headColor READ getHeadColor WRITE setHeadColor) Q_PROPERTY(QColor bodyColor READ getBodyColor WRITE setBodyColor) Q_PROPERTY(QColor finColor READ getFinColor WRITE setFinColor) Q_PROPERTY(QColor tailColor READ getTailColor WRITE setTailColor) Q_PROPERTY(QColor baseColor READ getBaseColor WRITE setBaseColor) Q_PROPERTY(bool finMove READ getFinMove WRITE setFinMove) Q_PROPERTY(int speed READ getSpeed WRITE setSpeed) Q_PROPERTY(double wave READ getWave WRITE setWave) Q_PROPERTY(double currentAngle READ getCurrentAngle WRITE setCurrentAngle) public: explicit MagicFish(QWidget *parent = 0); ~MagicFish(); protected: void resizeEvent(QResizeEvent *); void paintEvent(QPaintEvent *); void drawHead(QPainter *painter); void drawBody(QPainter *painter, const QPointF &pos, double angle); void drawFin(QPainter *painter, const QPointF &pos, bool left, double angle); void drawTail(QPainter *painter, const QPointF &pos, double angle); void drawTail1(QPainter *painter, const QPointF &pos, double angle); void drawTail2(QPainter *painter, const QPointF &pos, double angle); private: //計算座標點 QPointF calcPoint(const QPointF &pos, double len, double angle); double qDegreesToRadians(double degrees); double qRadiansToDegrees(double radians); private: QColor headColor; //魚頭顏色 QColor bodyColor; //魚身顏色 QColor finColor; //魚鰭顏色 QColor tailColor; //魚尾顏色 QColor baseColor; //基準顏色 bool finMove; //魚鰭是否擺動 int speed; //遊動的速度即尾巴擺動的頻率 double wave; //晃動的幅度 double currentAngle; //旋轉的角度 int currentValue; //遊動的位置 double headLen; //魚頭尺寸 double bodyLen; //魚身尺寸 double finLen; //魚鰭尺寸 double tailLen; //魚尾尺寸 QPointF headPos; //魚頭座標 QTimer *timer; //定時器處理遊動 public: QColor getHeadColor() const; QColor getBodyColor() const; QColor getFinColor() const; QColor getTailColor() const; QColor getBaseColor() const; bool getFinMove() const; int getSpeed() const; double getWave() const; double getCurrentAngle() const; double getHeadLen() const; QPointF getHeadPos() const; QSize sizeHint() const; QSize minimumSizeHint() const; private slots: void updateValue(); public slots: //設置魚頭顏色 void setHeadColor(const QColor &headColor); //設置魚身顏色 void setBodyColor(const QColor &bodyColor); //設置魚鰭顏色 void setFinColor(const QColor &finColor); //設置魚尾顏色 void setTailColor(const QColor &tailColor); //設置基準顏色 void setBaseColor(const QColor &baseColor); //設置魚鰭是否擺動 void setFinMove(bool finMove); //設置遊動的速度 void setSpeed(int speed); //設置滑動的幅度 void setWave(double wave); //設置當前旋轉的角度 void setCurrentAngle(double currentAngle); void setCurrentAngle(int currentAngle); //設置頭部的長度 void setHeadLen(int headLen); }; #endif // MAGICFISH_H
#pragma execution_character_set("utf-8") #include "magicfish.h" #include "qpainter.h" #include "qmath.h" #include "qtimer.h" #include "qdebug.h" MagicFish::MagicFish(QWidget *parent) : QWidget(parent) { headColor = QColor(244, 92, 71, 200); bodyColor = QColor(244, 92, 71, 220); finColor = QColor(244, 92, 71, 150); tailColor = QColor(244, 92, 71, 180); baseColor = QColor(244, 92, 71); finMove = false; speed = 30; wave = 1.0; currentAngle = 0.0; currentValue = 0; headLen = 10; finLen = headLen * 1.8; bodyLen = headLen * 5.2; tailLen = headLen * 0.8; timer = new QTimer(this); connect(timer, SIGNAL(timeout()), this, SLOT(updateValue())); timer->start(100); } MagicFish::~MagicFish() { if (timer->isActive()) { timer->stop(); } } void MagicFish::resizeEvent(QResizeEvent *) { headLen = qMin(width(), height()) / 10.0; bodyLen = headLen * 5.2; finLen = headLen * 1.8; tailLen = headLen * 0.8; } void MagicFish::paintEvent(QPaintEvent *) { //繪製準備工做,啓用反鋸齒 QPainter painter(this); painter.setRenderHint(QPainter::Antialiasing); QPointF middlePos = QPointF(width() / 2, height() / 2); headPos = calcPoint(middlePos, bodyLen / 1.5, currentAngle); double angle = currentAngle + qSin(qDegreesToRadians(currentValue * 1.2 * wave)) * 2; QPointF pos = calcPoint(headPos, bodyLen, angle - 180); //繪製頭部 drawHead(&painter); //繪製魚身 drawBody(&painter, pos, angle); //繪製左側魚鰭 QPointF leftPos = calcPoint(headPos, headLen * 0.9, angle + 110); drawFin(&painter, leftPos, true, angle); //繪製右側魚鰭 QPointF rightPos = calcPoint(headPos, headLen * 0.9, angle - 110); drawFin(&painter, rightPos, false, angle); //繪製魚尾 drawTail(&painter, pos, angle); } void MagicFish::drawHead(QPainter *painter) { painter->save(); painter->setPen(Qt::NoPen); painter->setBrush(headColor); //魚頭關節圓 painter->drawEllipse(headPos, headLen, headLen); painter->restore(); } void MagicFish::drawBody(QPainter *painter, const QPointF &pos, double angle) { //計算身體部分四個點 QPointF pos1 = calcPoint(headPos, headLen, angle - 80); QPointF pos2 = calcPoint(pos, headLen * 0.8, angle - 90); QPointF pos3 = calcPoint(pos, headLen * 0.8, angle + 90); QPointF pos4 = calcPoint(headPos, headLen, angle + 80); QPointF leftPos = calcPoint(headPos, bodyLen * 0.56, angle - 130); QPointF rightPos = calcPoint(headPos, bodyLen * 0.56, angle + 130); //計算繪製路徑 QPainterPath path; path.moveTo(pos1); path.quadTo(leftPos, pos2); path.lineTo(pos3); path.quadTo(rightPos, pos4); path.lineTo(pos1); painter->save(); painter->setPen(Qt::NoPen); painter->setBrush(bodyColor); painter->drawPath(path); painter->restore(); } void MagicFish::drawFin(QPainter *painter, const QPointF &pos, bool left, double angle) { double controlAngle = 115; double finAngle = finMove ? qSin(qDegreesToRadians(currentValue * 16.1 * wave)) * 12.0 : 2; QPointF endPos = calcPoint(pos, finLen, left ? angle + finAngle + 180 : angle - finAngle - 180); QPointF controlPos = calcPoint(pos, finLen * 1.8, left ? angle + controlAngle + finAngle : angle - controlAngle - finAngle); //計算魚鰭的路徑 QPainterPath path; path.moveTo(pos); path.quadTo(controlPos, endPos); path.lineTo(pos); painter->save(); painter->setPen(Qt::NoPen); painter->setBrush(finColor); painter->drawPath(path); painter->restore(); } void MagicFish::drawTail(QPainter *painter, const QPointF &pos, double angle) { double flag = 0.6; double length = tailLen * (flag + 1); double tailAngle = angle + qCos(qDegreesToRadians(currentValue * 1.5 * wave)) * 15; QPointF endPos = calcPoint(pos, length, tailAngle - 180); QPointF pos1 = calcPoint(pos, tailLen, tailAngle - 90); QPointF pos2 = calcPoint(endPos, tailLen * flag, tailAngle - 90); QPointF pos3 = calcPoint(endPos, tailLen * flag, tailAngle + 90); QPointF pos4 = calcPoint(pos, tailLen, tailAngle + 90); QPainterPath path; path.moveTo(pos1); path.lineTo(pos2); path.lineTo(pos3); path.lineTo(pos4); painter->save(); painter->setPen(Qt::NoPen); painter->setBrush(tailColor); //魚尾關節大圓 painter->drawEllipse(pos, tailLen, tailLen); //魚尾關節小圓 painter->drawEllipse(endPos, tailLen * flag, tailLen * flag); //魚尾肉部分路徑 painter->drawPath(path); painter->restore(); //繪製魚尾關節 drawTail1(painter, endPos, tailAngle); } void MagicFish::drawTail1(QPainter *painter, const QPointF &pos, double angle) { double len = tailLen * 0.6; double flag = 0.4; double length = len * (flag + 2.7); double tailAngle = angle + qSin(qDegreesToRadians(currentValue * 1.7 * wave)) * 35; QPointF endPos = calcPoint(pos, length, tailAngle - 180); QPointF pos1 = calcPoint(pos, len, tailAngle - 90); QPointF pos2 = calcPoint(endPos, len * flag, tailAngle - 90); QPointF pos3 = calcPoint(endPos, len * flag, tailAngle + 90); QPointF pos4 = calcPoint(pos, len, tailAngle + 90); QPainterPath path; path.moveTo(pos1); path.lineTo(pos2); path.lineTo(pos3); path.lineTo(pos4); painter->save(); painter->setPen(Qt::NoPen); painter->setBrush(tailColor); painter->drawPath(path); painter->restore(); //繪製魚尾魚鰭 drawTail2(painter, pos, tailAngle); } void MagicFish::drawTail2(QPainter *painter, const QPointF &pos, double angle) { double len = tailLen * 0.6; double flag = 0.4; double length = len * (flag + 2.7); double tailWidth = qAbs(qSin(qDegreesToRadians(currentValue * 1.9 * wave)) * len + headLen / 5.0 * 3.0); QPointF endPos1 = calcPoint(pos, length, angle - 180); QPointF endPos2 = calcPoint(pos, length - 10, angle - 180); QPointF pos1 = calcPoint(endPos1, tailWidth, angle - 90); QPointF pos2 = calcPoint(endPos1, tailWidth, angle + 90); QPointF pos3 = calcPoint(endPos2, tailWidth - headLen / 1.5, angle - 90); QPointF pos4 = calcPoint(endPos2, tailWidth - headLen / 1.5, angle + 90); QPainterPath path1; path1.moveTo(pos); path1.lineTo(pos3); path1.lineTo(pos4); path1.lineTo(pos); QPainterPath path2; path2.moveTo(pos); path2.lineTo(pos1); path2.lineTo(pos2); path2.lineTo(pos); painter->save(); painter->setPen(Qt::NoPen); painter->setBrush(tailColor); painter->drawPath(path1); painter->drawPath(path2); painter->restore(); } QPointF MagicFish::calcPoint(const QPointF &pos, double len, double angle) { double x = qCos(qDegreesToRadians(angle)) * len; double y = qSin(qDegreesToRadians(angle - 180)) * len; return QPointF(pos + QPointF(x, y)); } double MagicFish::qDegreesToRadians(double degrees) { return degrees * double(M_PI / 180); } double MagicFish::qRadiansToDegrees(double radians) { return radians * double(180 / M_PI); } void MagicFish::updateValue() { //值會一直遞增,須要判斷是否越界 if (currentValue >= (INT_MAX - speed)) { currentValue = 0; } currentValue = (currentValue + speed) % 54000; update(); } QColor MagicFish::getHeadColor() const { return this->headColor; } QColor MagicFish::getBodyColor() const { return this->bodyColor; } QColor MagicFish::getFinColor() const { return this->finColor; } QColor MagicFish::getTailColor() const { return this->tailColor; } QColor MagicFish::getBaseColor() const { return this->baseColor; } bool MagicFish::getFinMove() const { return this->finMove; } int MagicFish::getSpeed() const { return this->speed; } double MagicFish::getWave() const { return this->wave; } double MagicFish::getCurrentAngle() const { return this->currentAngle; } double MagicFish::getHeadLen() const { return this->headLen; } QPointF MagicFish::getHeadPos() const { return this->headPos; } QSize MagicFish::sizeHint() const { return QSize(200, 200); } QSize MagicFish::minimumSizeHint() const { return QSize(20, 20); } void MagicFish::setHeadColor(const QColor &headColor) { if (this->headColor != headColor) { this->headColor = headColor; update(); } } void MagicFish::setBodyColor(const QColor &bodyColor) { if (this->bodyColor != bodyColor) { this->bodyColor = bodyColor; update(); } } void MagicFish::setFinColor(const QColor &finColor) { if (this->finColor != finColor) { this->finColor = finColor; update(); } } void MagicFish::setTailColor(const QColor &tailColor) { if (this->tailColor != tailColor) { this->tailColor = tailColor; update(); } } void MagicFish::setBaseColor(const QColor &baseColor) { if (this->baseColor != baseColor) { this->baseColor = baseColor; //根據基準顏色設置其餘顏色 this->baseColor.setAlpha(200); headColor = this->baseColor; this->baseColor.setAlpha(220); bodyColor = this->baseColor; this->baseColor.setAlpha(150); finColor = this->baseColor; this->baseColor.setAlpha(180); tailColor = this->baseColor; update(); } } void MagicFish::setFinMove(bool finMove) { if (this->finMove != finMove) { this->finMove = finMove; update(); } } void MagicFish::setSpeed(int speed) { if (this->speed != speed) { this->speed = speed; update(); } } void MagicFish::setWave(double wave) { if (this->wave != wave) { this->wave = wave; update(); } } void MagicFish::setCurrentAngle(double currentAngle) { if (this->currentAngle != currentAngle) { this->currentAngle = currentAngle; update(); } } void MagicFish::setCurrentAngle(int currentAngle) { setCurrentAngle((double)currentAngle); } void MagicFish::setHeadLen(int headLen) { if (this->headLen != headLen) { this->headLen = headLen; this->finLen = headLen * 1.8; this->bodyLen = headLen * 5.2; this->tailLen = headLen * 0.8; update(); } }