1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
/*
Copyright 2016-2023 melonDS team
This file is part of melonDS.
melonDS is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation, either version 3 of the License, or (at your option)
any later version.
melonDS is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with melonDS. If not, see http://www.gnu.org/licenses/.
*/
#include "ROMInfoDialog.h"
#include "ui_ROMInfoDialog.h"
#include <QFileDialog>
#include "gif-h/gif.h"
#include "NDS.h"
#include "NDSCart.h"
#include "Platform.h"
#include "Config.h"
using namespace melonDS;
QString IntToHex(u64 num)
{
return ("0x" + QString::number(num, 16).toUpper());
}
QString QStringBytes(u64 num)
{
return (QString::number(num) + " bytes");
}
ROMInfoDialog* ROMInfoDialog::currentDlg = nullptr;
ROMInfoDialog::ROMInfoDialog(QWidget* parent, const melonDS::NDSCart::CartCommon& rom) : QDialog(parent), ui(new Ui::ROMInfoDialog)
{
ui->setupUi(this);
setAttribute(Qt::WA_DeleteOnClose);
const NDSBanner* banner = rom.Banner();
const NDSHeader& header = rom.GetHeader();
u32 iconData[32 * 32];
ROMManager::ROMIcon(banner->Icon, banner->Palette, iconData);
iconImage = QImage(reinterpret_cast<u8*>(iconData), 32, 32, QImage::Format_RGBA8888).copy();
ui->iconImage->setPixmap(QPixmap::fromImage(iconImage));
if (banner->Version == 0x103)
{
ui->saveAnimatedIconButton->setEnabled(true);
ROMManager::AnimatedROMIcon(banner->DSiIcon, banner->DSiPalette, banner->DSiSequence, animatedIconData, animatedSequence);
for (u32* image: animatedIconData)
{
if (!image)
break;
animatedIconImages.push_back(QPixmap::fromImage(QImage(reinterpret_cast<u8*>(image), 32, 32, QImage::Format_RGBA8888).copy()));
}
iconTimeline = new QTimeLine(animatedSequence.size() / 60 * 1000, this);
iconTimeline->setFrameRange(0, animatedSequence.size() - 1);
iconTimeline->setLoopCount(0);
iconTimeline->setEasingCurve(QEasingCurve::Linear);
connect(iconTimeline, &QTimeLine::frameChanged, this, &ROMInfoDialog::iconSetFrame);
iconTimeline->start();
}
else
{
ui->dsiIconImage->setPixmap(QPixmap::fromImage(iconImage));
}
ui->iconTitle->setText(QString::fromUtf16(banner->EnglishTitle));
ui->japaneseTitle->setText(QString::fromUtf16(banner->JapaneseTitle));
ui->englishTitle->setText(QString::fromUtf16(banner->EnglishTitle));
ui->frenchTitle->setText(QString::fromUtf16(banner->FrenchTitle));
ui->germanTitle->setText(QString::fromUtf16(banner->GermanTitle));
ui->italianTitle->setText(QString::fromUtf16(banner->ItalianTitle));
ui->spanishTitle->setText(QString::fromUtf16(banner->SpanishTitle));
if (banner->Version > 1)
ui->chineseTitle->setText(QString::fromUtf16(banner->ChineseTitle));
else
ui->chineseTitle->setText("None");
if (banner->Version > 2)
ui->koreanTitle->setText(QString::fromUtf16(banner->KoreanTitle));
else
ui->koreanTitle->setText("None");
ui->gameTitle->setText(QString::fromLatin1(header.GameTitle, 12));
ui->gameCode->setText(QString::fromLatin1(header.GameCode, 4));
ui->makerCode->setText(QString::fromLatin1(header.MakerCode, 2));
ui->cardSize->setText(QString::number(128 << header.CardSize) + " KB");
ui->arm9RomOffset->setText(IntToHex(header.ARM9ROMOffset));
ui->arm9EntryAddress->setText(IntToHex(header.ARM9EntryAddress));
ui->arm9RamAddress->setText(IntToHex(header.ARM9RAMAddress));
ui->arm9Size->setText(QStringBytes(header.ARM9Size));
ui->arm7RomOffset->setText(IntToHex(header.ARM7ROMOffset));
ui->arm7EntryAddress->setText(IntToHex(header.ARM7EntryAddress));
ui->arm7RamAddress->setText(IntToHex(header.ARM7RAMAddress));
ui->arm7Size->setText(QStringBytes(header.ARM7Size));
ui->fntOffset->setText(IntToHex(header.FNTOffset));
ui->fntSize->setText(QStringBytes(header.FNTSize));
ui->fatOffset->setText(IntToHex(header.FATOffset));
ui->fatSize->setText(QStringBytes(header.FATSize));
}
ROMInfoDialog::~ROMInfoDialog()
{
delete ui;
}
void ROMInfoDialog::done(int r)
{
QDialog::done(r);
closeDlg();
}
void ROMInfoDialog::on_saveIconButton_clicked()
{
QString filename = QFileDialog::getSaveFileName(this,
"Save Icon",
QString::fromStdString(Config::LastROMFolder),
"PNG Images (*.png)");
if (filename.isEmpty())
return;
iconImage.save(filename, "PNG");
}
void ROMInfoDialog::on_saveAnimatedIconButton_clicked()
{
QString filename = QFileDialog::getSaveFileName(this,
"Save Animated Icon",
QString::fromStdString(Config::LastROMFolder),
"GIF Images (*.gif)");
if (filename.isEmpty())
return;
GifWriter writer;
// The GIF format only supports delays of 0.01 seconds, so 0.0166... (60fps)
// is rounded up to 0.02 (50fps)
GifBegin(&writer, filename.toStdString().c_str(), 32, 32, 2);
for (int i: animatedSequence)
{
if (animatedIconData[i] == 0)
break;
GifWriteFrame(&writer, reinterpret_cast<u8*>(animatedIconData[i]), 32, 32, 2);
}
GifEnd(&writer);
}
void ROMInfoDialog::iconSetFrame(int frame)
{
ui->dsiIconImage->setPixmap(animatedIconImages[animatedSequence[frame]]);
}
|