all repos — mgba @ f6f3cb5d3d8b91dd603772ea0eebb2513562a0cf

mGBA Game Boy Advance Emulator

src/platform/qt/TilePainter.cpp (view raw)

 1/* Copyright (c) 2013-2016 Jeffrey Pfau
 2 *
 3 * This Source Code Form is subject to the terms of the Mozilla Public
 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 6#include "TilePainter.h"
 7
 8#include <QImage>
 9#include <QMouseEvent>
10#include <QPainter>
11
12using namespace QGBA;
13
14TilePainter::TilePainter(QWidget* parent)
15	: QWidget(parent)
16{
17	m_backing.fill(Qt::transparent);
18	resize(256, 768);
19	setTileCount(3072);
20}
21
22void TilePainter::paintEvent(QPaintEvent* event) {
23	QPainter painter(this);
24	painter.drawPixmap(QPoint(), m_backing);
25}
26
27void TilePainter::resizeEvent(QResizeEvent* event) {
28	int w = width() / m_size;
29	int calculatedHeight = (m_tileCount + w - 1) * m_size / w;
30	calculatedHeight -= calculatedHeight % m_size;
31	if (width() / m_size != m_backing.width() / m_size || m_backing.height() != calculatedHeight) {
32		m_backing = QPixmap(width(), calculatedHeight);
33		m_backing.fill(Qt::transparent);
34	}
35}
36
37void TilePainter::mousePressEvent(QMouseEvent* event) {
38	int x = event->x() / m_size;
39	int y = event->y() / m_size;
40	emit indexPressed(y * (width() / m_size) + x);
41}
42
43void TilePainter::setTile(int index, const uint16_t* data) {
44	QPainter painter(&m_backing);
45	int w = width() / m_size;
46	int x = index % w;
47	int y = index / w;
48	QRect r(x * m_size, y * m_size, m_size, m_size);
49	QImage tile(reinterpret_cast<const uchar*>(data), 8, 8, QImage::Format_RGB555);
50	painter.drawImage(r, tile.rgbSwapped());
51	update(r);
52}
53
54void TilePainter::setTileCount(int tiles) {
55	m_tileCount = tiles;
56	if (sizePolicy().horizontalPolicy() != QSizePolicy::Fixed) {
57		// Only manage the size ourselves if we don't appear to have something else managing it
58		int w = width() / m_size;
59		int h = (tiles + w - 1) * m_size / w;
60		setMinimumSize(m_size, h - (h % m_size));
61		resizeEvent(nullptr);
62	}
63}
64
65void TilePainter::setTileMagnification(int mag) {
66	m_size = mag * 8;
67	setTileCount(m_tileCount);
68}