mirror of
https://github.com/Luca1991/NDSFactory.git
synced 2025-07-08 21:20:13 +02:00
191 lines
4.5 KiB
C++
191 lines
4.5 KiB
C++
#include <QFileDialog>
|
|
#include <QMessageBox>
|
|
#include "./../../mainwindow.h"
|
|
#include "./../../ui_mainwindow.h"
|
|
#include "./../../utils/filepicker.h"
|
|
#include "../commons/headernames.h"
|
|
|
|
|
|
void MainWindow::on_packerLoadHeaderBtn_clicked()
|
|
{
|
|
NDSHeader *pNDSHeader;
|
|
|
|
QString headerPath = QFileDialog::getOpenFileName(
|
|
Q_NULLPTR,
|
|
"NDS Header",
|
|
QDir::currentPath(),
|
|
"NDS Header (*.bin)");
|
|
|
|
if (headerPath.isNull()) return;
|
|
|
|
if (ndsFactory.loadRomHeader(headerPath.toStdString(), romHeader).result)
|
|
{
|
|
pNDSHeader = reinterpret_cast<NDSHeader*>(romHeader.data());
|
|
populatePackerSectionHeader(pNDSHeader);
|
|
enableCalcCrcButton();
|
|
enableBuildRomButton();
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_packerLoadArm9BinBtn_clicked()
|
|
{
|
|
QString arm9BinPath = QFileDialog::getOpenFileName(
|
|
Q_NULLPTR,
|
|
"NDS Arm9Bin",
|
|
"",
|
|
"NDS Arm9Bin (*.bin)");
|
|
|
|
if(!arm9BinPath.isNull())
|
|
{
|
|
ui->loadedArm9BinPathEdt->setText(arm9BinPath.toUtf8());
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_packerLoadArm7BinBtn_clicked()
|
|
{
|
|
QString arm7BinPath = QFileDialog::getOpenFileName(
|
|
Q_NULLPTR,
|
|
"NDS Arm7Bin",
|
|
"",
|
|
"NDS Arm7Bin (*.bin)");
|
|
|
|
if(!arm7BinPath.isNull())
|
|
{
|
|
ui->loadedArm7BinPathEdt->setText(arm7BinPath.toUtf8());
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_packerLoadFntBtn_clicked()
|
|
{
|
|
QString fntPath = QFileDialog::getOpenFileName(
|
|
Q_NULLPTR,
|
|
"NDS Fnt",
|
|
"",
|
|
"NDS Fnt (*.bin)");
|
|
|
|
if(!fntPath.isNull())
|
|
{
|
|
ui->loadedFntPathEdt->setText(fntPath.toUtf8());
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_packerLoadFatBtn_clicked()
|
|
{
|
|
QString fatPath = QFileDialog::getOpenFileName(
|
|
Q_NULLPTR,
|
|
"NDS Fat",
|
|
"",
|
|
"NDS Fat (*.bin)");
|
|
|
|
if(!fatPath.isNull())
|
|
{
|
|
ui->loadedFatPathEdt->setText(fatPath.toUtf8());
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_packerLoadArm9OverlayBtn_clicked()
|
|
{
|
|
QString arm9OverlayPath = QFileDialog::getOpenFileName(
|
|
Q_NULLPTR,
|
|
"NDS Arm9Overlay",
|
|
"",
|
|
"NDS A9OVR (*.bin)");
|
|
|
|
if( !arm9OverlayPath.isNull() )
|
|
{
|
|
ui->loadedArm9OverlayPathEdt->setText(arm9OverlayPath.toUtf8());
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_packerLoadArm9OverlayFilesBtn_clicked()
|
|
{
|
|
QString arm9OverlayFilesPath = QFileDialog::getOpenFileName(
|
|
Q_NULLPTR,
|
|
"NDS Arm9Overlay Data",
|
|
"",
|
|
"NDS A9OVR_DATA (*.bin)");
|
|
|
|
if(!arm9OverlayFilesPath.isNull())
|
|
{
|
|
ui->loadedArm9OverlayFilesPathEdt->setText(arm9OverlayFilesPath.toUtf8());
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_packerLoadArm7OverlayBtn_clicked()
|
|
{
|
|
QString arm7OverlayPath = QFileDialog::getOpenFileName(
|
|
Q_NULLPTR,
|
|
"NDS Arm7Overlay",
|
|
"",
|
|
"NDS A7OVR (*.bin)");
|
|
|
|
if(!arm7OverlayPath.isNull())
|
|
{
|
|
ui->loadedArm7OverlayPathEdt->setText(arm7OverlayPath.toUtf8());
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_packerLoadArm7OverlayFilesBtn_clicked()
|
|
{
|
|
QString arm7OverlayFilesPath = QFileDialog::getOpenFileName(
|
|
Q_NULLPTR,
|
|
"NDS Arm7Overlay Data",
|
|
"",
|
|
"NDS A7OVR_DATA (*.bin)");
|
|
|
|
if(!arm7OverlayFilesPath.isNull())
|
|
{
|
|
ui->loadedArm7OverlayFilesPathEdt->setText(arm7OverlayFilesPath.toUtf8());
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_packerLoadIconTitleBtn_clicked()
|
|
{
|
|
QString iconTitlePath = QFileDialog::getOpenFileName(
|
|
Q_NULLPTR,
|
|
"NDS IconTitleLogo",
|
|
"",
|
|
"NDS ITL (*.bin)");
|
|
|
|
if(!iconTitlePath.isNull())
|
|
{
|
|
ui->loadedIconTitlePathEdt->setText(iconTitlePath.toUtf8());
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_packerLoadFatFilesBtn_clicked()
|
|
{
|
|
QString fatFilesPath = QFileDialog::getOpenFileName(
|
|
Q_NULLPTR,
|
|
"NDS Fat Data",
|
|
"",
|
|
"NDS FAT_DATA (*.bin)");
|
|
|
|
if(!fatFilesPath.isNull())
|
|
{
|
|
ui->loadedFatFilesPathEdt->setText(fatFilesPath.toUtf8());
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_packerBuildNDSRomBtn_clicked()
|
|
{
|
|
ui->packerBuildNDSRomBtn->setEnabled(false);
|
|
|
|
QString dirPath = customSaveFileDialog("NDS Rom",
|
|
"rom.nds",
|
|
"NDS ROM (*.nds)");
|
|
|
|
if (!dirPath.isNull())
|
|
{
|
|
NFResult nfResult = writeEverything(dirPath.toStdString());
|
|
nfResult.result? QMessageBox::information(this, tr("NDSFactory"), tr("Creation completed!"))
|
|
: QMessageBox::critical(this, tr("NDSFactory"), nfResult.message.c_str());
|
|
}
|
|
ui->packerBuildNDSRomBtn->setEnabled(true);
|
|
}
|
|
|
|
void MainWindow::on_packerCalcHeaderCrcBtn_clicked()
|
|
{
|
|
calcHeaderCrc16();
|
|
}
|