/* Copyright (c) 2013-2015 Jeffrey Pfau * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "DisplayQt.h" #include extern "C" { #include "core/core.h" #include "core/thread.h" } using namespace QGBA; DisplayQt::DisplayQt(QWidget* parent) : Display(parent) , m_isDrawing(false) , m_backing(nullptr) { } void DisplayQt::startDrawing(mCoreThread* context) { context->core->desiredVideoDimensions(context->core, &m_width, &m_height); m_isDrawing = true; } void DisplayQt::lockAspectRatio(bool lock) { Display::lockAspectRatio(lock); update(); } void DisplayQt::filter(bool filter) { Display::filter(filter); update(); } void DisplayQt::framePosted(const uint32_t* buffer) { update(); if (const_cast(m_backing).bits() == reinterpret_cast(buffer)) { return; } #ifdef COLOR_16_BIT #ifdef COLOR_5_6_5 m_backing = QImage(reinterpret_cast(buffer), m_width, m_height, QImage::Format_RGB16); #else m_backing = QImage(reinterpret_cast(buffer), m_width, m_height, QImage::Format_RGB555); #endif #else m_backing = QImage(reinterpret_cast(buffer), m_width, m_height, QImage::Format_RGB32); #endif } void DisplayQt::paintEvent(QPaintEvent*) { QPainter painter(this); painter.fillRect(QRect(QPoint(), size()), Qt::black); if (isFiltered()) { painter.setRenderHint(QPainter::SmoothPixmapTransform); } QSize s = size(); QSize ds = s; if (isAspectRatioLocked()) { if (s.width() * m_height > s.height() * m_width) { ds.setWidth(s.height() * m_width / m_height); } else if (s.width() * m_height < s.height() * m_width) { ds.setHeight(s.width() * m_height / m_width); } } QPoint origin = QPoint((s.width() - ds.width()) / 2, (s.height() - ds.height()) / 2); QRect full(origin, ds); #ifdef COLOR_5_6_5 painter.drawImage(full, m_backing, QRect(0, 0, m_width, m_height)); #else painter.drawImage(full, m_backing.rgbSwapped(), QRect(0, 0, m_width, m_height)); #endif messagePainter()->paint(&painter); }