| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- /************************************************************************
- * file name : easy_frame_rate_viewer.cpp
- * ----------------- :
- * creation time : 2017/04/02
- * author : Victor Zarubkin
- * email : [email protected]
- * ----------------- :
- * description : This file contains implementation of EasyFrameRateViewer widget.
- * ----------------- :
- * change log : * 2017/04/02 Victor Zarubkin: Initial commit.
- * :
- * : *
- * ----------------- :
- * license : Lightweight profiler library for c++
- * : Copyright(C) 2016-2017 Sergey Yagovtsev, Victor Zarubkin
- * :
- * : Licensed under either of
- * : * MIT license (LICENSE.MIT or http://opensource.org/licenses/MIT)
- * : * Apache License, Version 2.0, (LICENSE.APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- * : at your option.
- * :
- * : The MIT License
- * :
- * : Permission is hereby granted, free of charge, to any person obtaining a copy
- * : of this software and associated documentation files (the "Software"), to deal
- * : in the Software without restriction, including without limitation the rights
- * : to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
- * : of the Software, and to permit persons to whom the Software is furnished
- * : to do so, subject to the following conditions:
- * :
- * : The above copyright notice and this permission notice shall be included in all
- * : copies or substantial portions of the Software.
- * :
- * : THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
- * : INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * : PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- * : LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
- * : TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
- * : USE OR OTHER DEALINGS IN THE SOFTWARE.
- * :
- * : The Apache License, Version 2.0 (the "License")
- * :
- * : You may not use this file except in compliance with the License.
- * : You may obtain a copy of the License at
- * :
- * : http://www.apache.org/licenses/LICENSE-2.0
- * :
- * : Unless required by applicable law or agreed to in writing, software
- * : distributed under the License is distributed on an "AS IS" BASIS,
- * : WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * : See the License for the specific language governing permissions and
- * : limitations under the License.
- ************************************************************************/
- #include <QGraphicsScene>
- #include <QResizeEvent>
- #include <QContextMenuEvent>
- #include <QMenu>
- #include <QAction>
- #include "easy_frame_rate_viewer.h"
- #include "globals.h"
- const int INTERVAL_WIDTH = 20;
- //////////////////////////////////////////////////////////////////////////
- EasyFPSGraphicsItem::EasyFPSGraphicsItem() : Parent(nullptr)
- {
- }
- EasyFPSGraphicsItem::~EasyFPSGraphicsItem()
- {
- }
- //////////////////////////////////////////////////////////////////////////
- QRectF EasyFPSGraphicsItem::boundingRect() const
- {
- return m_boundingRect;
- }
- void EasyFPSGraphicsItem::setBoundingRect(const QRectF& _boundingRect)
- {
- m_boundingRect = _boundingRect;
- }
- void EasyFPSGraphicsItem::setBoundingRect(qreal x, qreal y, qreal w, qreal h)
- {
- m_boundingRect.setRect(x, y, w, h);
- }
- //////////////////////////////////////////////////////////////////////////
- void EasyFPSGraphicsItem::paint(QPainter* _painter, const QStyleOptionGraphicsItem*, QWidget*)
- {
- if (m_frames.empty())
- return;
- const auto fontMetrics = QFontMetrics(scene()->font());
- const int fontHeight = fontMetrics.height() + 2;
- const qreal h = m_boundingRect.height() - (fontHeight << 1) - 4;
- if (h < 0)
- return;
- const qreal halfWidth = m_boundingRect.width() * 0.5 - INTERVAL_WIDTH;
- const int halfMax = static_cast<int>(0.5 + halfWidth / INTERVAL_WIDTH);
- const int half = static_cast<int>(m_frames.size() / 2);
- const qreal top = fontHeight, bottom = h + 4 + fontHeight;
- qreal y;
- _painter->save();
- _painter->drawLine(QPointF(0, top), QPointF(m_boundingRect.width(), top));
- _painter->drawLine(QPointF(0, bottom), QPointF(m_boundingRect.width(), bottom));
- _painter->setPen(Qt::lightGray);
- y = m_boundingRect.height() * 0.5;
- _painter->drawLine(QPointF(0, y), QPointF(m_boundingRect.width(), y));
- y -= h * 0.25;
- _painter->drawLine(QPointF(0, y), QPointF(m_boundingRect.width(), y));
- y += h * 0.5;
- _painter->drawLine(QPointF(0, y), QPointF(m_boundingRect.width(), y));
- m_points1.reserve(m_frames.size());
- m_points2.reserve(m_frames.size());
- int n = 0;
- qreal x = m_boundingRect.width() * 0.5 + std::min(halfMax, half) * INTERVAL_WIDTH, localMax = 0, localMin = 1e30;
- const qreal xCurrent = x;
- for (int i = static_cast<int>(m_frames.size()) - 1; i > -1 && x >= 0; --i, x -= INTERVAL_WIDTH, ++n)
- {
- const auto& val = m_frames[i];
- if (val.first > localMax)
- localMax = val.first;
- if (val.first < localMin)
- localMin = val.first;
- m_points1.emplace_back(x, static_cast<qreal>(val.first) + 1e-3);
- if (val.second > localMax)
- localMax = val.second;
- if (val.second < localMin)
- localMin = val.second;
- m_points2.emplace_back(x, static_cast<qreal>(val.second) + 1e-3);
- _painter->drawLine(QPointF(x, top + 1), QPointF(x, bottom - 1));
- }
- const auto delta = std::max(localMax - localMin, 1e-3);
- _painter->setPen(Qt::black);
- qreal frameTime = std::max(localMax, 1.);
- _painter->drawText(5, 0, m_boundingRect.width() - 10, fontHeight, Qt::AlignVCenter | Qt::AlignLeft, QString("Slowest %1 FPS (%2)")
- .arg(static_cast<quint64>(1e6 / frameTime)).arg(::profiler_gui::timeStringReal(EASY_GLOBALS.time_units, localMax, 1)));
- frameTime = std::max(m_frames.back().first, 1U);
- _painter->drawText(5, 0, xCurrent - 5, fontHeight, Qt::AlignVCenter | Qt::AlignRight, QString("Max current %1 FPS (%2)")
- .arg(static_cast<quint64>(1e6 / frameTime)).arg(::profiler_gui::timeStringReal(EASY_GLOBALS.time_units, m_frames.back().first, 1)));
- frameTime = std::max(m_frames.back().second, 1U);
- _painter->drawText(5, bottom, xCurrent - 5, fontHeight, Qt::AlignVCenter | Qt::AlignRight, QString("Avg current %1 FPS (%2)")
- .arg(static_cast<quint64>(1e6 / frameTime)).arg(::profiler_gui::timeStringReal(EASY_GLOBALS.time_units, m_frames.back().second, 1)));
- frameTime = std::max(localMin, 1.);
- _painter->drawText(5, bottom, m_boundingRect.width() - 10, fontHeight, Qt::AlignVCenter | Qt::AlignLeft, QString("Fastest %1 FPS (%2)")
- .arg(static_cast<quint64>(1e6 / frameTime)).arg(::profiler_gui::timeStringReal(EASY_GLOBALS.time_units, localMin, 1)));
- if (localMin < EASY_GLOBALS.frame_time && EASY_GLOBALS.frame_time < localMax)
- {
- y = fontHeight + 2 + h * (1. - (EASY_GLOBALS.frame_time - localMin) / delta);
- _painter->setPen(Qt::DashLine);
- _painter->drawLine(QPointF(0, y), QPointF(m_boundingRect.width(), y));
- }
- for (int i = 0; i < n; ++i)
- {
- auto& point1 = m_points1[i];
- point1.setY(fontHeight + 2 + h * (1. - (point1.y() - localMin) / delta));
- auto& point2 = m_points2[i];
- point2.setY(fontHeight + 2 + h * (1. - (point2.y() - localMin) / delta));
- }
- _painter->setRenderHint(QPainter::Antialiasing, true);
- QPen pen(QColor::fromRgba(0x80ff0000));
- pen.setWidth(EASY_GLOBALS.fps_widget_line_width);
- _painter->setPen(pen);
- if (n > 1)
- {
- _painter->drawPolyline(m_points1.data(), n);
- pen.setColor(QColor::fromRgba(0x800000ff));
- _painter->setPen(pen);
- _painter->drawPolyline(m_points2.data(), n);
- }
- else
- {
- _painter->drawPoint(m_points1.back());
- pen.setColor(QColor::fromRgba(0x800000ff));
- _painter->setPen(pen);
- _painter->drawPoint(m_points2.back());
- }
- const auto txtTop = ::profiler_gui::timeStringReal(EASY_GLOBALS.time_units, localMin + delta * 0.75, 1);
- const auto txtMid = ::profiler_gui::timeStringReal(EASY_GLOBALS.time_units, localMin + delta * 0.5, 1);
- const auto txtBtm = ::profiler_gui::timeStringReal(EASY_GLOBALS.time_units, localMin + delta * 0.25, 1);
- _painter->setPen(Qt::NoPen);
- _painter->setBrush(Qt::white);
- _painter->drawRect(0, top + 1, std::max({fontMetrics.width(txtTop), fontMetrics.width(txtMid), fontMetrics.width(txtBtm)}) + 8, bottom - top - 1);
- _painter->setPen(Qt::black);
- _painter->setBrush(Qt::NoBrush);
- y = m_boundingRect.height() * 0.5;
- _painter->drawText(5, y - (fontHeight >> 1), m_boundingRect.width(), fontHeight, Qt::AlignVCenter | Qt::AlignLeft, txtMid);
- y -= h * 0.25;
- _painter->drawText(5, y - (fontHeight >> 1), m_boundingRect.width(), fontHeight, Qt::AlignVCenter | Qt::AlignLeft, txtTop);
- y += h * 0.5;
- _painter->drawText(5, y - (fontHeight >> 1), m_boundingRect.width(), fontHeight, Qt::AlignVCenter | Qt::AlignLeft, txtBtm);
- _painter->restore();
- m_points1.clear();
- m_points2.clear();
- }
- //////////////////////////////////////////////////////////////////////////
- void EasyFPSGraphicsItem::clear()
- {
- m_frames.clear();
- }
- void EasyFPSGraphicsItem::addPoint(uint32_t _maxFrameTime, uint32_t _avgFrameTime)
- {
- m_frames.emplace_back(_maxFrameTime, _avgFrameTime);
- if (static_cast<int>(m_frames.size()) > EASY_GLOBALS.max_fps_history)
- m_frames.pop_front();
- }
- //////////////////////////////////////////////////////////////////////////
- EasyFrameRateViewer::EasyFrameRateViewer(QWidget* _parent) : Parent(_parent), m_fpsItem(nullptr)
- {
- setCacheMode(QGraphicsView::CacheNone);
- //setViewportUpdateMode(QGraphicsView::BoundingRectViewportUpdate);
- setViewportUpdateMode(QGraphicsView::FullViewportUpdate);
- setOptimizationFlag(QGraphicsView::DontSavePainterState, true);
- setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
- setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
- setContentsMargins(0, 0, 0, 0);
- setScene(new QGraphicsScene(this));
- scene()->setSceneRect(0, 0, 50, 50);
- m_fpsItem = new EasyFPSGraphicsItem();
- m_fpsItem->setPos(0, 0);
- m_fpsItem->setBoundingRect(0, 0, 50, 50);
- scene()->addItem(m_fpsItem);
- centerOn(0, 0);
- // Dirty hack for QDockWidget stupid initial size policy :(
- setFixedHeight(10); // Set very small height to enable appropriate minimum height on the application startup
- QTimer::singleShot(100, [this]()
- {
- // Now set appropriate minimum height
- setMinimumHeight((QFontMetrics(scene()->font()).height() + 3) * 6);
- setMaximumHeight(minimumHeight() * 20);
- });
- }
- EasyFrameRateViewer::~EasyFrameRateViewer()
- {
- }
- void EasyFrameRateViewer::clear()
- {
- m_fpsItem->clear();
- scene()->update();
- }
- void EasyFrameRateViewer::addPoint(uint32_t _maxFrameTime, uint32_t _avgFrameTime)
- {
- m_fpsItem->addPoint(_maxFrameTime, _avgFrameTime);
- scene()->update();
- }
- void EasyFrameRateViewer::resizeEvent(QResizeEvent* _event)
- {
- Parent::resizeEvent(_event);
- auto size = _event->size();
- m_fpsItem->setBoundingRect(0, 0, size.width(), size.height());
- scene()->setSceneRect(m_fpsItem->boundingRect());
- scene()->update();
- }
- void EasyFrameRateViewer::hideEvent(QHideEvent* _event)
- {
- Parent::hideEvent(_event);
- EASY_GLOBALS.fps_enabled = isVisible();
- clear();
- }
- void EasyFrameRateViewer::showEvent(QShowEvent* _event)
- {
- Parent::showEvent(_event);
- EASY_GLOBALS.fps_enabled = isVisible();
- clear();
- }
- void EasyFrameRateViewer::contextMenuEvent(QContextMenuEvent* _event)
- {
- QMenu menu;
- QAction* action = nullptr;
- action = menu.addAction(QIcon(":/Delete"), "Clear");
- connect(action, &QAction::triggered, [this](bool){ clear(); });
- action = menu.addAction("Close");
- connect(action, &QAction::triggered, [this](bool){ parentWidget()->hide(); });
- menu.exec(QCursor::pos());
- _event->accept();
- }
- //////////////////////////////////////////////////////////////////////////
|