2016-09-07 04:50:47 +01:00
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "ui_mainwindow.h"
|
|
|
|
#include "project.h"
|
2017-11-28 04:46:27 +00:00
|
|
|
#include "editor.h"
|
|
|
|
#include "objectpropertiesframe.h"
|
|
|
|
#include "ui_objectpropertiesframe.h"
|
2016-09-07 04:50:47 +01:00
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QFileDialog>
|
|
|
|
#include <QStandardItemModel>
|
|
|
|
#include <QShortcut>
|
|
|
|
#include <QSettings>
|
2017-11-28 04:46:27 +00:00
|
|
|
#include <QSpinBox>
|
|
|
|
#include <QTextEdit>
|
|
|
|
#include <QSpacerItem>
|
|
|
|
#include <QFont>
|
|
|
|
#include <QScrollBar>
|
2018-07-09 23:40:15 +01:00
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QDialogButtonBox>
|
2016-09-07 04:50:47 +01:00
|
|
|
|
|
|
|
MainWindow::MainWindow(QWidget *parent) :
|
|
|
|
QMainWindow(parent),
|
|
|
|
ui(new Ui::MainWindow)
|
|
|
|
{
|
|
|
|
QCoreApplication::setOrganizationName("pret");
|
|
|
|
QCoreApplication::setApplicationName("pretmap");
|
|
|
|
|
2017-11-28 04:46:27 +00:00
|
|
|
ui->setupUi(this);
|
2018-07-06 17:08:20 +01:00
|
|
|
|
|
|
|
ui->newEventToolButton->initButton();
|
|
|
|
connect(ui->newEventToolButton, SIGNAL(newEventAdded(QString)), this, SLOT(addNewEvent(QString)));
|
|
|
|
|
2017-11-28 04:46:27 +00:00
|
|
|
new QShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_Z), this, SLOT(redo()));
|
|
|
|
|
2018-03-09 04:34:04 +00:00
|
|
|
editor = new Editor(ui);
|
2017-11-28 04:46:27 +00:00
|
|
|
connect(editor, SIGNAL(objectsChanged()), this, SLOT(updateSelectedObjects()));
|
|
|
|
connect(editor, SIGNAL(selectedObjectsChanged()), this, SLOT(updateSelectedObjects()));
|
2018-03-11 21:20:52 +00:00
|
|
|
connect(editor, SIGNAL(loadMapRequested(QString, QString)), this, SLOT(onLoadMapRequested(QString, QString)));
|
2018-07-08 17:17:43 +01:00
|
|
|
connect(editor, SIGNAL(tilesetChanged(QString)), this, SLOT(onTilesetChanged(QString)));
|
2016-09-07 04:50:47 +01:00
|
|
|
|
2017-11-28 04:46:27 +00:00
|
|
|
on_toolButton_Paint_clicked();
|
2016-09-07 04:50:47 +01:00
|
|
|
|
|
|
|
QSettings settings;
|
|
|
|
QString key = "recent_projects";
|
|
|
|
if (settings.contains(key)) {
|
|
|
|
QString default_dir = settings.value(key).toStringList().last();
|
2017-11-28 04:46:27 +00:00
|
|
|
if (!default_dir.isNull()) {
|
|
|
|
qDebug() << QString("default_dir: '%1'").arg(default_dir);
|
|
|
|
openProject(default_dir);
|
|
|
|
}
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
}
|
|
|
|
|
2018-03-04 08:09:34 +00:00
|
|
|
void MainWindow::setStatusBarMessage(QString message, int timeout/* = 0*/) {
|
|
|
|
statusBar()->showMessage(message, timeout);
|
|
|
|
}
|
|
|
|
|
2016-09-07 04:50:47 +01:00
|
|
|
void MainWindow::openProject(QString dir) {
|
2017-11-28 04:46:27 +00:00
|
|
|
if (dir.isNull()) {
|
|
|
|
return;
|
|
|
|
}
|
2018-03-04 08:09:34 +00:00
|
|
|
|
|
|
|
setStatusBarMessage(QString("Opening project %1").arg(dir));
|
|
|
|
|
2017-11-28 04:46:27 +00:00
|
|
|
bool already_open = (
|
|
|
|
(editor != NULL && editor != nullptr)
|
|
|
|
&& (editor->project != NULL && editor->project != nullptr)
|
|
|
|
&& (editor->project->root == dir)
|
|
|
|
);
|
2016-09-07 04:50:47 +01:00
|
|
|
if (!already_open) {
|
|
|
|
editor->project = new Project;
|
|
|
|
editor->project->root = dir;
|
2017-11-28 04:46:27 +00:00
|
|
|
setWindowTitle(editor->project->getProjectTitle() + " - pretmap");
|
2018-02-16 02:38:19 +00:00
|
|
|
loadDataStructures();
|
2016-09-07 04:50:47 +01:00
|
|
|
populateMapList();
|
|
|
|
setMap(getDefaultMap());
|
|
|
|
} else {
|
2017-11-28 04:46:27 +00:00
|
|
|
setWindowTitle(editor->project->getProjectTitle() + " - pretmap");
|
2018-02-16 02:38:19 +00:00
|
|
|
loadDataStructures();
|
2016-09-07 04:50:47 +01:00
|
|
|
populateMapList();
|
|
|
|
}
|
2018-03-04 08:09:34 +00:00
|
|
|
|
|
|
|
setStatusBarMessage(QString("Opened project %1").arg(dir));
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MainWindow::getDefaultMap() {
|
2017-11-28 04:46:27 +00:00
|
|
|
if (editor && editor->project) {
|
2018-02-18 04:41:15 +00:00
|
|
|
QList<QStringList> names = editor->project->groupedMapNames;
|
|
|
|
if (!names.isEmpty()) {
|
2017-11-28 04:46:27 +00:00
|
|
|
QSettings settings;
|
|
|
|
QString key = "project:" + editor->project->root;
|
|
|
|
if (settings.contains(key)) {
|
|
|
|
QMap<QString, QVariant> qmap = settings.value(key).toMap();
|
|
|
|
if (qmap.contains("recent_map")) {
|
|
|
|
QString map_name = qmap.value("recent_map").toString();
|
2018-02-18 04:41:15 +00:00
|
|
|
for (int i = 0; i < names.length(); i++) {
|
|
|
|
if (names.value(i).contains(map_name)) {
|
2017-11-28 04:46:27 +00:00
|
|
|
return map_name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Failing that, just get the first map in the list.
|
2018-02-18 04:41:15 +00:00
|
|
|
for (int i = 0; i < names.length(); i++) {
|
|
|
|
QStringList list = names.value(i);
|
|
|
|
if (list.length()) {
|
|
|
|
return list.value(0);
|
2017-11-28 04:46:27 +00:00
|
|
|
}
|
|
|
|
}
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
}
|
2017-11-28 04:46:27 +00:00
|
|
|
return QString();
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString MainWindow::getExistingDirectory(QString dir) {
|
|
|
|
return QFileDialog::getExistingDirectory(this, "Open Directory", dir, QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_action_Open_Project_triggered()
|
|
|
|
{
|
|
|
|
QSettings settings;
|
|
|
|
QString key = "recent_projects";
|
|
|
|
QString recent = ".";
|
|
|
|
if (settings.contains(key)) {
|
|
|
|
recent = settings.value(key).toStringList().last();
|
|
|
|
}
|
|
|
|
QString dir = getExistingDirectory(recent);
|
|
|
|
if (!dir.isEmpty()) {
|
|
|
|
QStringList recents;
|
|
|
|
if (settings.contains(key)) {
|
|
|
|
recents = settings.value(key).toStringList();
|
|
|
|
}
|
|
|
|
recents.removeAll(dir);
|
|
|
|
recents.append(dir);
|
|
|
|
settings.setValue(key, recents);
|
|
|
|
|
|
|
|
openProject(dir);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::setMap(QString map_name) {
|
2017-11-28 04:46:27 +00:00
|
|
|
qDebug() << QString("setMap(%1)").arg(map_name);
|
2016-09-07 04:50:47 +01:00
|
|
|
if (map_name.isNull()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
editor->setMap(map_name);
|
2018-07-09 23:40:34 +01:00
|
|
|
redrawMapScene();
|
|
|
|
displayMapProperties();
|
|
|
|
|
|
|
|
setWindowTitle(map_name + " - " + editor->project->getProjectTitle() + " - pretmap");
|
|
|
|
|
|
|
|
connect(editor->map, SIGNAL(mapChanged(Map*)), this, SLOT(onMapChanged(Map *)));
|
|
|
|
connect(editor->map, SIGNAL(mapNeedsRedrawing(Map*)), this, SLOT(onMapNeedsRedrawing(Map *)));
|
|
|
|
connect(editor->map, SIGNAL(statusBarMessage(QString)), this, SLOT(setStatusBarMessage(QString)));
|
2016-09-07 04:50:47 +01:00
|
|
|
|
2018-07-09 23:40:34 +01:00
|
|
|
setRecentMap(map_name);
|
|
|
|
updateMapList();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::redrawMapScene()
|
|
|
|
{
|
|
|
|
editor->displayMap();
|
2018-03-08 04:22:18 +00:00
|
|
|
on_tabWidget_currentChanged(ui->tabWidget->currentIndex());
|
2016-09-07 04:50:47 +01:00
|
|
|
|
|
|
|
ui->graphicsView_Map->setScene(editor->scene);
|
|
|
|
ui->graphicsView_Map->setSceneRect(editor->scene->sceneRect());
|
|
|
|
ui->graphicsView_Map->setFixedSize(editor->scene->width() + 2, editor->scene->height() + 2);
|
|
|
|
|
|
|
|
ui->graphicsView_Objects_Map->setScene(editor->scene);
|
|
|
|
ui->graphicsView_Objects_Map->setSceneRect(editor->scene->sceneRect());
|
|
|
|
ui->graphicsView_Objects_Map->setFixedSize(editor->scene->width() + 2, editor->scene->height() + 2);
|
2017-11-28 04:46:27 +00:00
|
|
|
ui->graphicsView_Objects_Map->editor = editor;
|
2016-09-07 04:50:47 +01:00
|
|
|
|
2018-03-08 04:22:18 +00:00
|
|
|
ui->graphicsView_Connections->setScene(editor->scene);
|
2018-03-09 06:35:16 +00:00
|
|
|
ui->graphicsView_Connections->setSceneRect(editor->scene->sceneRect());
|
|
|
|
ui->graphicsView_Connections->setFixedSize(editor->scene->width() + 2, editor->scene->height() + 2);
|
2018-03-08 04:22:18 +00:00
|
|
|
|
2016-09-07 04:50:47 +01:00
|
|
|
ui->graphicsView_Metatiles->setScene(editor->scene_metatiles);
|
|
|
|
//ui->graphicsView_Metatiles->setSceneRect(editor->scene_metatiles->sceneRect());
|
|
|
|
ui->graphicsView_Metatiles->setFixedSize(editor->metatiles_item->pixmap().width() + 2, editor->metatiles_item->pixmap().height() + 2);
|
2018-07-07 23:32:54 +01:00
|
|
|
|
|
|
|
ui->graphicsView_BorderMetatile->setScene(editor->scene_selected_border_metatiles);
|
|
|
|
ui->graphicsView_BorderMetatile->setFixedSize(editor->selected_border_metatiles_item->pixmap().width() + 2, editor->selected_border_metatiles_item->pixmap().height() + 2);
|
2016-09-07 04:50:47 +01:00
|
|
|
|
|
|
|
ui->graphicsView_Collision->setScene(editor->scene_collision_metatiles);
|
|
|
|
//ui->graphicsView_Collision->setSceneRect(editor->scene_collision_metatiles->sceneRect());
|
|
|
|
ui->graphicsView_Collision->setFixedSize(editor->collision_metatiles_item->pixmap().width() + 2, editor->collision_metatiles_item->pixmap().height() + 2);
|
|
|
|
|
|
|
|
ui->graphicsView_Elevation->setScene(editor->scene_elevation_metatiles);
|
|
|
|
//ui->graphicsView_Elevation->setSceneRect(editor->scene_elevation_metatiles->sceneRect());
|
|
|
|
ui->graphicsView_Elevation->setFixedSize(editor->elevation_metatiles_item->pixmap().width() + 2, editor->elevation_metatiles_item->pixmap().height() + 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::setRecentMap(QString map_name) {
|
|
|
|
QSettings settings;
|
|
|
|
QString key = "project:" + editor->project->root;
|
|
|
|
QMap<QString, QVariant> qmap;
|
|
|
|
if (settings.contains(key)) {
|
|
|
|
qmap = settings.value(key).toMap();
|
|
|
|
}
|
|
|
|
qmap.insert("recent_map", map_name);
|
|
|
|
settings.setValue(key, qmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::displayMapProperties() {
|
2017-11-28 04:46:27 +00:00
|
|
|
ui->comboBox_Song->clear();
|
|
|
|
ui->comboBox_Location->clear();
|
|
|
|
ui->comboBox_Visibility->clear();
|
|
|
|
ui->comboBox_Weather->clear();
|
|
|
|
ui->comboBox_Type->clear();
|
|
|
|
ui->comboBox_BattleScene->clear();
|
2018-07-08 17:17:43 +01:00
|
|
|
ui->comboBox_PrimaryTileset->clear();
|
|
|
|
ui->comboBox_SecondaryTileset->clear();
|
2017-11-28 04:46:27 +00:00
|
|
|
ui->checkBox_ShowLocation->setChecked(false);
|
|
|
|
if (!editor || !editor->map || !editor->project) {
|
|
|
|
ui->frame_3->setEnabled(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ui->frame_3->setEnabled(true);
|
2016-09-07 04:50:47 +01:00
|
|
|
Map *map = editor->map;
|
|
|
|
Project *project = editor->project;
|
|
|
|
|
|
|
|
QStringList songs = project->getSongNames();
|
|
|
|
ui->comboBox_Song->addItems(songs);
|
2018-03-03 20:20:59 +00:00
|
|
|
ui->comboBox_Song->setCurrentText(map->song);
|
2016-09-07 04:50:47 +01:00
|
|
|
|
|
|
|
ui->comboBox_Location->addItems(project->getLocations());
|
|
|
|
ui->comboBox_Location->setCurrentText(map->location);
|
|
|
|
|
2018-07-08 16:29:03 +01:00
|
|
|
QMap<QString, QStringList> tilesets = project->getTilesets();
|
|
|
|
ui->comboBox_PrimaryTileset->addItems(tilesets.value("primary"));
|
|
|
|
ui->comboBox_PrimaryTileset->setCurrentText(map->layout->tileset_primary_label);
|
|
|
|
ui->comboBox_SecondaryTileset->addItems(tilesets.value("secondary"));
|
|
|
|
ui->comboBox_SecondaryTileset->setCurrentText(map->layout->tileset_secondary_label);
|
|
|
|
|
2016-09-07 04:50:47 +01:00
|
|
|
ui->comboBox_Visibility->addItems(project->getVisibilities());
|
|
|
|
ui->comboBox_Visibility->setCurrentText(map->visibility);
|
|
|
|
|
|
|
|
ui->comboBox_Weather->addItems(project->getWeathers());
|
|
|
|
ui->comboBox_Weather->setCurrentText(map->weather);
|
|
|
|
|
|
|
|
ui->comboBox_Type->addItems(project->getMapTypes());
|
|
|
|
ui->comboBox_Type->setCurrentText(map->type);
|
|
|
|
|
|
|
|
ui->comboBox_BattleScene->addItems(project->getBattleScenes());
|
|
|
|
ui->comboBox_BattleScene->setCurrentText(map->battle_scene);
|
|
|
|
|
|
|
|
ui->checkBox_ShowLocation->setChecked(map->show_location.toInt() > 0 || map->show_location == "TRUE");
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_comboBox_Song_activated(const QString &song)
|
|
|
|
{
|
2017-11-28 04:46:27 +00:00
|
|
|
if (editor && editor->map) {
|
|
|
|
editor->map->song = song;
|
|
|
|
}
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_comboBox_Location_activated(const QString &location)
|
|
|
|
{
|
2017-11-28 04:46:27 +00:00
|
|
|
if (editor && editor->map) {
|
|
|
|
editor->map->location = location;
|
|
|
|
}
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_comboBox_Visibility_activated(const QString &visibility)
|
|
|
|
{
|
2017-11-28 04:46:27 +00:00
|
|
|
if (editor && editor->map) {
|
|
|
|
editor->map->visibility = visibility;
|
|
|
|
}
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_comboBox_Weather_activated(const QString &weather)
|
|
|
|
{
|
2017-11-28 04:46:27 +00:00
|
|
|
if (editor && editor->map) {
|
|
|
|
editor->map->weather = weather;
|
|
|
|
}
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_comboBox_Type_activated(const QString &type)
|
|
|
|
{
|
2017-11-28 04:46:27 +00:00
|
|
|
if (editor && editor->map) {
|
|
|
|
editor->map->type = type;
|
|
|
|
}
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_comboBox_BattleScene_activated(const QString &battle_scene)
|
|
|
|
{
|
2017-11-28 04:46:27 +00:00
|
|
|
if (editor && editor->map) {
|
|
|
|
editor->map->battle_scene = battle_scene;
|
|
|
|
}
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_checkBox_ShowLocation_clicked(bool checked)
|
|
|
|
{
|
2017-11-28 04:46:27 +00:00
|
|
|
if (editor && editor->map) {
|
|
|
|
if (checked) {
|
|
|
|
editor->map->show_location = "TRUE";
|
|
|
|
} else {
|
|
|
|
editor->map->show_location = "FALSE";
|
|
|
|
}
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-16 02:38:19 +00:00
|
|
|
void MainWindow::loadDataStructures() {
|
|
|
|
Project *project = editor->project;
|
2018-06-20 23:43:20 +01:00
|
|
|
project->readMapLayoutsTable();
|
|
|
|
project->readAllMapLayouts();
|
2018-03-03 03:56:23 +00:00
|
|
|
project->readItemNames();
|
2018-03-03 05:54:08 +00:00
|
|
|
project->readFlagNames();
|
|
|
|
project->readVarNames();
|
2018-03-11 20:33:08 +00:00
|
|
|
project->readMapsWithConnections();
|
2018-02-16 02:38:19 +00:00
|
|
|
}
|
2016-09-07 04:50:47 +01:00
|
|
|
|
|
|
|
void MainWindow::populateMapList() {
|
|
|
|
Project *project = editor->project;
|
|
|
|
|
|
|
|
QIcon mapFolderIcon;
|
|
|
|
mapFolderIcon.addFile(QStringLiteral(":/icons/folder_closed_map.ico"), QSize(), QIcon::Normal, QIcon::Off);
|
|
|
|
mapFolderIcon.addFile(QStringLiteral(":/icons/folder_map.ico"), QSize(), QIcon::Normal, QIcon::On);
|
|
|
|
|
|
|
|
QIcon folderIcon;
|
|
|
|
folderIcon.addFile(QStringLiteral(":/icons/folder_closed.ico"), QSize(), QIcon::Normal, QIcon::Off);
|
|
|
|
|
2018-02-15 04:33:55 +00:00
|
|
|
mapIcon = new QIcon;
|
|
|
|
mapIcon->addFile(QStringLiteral(":/icons/map.ico"), QSize(), QIcon::Normal, QIcon::Off);
|
|
|
|
mapIcon->addFile(QStringLiteral(":/icons/image.ico"), QSize(), QIcon::Normal, QIcon::On);
|
2016-09-07 04:50:47 +01:00
|
|
|
|
2018-02-14 05:01:16 +00:00
|
|
|
mapListModel = new QStandardItemModel;
|
2018-02-15 04:33:55 +00:00
|
|
|
mapGroupsModel = new QList<QStandardItem*>;
|
2016-09-07 04:50:47 +01:00
|
|
|
|
|
|
|
QStandardItem *entry = new QStandardItem;
|
|
|
|
entry->setText(project->getProjectTitle());
|
|
|
|
entry->setIcon(folderIcon);
|
|
|
|
entry->setEditable(false);
|
2018-02-14 05:01:16 +00:00
|
|
|
mapListModel->appendRow(entry);
|
2016-09-07 04:50:47 +01:00
|
|
|
|
|
|
|
QStandardItem *maps = new QStandardItem;
|
|
|
|
maps->setText("maps");
|
|
|
|
maps->setIcon(folderIcon);
|
|
|
|
maps->setEditable(false);
|
|
|
|
entry->appendRow(maps);
|
|
|
|
|
|
|
|
project->readMapGroups();
|
|
|
|
for (int i = 0; i < project->groupNames->length(); i++) {
|
|
|
|
QString group_name = project->groupNames->value(i);
|
|
|
|
QStandardItem *group = new QStandardItem;
|
|
|
|
group->setText(group_name);
|
|
|
|
group->setIcon(mapFolderIcon);
|
|
|
|
group->setEditable(false);
|
2018-02-14 05:01:16 +00:00
|
|
|
group->setData(group_name, Qt::UserRole);
|
|
|
|
group->setData("map_group", MapListUserRoles::TypeRole);
|
2018-02-15 04:33:55 +00:00
|
|
|
group->setData(i, MapListUserRoles::GroupRole);
|
2016-09-07 04:50:47 +01:00
|
|
|
maps->appendRow(group);
|
2018-02-15 04:33:55 +00:00
|
|
|
mapGroupsModel->append(group);
|
2018-02-18 04:41:15 +00:00
|
|
|
QStringList names = project->groupedMapNames.value(i);
|
|
|
|
for (int j = 0; j < names.length(); j++) {
|
|
|
|
QString map_name = names.value(j);
|
2018-02-15 04:33:55 +00:00
|
|
|
QStandardItem *map = createMapItem(map_name, i, j);
|
2016-09-07 04:50:47 +01:00
|
|
|
group->appendRow(map);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-14 05:01:16 +00:00
|
|
|
// Right-clicking on items in the map list tree view brings up a context menu.
|
|
|
|
ui->mapList->setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
connect(ui->mapList, SIGNAL(customContextMenuRequested(const QPoint &)),
|
|
|
|
this, SLOT(onOpenMapListContextMenu(const QPoint &)));
|
|
|
|
|
|
|
|
ui->mapList->setModel(mapListModel);
|
2016-09-07 04:50:47 +01:00
|
|
|
ui->mapList->setUpdatesEnabled(true);
|
|
|
|
ui->mapList->expandToDepth(2);
|
|
|
|
ui->mapList->repaint();
|
|
|
|
}
|
|
|
|
|
2018-02-15 04:33:55 +00:00
|
|
|
QStandardItem* MainWindow::createMapItem(QString mapName, int groupNum, int inGroupNum) {
|
|
|
|
QStandardItem *map = new QStandardItem;
|
|
|
|
map->setText(QString("[%1.%2] ").arg(groupNum).arg(inGroupNum, 2, 10, QLatin1Char('0')) + mapName);
|
|
|
|
map->setIcon(*mapIcon);
|
|
|
|
map->setEditable(false);
|
|
|
|
map->setData(mapName, Qt::UserRole);
|
|
|
|
map->setData("map_name", MapListUserRoles::TypeRole);
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
2018-02-14 05:01:16 +00:00
|
|
|
void MainWindow::onOpenMapListContextMenu(const QPoint &point)
|
|
|
|
{
|
|
|
|
QModelIndex index = ui->mapList->indexAt(point);
|
|
|
|
if (!index.isValid()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStandardItem *selectedItem = mapListModel->itemFromIndex(index);
|
|
|
|
QVariant itemType = selectedItem->data(MapListUserRoles::TypeRole);
|
|
|
|
if (!itemType.isValid()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build custom context menu depending on which type of item was selected (map group, map name, etc.)
|
|
|
|
if (itemType == "map_group") {
|
|
|
|
QString groupName = selectedItem->data(Qt::UserRole).toString();
|
2018-02-15 04:33:55 +00:00
|
|
|
int groupNum = selectedItem->data(MapListUserRoles::GroupRole).toInt();
|
2018-02-14 05:01:16 +00:00
|
|
|
QMenu* menu = new QMenu();
|
|
|
|
QActionGroup* actions = new QActionGroup(menu);
|
2018-02-15 04:33:55 +00:00
|
|
|
actions->addAction(menu->addAction("Add New Map to Group"))->setData(groupNum);
|
|
|
|
connect(actions, SIGNAL(triggered(QAction*)), this, SLOT(onAddNewMapToGroupClick(QAction*)));
|
2018-02-14 05:01:16 +00:00
|
|
|
menu->exec(QCursor::pos());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-15 04:33:55 +00:00
|
|
|
void MainWindow::onAddNewMapToGroupClick(QAction* triggeredAction)
|
2018-02-14 05:01:16 +00:00
|
|
|
{
|
2018-02-15 04:33:55 +00:00
|
|
|
int groupNum = triggeredAction->data().toInt();
|
|
|
|
QStandardItem* groupItem = mapGroupsModel->at(groupNum);
|
|
|
|
|
|
|
|
QString newMapName = editor->project->getNewMapName();
|
2018-02-18 04:41:15 +00:00
|
|
|
Map* newMap = editor->project->addNewMapToGroup(newMapName, groupNum);
|
|
|
|
editor->project->saveMap(newMap);
|
|
|
|
editor->project->saveAllDataStructures();
|
2018-02-15 04:33:55 +00:00
|
|
|
|
|
|
|
int numMapsInGroup = groupItem->rowCount();
|
|
|
|
QStandardItem *newMapItem = createMapItem(newMapName, groupNum, numMapsInGroup);
|
|
|
|
groupItem->appendRow(newMapItem);
|
2018-02-16 04:15:25 +00:00
|
|
|
|
|
|
|
setMap(newMapName);
|
2018-02-14 05:01:16 +00:00
|
|
|
}
|
|
|
|
|
2018-07-08 17:17:43 +01:00
|
|
|
void MainWindow::onTilesetChanged(QString mapName)
|
|
|
|
{
|
|
|
|
setMap(mapName);
|
|
|
|
}
|
|
|
|
|
2016-09-07 04:50:47 +01:00
|
|
|
void MainWindow::on_mapList_activated(const QModelIndex &index)
|
|
|
|
{
|
|
|
|
QVariant data = index.data(Qt::UserRole);
|
|
|
|
if (!data.isNull()) {
|
|
|
|
setMap(data.toString());
|
|
|
|
}
|
2017-11-28 04:46:27 +00:00
|
|
|
//updateMapList();
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::markAllEdited(QAbstractItemModel *model) {
|
|
|
|
QList<QModelIndex> list;
|
|
|
|
list.append(QModelIndex());
|
|
|
|
while (list.length()) {
|
|
|
|
QModelIndex parent = list.takeFirst();
|
|
|
|
for (int i = 0; i < model->rowCount(parent); i++) {
|
|
|
|
QModelIndex index = model->index(i, 0, parent);
|
|
|
|
if (model->hasChildren(index)) {
|
|
|
|
list.append(index);
|
|
|
|
}
|
|
|
|
markEdited(index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::markEdited(QModelIndex index) {
|
|
|
|
QVariant data = index.data(Qt::UserRole);
|
|
|
|
if (!data.isNull()) {
|
|
|
|
QString map_name = data.toString();
|
|
|
|
if (editor->project) {
|
|
|
|
if (editor->project->map_cache->contains(map_name)) {
|
|
|
|
// Just mark anything that's been opened for now.
|
|
|
|
// TODO if (project->getMap()->saved)
|
2017-11-28 04:46:27 +00:00
|
|
|
//ui->mapList->setExpanded(index, true);
|
|
|
|
ui->mapList->setExpanded(index, editor->project->map_cache->value(map_name)->hasUnsavedChanges());
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::updateMapList() {
|
|
|
|
QAbstractItemModel *model = ui->mapList->model();
|
|
|
|
markAllEdited(model);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_action_Save_Project_triggered()
|
|
|
|
{
|
|
|
|
editor->saveProject();
|
|
|
|
updateMapList();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::undo() {
|
|
|
|
editor->undo();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::redo() {
|
|
|
|
editor->redo();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_action_Save_triggered() {
|
|
|
|
editor->save();
|
2017-11-28 04:46:27 +00:00
|
|
|
updateMapList();
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_tabWidget_2_currentChanged(int index)
|
|
|
|
{
|
|
|
|
if (index == 0) {
|
|
|
|
editor->setEditingMap();
|
|
|
|
} else if (index == 1) {
|
|
|
|
editor->setEditingCollision();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_action_Exit_triggered()
|
|
|
|
{
|
|
|
|
QApplication::quit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_tabWidget_currentChanged(int index)
|
|
|
|
{
|
|
|
|
if (index == 0) {
|
|
|
|
on_tabWidget_2_currentChanged(ui->tabWidget_2->currentIndex());
|
|
|
|
} else if (index == 1) {
|
|
|
|
editor->setEditingObjects();
|
2018-03-08 04:22:18 +00:00
|
|
|
} else if (index == 3) {
|
2018-03-10 07:26:44 +00:00
|
|
|
editor->setEditingConnections();
|
2016-09-07 04:50:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionUndo_triggered()
|
|
|
|
{
|
|
|
|
undo();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_actionRedo_triggered()
|
|
|
|
{
|
|
|
|
redo();
|
|
|
|
}
|
2017-11-28 04:46:27 +00:00
|
|
|
|
2018-07-06 17:08:20 +01:00
|
|
|
void MainWindow::addNewEvent(QString event_type)
|
2017-11-28 04:46:27 +00:00
|
|
|
{
|
|
|
|
if (editor) {
|
2018-07-06 17:08:20 +01:00
|
|
|
DraggablePixmapItem *object = editor->addNewEvent(event_type);
|
2017-11-28 04:46:27 +00:00
|
|
|
if (object) {
|
2018-07-07 16:58:25 +01:00
|
|
|
editor->selectMapEvent(object, false);
|
2017-11-28 04:46:27 +00:00
|
|
|
}
|
|
|
|
updateSelectedObjects();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should probably just pass layout and let the editor work it out
|
|
|
|
void MainWindow::updateSelectedObjects() {
|
|
|
|
|
|
|
|
QList<DraggablePixmapItem *> *all_events = editor->getObjects();
|
|
|
|
QList<DraggablePixmapItem *> *events = all_events;
|
|
|
|
|
|
|
|
if (editor->selected_events && editor->selected_events->length()) {
|
|
|
|
events = editor->selected_events;
|
|
|
|
}
|
|
|
|
|
2018-06-05 23:06:14 +01:00
|
|
|
QMap<QString, int> event_obj_gfx_constants = editor->project->getEventObjGfxConstants();
|
2017-11-28 04:46:27 +00:00
|
|
|
|
|
|
|
QList<ObjectPropertiesFrame *> frames;
|
|
|
|
|
|
|
|
for (DraggablePixmapItem *item : *events) {
|
|
|
|
ObjectPropertiesFrame *frame = new ObjectPropertiesFrame;
|
|
|
|
// frame->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
|
|
|
|
|
|
|
|
QSpinBox *x = frame->ui->spinBox_x;
|
|
|
|
QSpinBox *y = frame->ui->spinBox_y;
|
|
|
|
QSpinBox *z = frame->ui->spinBox_z;
|
|
|
|
|
|
|
|
x->setValue(item->event->x());
|
|
|
|
connect(x, SIGNAL(valueChanged(QString)), item, SLOT(set_x(QString)));
|
|
|
|
connect(item, SIGNAL(xChanged(int)), x, SLOT(setValue(int)));
|
|
|
|
|
|
|
|
y->setValue(item->event->y());
|
|
|
|
connect(y, SIGNAL(valueChanged(QString)), item, SLOT(set_y(QString)));
|
|
|
|
connect(item, SIGNAL(yChanged(int)), y, SLOT(setValue(int)));
|
|
|
|
|
|
|
|
z->setValue(item->event->elevation());
|
|
|
|
connect(z, SIGNAL(valueChanged(QString)), item, SLOT(set_elevation(QString)));
|
|
|
|
connect(item, SIGNAL(elevationChanged(int)), z, SLOT(setValue(int)));
|
|
|
|
|
|
|
|
QFont font;
|
|
|
|
font.setCapitalization(QFont::Capitalize);
|
|
|
|
frame->ui->label_name->setFont(font);
|
|
|
|
QString event_type = item->event->get("event_type");
|
2018-07-07 16:58:25 +01:00
|
|
|
QString event_group_type = item->event->get("event_group_type");
|
2017-11-28 04:46:27 +00:00
|
|
|
QString map_name = item->event->get("map_name");
|
|
|
|
frame->ui->label_name->setText(
|
2018-07-07 16:58:25 +01:00
|
|
|
QString("%1: %2 %3")
|
|
|
|
.arg(editor->project->getMap(map_name)->events.value(event_group_type).indexOf(item->event) + 1)
|
2017-11-28 04:46:27 +00:00
|
|
|
.arg(map_name)
|
|
|
|
.arg(event_type)
|
|
|
|
);
|
|
|
|
|
|
|
|
frame->ui->label_spritePixmap->setPixmap(item->event->pixmap);
|
|
|
|
connect(item, SIGNAL(spriteChanged(QPixmap)), frame->ui->label_spritePixmap, SLOT(setPixmap(QPixmap)));
|
|
|
|
|
|
|
|
frame->ui->sprite->setVisible(false);
|
|
|
|
|
|
|
|
QMap<QString, QString> field_labels;
|
|
|
|
field_labels["script_label"] = "Script";
|
|
|
|
field_labels["event_flag"] = "Event Flag";
|
|
|
|
field_labels["replacement"] = "Replacement";
|
2018-01-30 02:43:21 +00:00
|
|
|
field_labels["behavior"] = "Behavior";
|
|
|
|
field_labels["radius_x"] = "Movement Radius X";
|
|
|
|
field_labels["radius_y"] = "Movement Radius Y";
|
2018-07-07 16:58:25 +01:00
|
|
|
field_labels["trainer_see_type"] = "Trainer See Type";
|
|
|
|
field_labels["sight_radius_tree_id"] = "Sight Radius / Berry Tree ID";
|
2017-11-28 04:46:27 +00:00
|
|
|
field_labels["destination_warp"] = "Destination Warp";
|
2018-02-12 17:20:18 +00:00
|
|
|
field_labels["destination_map_name"] = "Destination Map";
|
2018-03-03 05:54:08 +00:00
|
|
|
field_labels["script_var"] = "Var";
|
|
|
|
field_labels["script_var_value"] = "Var Value";
|
2018-07-07 16:58:25 +01:00
|
|
|
field_labels["player_facing_direction"] = "Player Facing Direction";
|
2017-11-28 04:46:27 +00:00
|
|
|
field_labels["item"] = "Item";
|
|
|
|
field_labels["item_unknown5"] = "Unknown 5";
|
|
|
|
field_labels["item_unknown6"] = "Unknown 6";
|
2018-02-12 21:29:45 +00:00
|
|
|
field_labels["weather"] = "Weather";
|
|
|
|
field_labels["flag"] = "Flag";
|
2018-02-12 21:47:50 +00:00
|
|
|
field_labels["secret_base_map"] = "Secret Base Map";
|
2017-11-28 04:46:27 +00:00
|
|
|
|
|
|
|
QStringList fields;
|
|
|
|
|
2018-07-06 17:08:20 +01:00
|
|
|
if (event_type == EventType::Object) {
|
2017-11-28 04:46:27 +00:00
|
|
|
|
|
|
|
frame->ui->sprite->setVisible(true);
|
2018-06-05 23:06:14 +01:00
|
|
|
frame->ui->comboBox_sprite->addItems(event_obj_gfx_constants.keys());
|
2017-11-28 04:46:27 +00:00
|
|
|
frame->ui->comboBox_sprite->setCurrentText(item->event->get("sprite"));
|
|
|
|
connect(frame->ui->comboBox_sprite, SIGNAL(activated(QString)), item, SLOT(set_sprite(QString)));
|
|
|
|
|
|
|
|
/*
|
|
|
|
frame->ui->script->setVisible(true);
|
|
|
|
frame->ui->comboBox_script->addItem(item->event->get("script_label"));
|
|
|
|
frame->ui->comboBox_script->setCurrentText(item->event->get("script_label"));
|
|
|
|
//item->bind(frame->ui->comboBox_script, "script_label");
|
|
|
|
connect(frame->ui->comboBox_script, SIGNAL(activated(QString)), item, SLOT(set_script(QString)));
|
|
|
|
//connect(frame->ui->comboBox_script, static_cast<void (QComboBox::*)(const QString&)>(&QComboBox::activated), item, [item](QString script_label){ item->event->put("script_label", script_label); });
|
|
|
|
//connect(item, SIGNAL(scriptChanged(QString)), frame->ui->comboBox_script, SLOT(setValue(QString)));
|
|
|
|
*/
|
|
|
|
|
2018-01-30 02:43:21 +00:00
|
|
|
fields << "behavior";
|
|
|
|
fields << "radius_x";
|
|
|
|
fields << "radius_y";
|
2017-11-28 04:46:27 +00:00
|
|
|
fields << "script_label";
|
|
|
|
fields << "event_flag";
|
|
|
|
fields << "replacement";
|
2018-07-07 16:58:25 +01:00
|
|
|
fields << "trainer_see_type";
|
|
|
|
fields << "sight_radius_tree_id";
|
2017-11-28 04:46:27 +00:00
|
|
|
}
|
2018-07-06 17:08:20 +01:00
|
|
|
else if (event_type == EventType::Warp) {
|
2017-11-28 04:46:27 +00:00
|
|
|
fields << "destination_warp";
|
2018-02-12 17:20:18 +00:00
|
|
|
fields << "destination_map_name";
|
2017-11-28 04:46:27 +00:00
|
|
|
}
|
2018-07-06 17:08:20 +01:00
|
|
|
else if (event_type == EventType::CoordScript) {
|
2017-11-28 04:46:27 +00:00
|
|
|
fields << "script_label";
|
2018-03-03 05:54:08 +00:00
|
|
|
fields << "script_var";
|
|
|
|
fields << "script_var_value";
|
2017-11-28 04:46:27 +00:00
|
|
|
}
|
2018-07-06 17:08:20 +01:00
|
|
|
else if (event_type == EventType::CoordWeather) {
|
2018-02-12 21:12:47 +00:00
|
|
|
fields << "weather";
|
|
|
|
}
|
2018-07-06 17:08:20 +01:00
|
|
|
else if (event_type == EventType::Sign) {
|
2018-07-07 16:58:25 +01:00
|
|
|
fields << "player_facing_direction";
|
2017-11-28 04:46:27 +00:00
|
|
|
fields << "script_label";
|
|
|
|
}
|
2018-07-06 17:08:20 +01:00
|
|
|
else if (event_type == EventType::HiddenItem) {
|
2017-11-28 04:46:27 +00:00
|
|
|
fields << "item";
|
2018-02-12 21:29:45 +00:00
|
|
|
fields << "flag";
|
2017-11-28 04:46:27 +00:00
|
|
|
}
|
2018-07-06 17:08:20 +01:00
|
|
|
else if (event_type == EventType::SecretBase) {
|
2018-02-12 21:47:50 +00:00
|
|
|
fields << "secret_base_map";
|
|
|
|
}
|
2017-11-28 04:46:27 +00:00
|
|
|
|
|
|
|
for (QString key : fields) {
|
|
|
|
QWidget *widget = new QWidget(frame);
|
|
|
|
QFormLayout *fl = new QFormLayout(widget);
|
|
|
|
fl->setContentsMargins(9, 0, 9, 0);
|
|
|
|
QComboBox *combo = new QComboBox(widget);
|
|
|
|
combo->setEditable(true);
|
|
|
|
|
|
|
|
QString value = item->event->get(key);
|
2018-02-12 17:20:18 +00:00
|
|
|
if (key == "destination_map_name") {
|
2017-11-28 04:46:27 +00:00
|
|
|
if (!editor->project->mapNames->contains(value)) {
|
|
|
|
combo->addItem(value);
|
|
|
|
}
|
|
|
|
combo->addItems(*editor->project->mapNames);
|
2018-03-03 03:56:23 +00:00
|
|
|
} else if (key == "item") {
|
|
|
|
if (!editor->project->itemNames->contains(value)) {
|
|
|
|
combo->addItem(value);
|
|
|
|
}
|
|
|
|
combo->addItems(*editor->project->itemNames);
|
2018-03-03 05:54:08 +00:00
|
|
|
} else if (key == "flag") {
|
|
|
|
if (!editor->project->flagNames->contains(value)) {
|
|
|
|
combo->addItem(value);
|
|
|
|
}
|
|
|
|
combo->addItems(*editor->project->flagNames);
|
|
|
|
} else if (key == "script_var") {
|
|
|
|
if (!editor->project->varNames->contains(value)) {
|
|
|
|
combo->addItem(value);
|
|
|
|
}
|
|
|
|
combo->addItems(*editor->project->varNames);
|
2017-11-28 04:46:27 +00:00
|
|
|
} else {
|
|
|
|
combo->addItem(value);
|
|
|
|
}
|
|
|
|
combo->setCurrentText(value);
|
|
|
|
|
|
|
|
fl->addRow(new QLabel(field_labels[key], widget), combo);
|
|
|
|
widget->setLayout(fl);
|
|
|
|
frame->layout()->addWidget(widget);
|
|
|
|
|
|
|
|
item->bind(combo, key);
|
|
|
|
}
|
|
|
|
|
|
|
|
frames.append(frame);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//int scroll = ui->scrollArea_4->verticalScrollBar()->value();
|
|
|
|
|
|
|
|
QWidget *target = ui->scrollAreaWidgetContents;
|
|
|
|
|
|
|
|
if (target->children().length()) {
|
|
|
|
qDeleteAll(target->children());
|
|
|
|
}
|
|
|
|
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout(target);
|
|
|
|
target->setLayout(layout);
|
|
|
|
ui->scrollArea_4->setWidgetResizable(true);
|
|
|
|
ui->scrollArea_4->setWidget(target);
|
|
|
|
|
|
|
|
for (ObjectPropertiesFrame *frame : frames) {
|
|
|
|
layout->addWidget(frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
layout->addStretch(1);
|
|
|
|
|
|
|
|
// doesn't work
|
|
|
|
//QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
|
|
|
|
//ui->scrollArea_4->ensureVisible(0, scroll);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_toolButton_deleteObject_clicked()
|
|
|
|
{
|
|
|
|
if (editor && editor->selected_events) {
|
|
|
|
if (editor->selected_events->length()) {
|
|
|
|
for (DraggablePixmapItem *item : *editor->selected_events) {
|
|
|
|
editor->deleteEvent(item->event);
|
|
|
|
if (editor->scene->items().contains(item)) {
|
|
|
|
editor->scene->removeItem(item);
|
|
|
|
}
|
|
|
|
editor->selected_events->removeOne(item);
|
|
|
|
}
|
|
|
|
updateSelectedObjects();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_toolButton_Paint_clicked()
|
|
|
|
{
|
|
|
|
editor->map_edit_mode = "paint";
|
|
|
|
checkToolButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_toolButton_Select_clicked()
|
|
|
|
{
|
|
|
|
editor->map_edit_mode = "select";
|
|
|
|
checkToolButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_toolButton_Fill_clicked()
|
|
|
|
{
|
|
|
|
editor->map_edit_mode = "fill";
|
|
|
|
checkToolButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_toolButton_Dropper_clicked()
|
|
|
|
{
|
|
|
|
editor->map_edit_mode = "pick";
|
|
|
|
checkToolButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::checkToolButtons() {
|
|
|
|
ui->toolButton_Paint->setChecked(editor->map_edit_mode == "paint");
|
|
|
|
ui->toolButton_Select->setChecked(editor->map_edit_mode == "select");
|
|
|
|
ui->toolButton_Fill->setChecked(editor->map_edit_mode == "fill");
|
|
|
|
ui->toolButton_Dropper->setChecked(editor->map_edit_mode == "pick");
|
|
|
|
}
|
|
|
|
|
2018-03-11 21:20:52 +00:00
|
|
|
void MainWindow::onLoadMapRequested(QString mapName, QString fromMapName) {
|
|
|
|
setMap(mapName);
|
|
|
|
editor->setSelectedConnectionFromMap(fromMapName);
|
|
|
|
}
|
|
|
|
|
2017-11-28 04:46:27 +00:00
|
|
|
void MainWindow::onMapChanged(Map *map) {
|
2018-06-20 23:43:20 +01:00
|
|
|
map->layout->has_unsaved_changes = true;
|
2017-11-28 04:46:27 +00:00
|
|
|
updateMapList();
|
|
|
|
}
|
2018-03-05 02:11:59 +00:00
|
|
|
|
2018-07-09 23:40:34 +01:00
|
|
|
void MainWindow::onMapNeedsRedrawing(Map *map) {
|
|
|
|
redrawMapScene();
|
|
|
|
}
|
|
|
|
|
2018-03-05 02:11:59 +00:00
|
|
|
void MainWindow::on_action_Export_Map_Image_triggered()
|
|
|
|
{
|
|
|
|
QString defaultFilepath = QString("%1/%2.png").arg(editor->project->root).arg(editor->map->name);
|
|
|
|
QString filepath = QFileDialog::getSaveFileName(this, "Export Map Image", defaultFilepath, "Image Files (*.png *.jpg *.bmp)");
|
|
|
|
if (!filepath.isEmpty()) {
|
|
|
|
editor->map_item->pixmap().save(filepath);
|
|
|
|
}
|
|
|
|
}
|
2018-03-08 04:22:18 +00:00
|
|
|
|
|
|
|
void MainWindow::on_comboBox_ConnectionDirection_currentIndexChanged(const QString &direction)
|
|
|
|
{
|
2018-03-13 03:51:27 +00:00
|
|
|
editor->updateCurrentConnectionDirection(direction);
|
2018-03-08 04:22:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_spinBox_ConnectionOffset_valueChanged(int offset)
|
|
|
|
{
|
|
|
|
editor->updateConnectionOffset(offset);
|
|
|
|
}
|
|
|
|
|
2018-03-09 04:34:04 +00:00
|
|
|
void MainWindow::on_comboBox_ConnectedMap_currentTextChanged(const QString &mapName)
|
2018-03-08 04:22:18 +00:00
|
|
|
{
|
2018-03-11 22:59:21 +00:00
|
|
|
editor->setConnectionMap(mapName);
|
2018-03-08 04:22:18 +00:00
|
|
|
}
|
2018-03-10 18:09:19 +00:00
|
|
|
|
|
|
|
void MainWindow::on_pushButton_AddConnection_clicked()
|
|
|
|
{
|
|
|
|
editor->addNewConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_pushButton_RemoveConnection_clicked()
|
|
|
|
{
|
|
|
|
editor->removeCurrentConnection();
|
|
|
|
}
|
2018-03-10 19:25:34 +00:00
|
|
|
|
|
|
|
void MainWindow::on_comboBox_DiveMap_currentTextChanged(const QString &mapName)
|
|
|
|
{
|
|
|
|
editor->updateDiveMap(mapName);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_comboBox_EmergeMap_currentTextChanged(const QString &mapName)
|
|
|
|
{
|
|
|
|
editor->updateEmergeMap(mapName);
|
|
|
|
}
|
2018-07-08 17:17:43 +01:00
|
|
|
|
|
|
|
void MainWindow::on_comboBox_PrimaryTileset_activated(const QString &tilesetLabel)
|
|
|
|
{
|
|
|
|
editor->updatePrimaryTileset(tilesetLabel);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MainWindow::on_comboBox_SecondaryTileset_activated(const QString &tilesetLabel)
|
|
|
|
{
|
|
|
|
editor->updateSecondaryTileset(tilesetLabel);
|
|
|
|
}
|
2018-07-09 23:40:15 +01:00
|
|
|
|
|
|
|
void MainWindow::on_pushButton_clicked()
|
|
|
|
{
|
|
|
|
QDialog dialog(this, Qt::WindowTitleHint | Qt::WindowCloseButtonHint);
|
|
|
|
dialog.setWindowTitle("Change Map Dimensions");
|
|
|
|
dialog.setWindowModality(Qt::NonModal);
|
|
|
|
|
|
|
|
QFormLayout form(&dialog);
|
|
|
|
|
|
|
|
QSpinBox *widthSpinBox = new QSpinBox();
|
|
|
|
QSpinBox *heightSpinBox = new QSpinBox();
|
|
|
|
widthSpinBox->setMinimum(1);
|
|
|
|
heightSpinBox->setMinimum(1);
|
2018-07-09 23:40:28 +01:00
|
|
|
// See below for explanation of maximum map dimensions
|
|
|
|
widthSpinBox->setMaximum(0x1E7);
|
|
|
|
heightSpinBox->setMaximum(0x1D1);
|
|
|
|
widthSpinBox->setValue(editor->map->getWidth());
|
|
|
|
heightSpinBox->setValue(editor->map->getHeight());
|
2018-07-09 23:40:15 +01:00
|
|
|
form.addRow(new QLabel("Width"), widthSpinBox);
|
|
|
|
form.addRow(new QLabel("Height"), heightSpinBox);
|
|
|
|
|
2018-07-09 23:40:28 +01:00
|
|
|
QLabel *errorLabel = new QLabel();
|
|
|
|
QPalette errorPalette;
|
|
|
|
errorPalette.setColor(QPalette::WindowText, Qt::red);
|
|
|
|
errorLabel->setPalette(errorPalette);
|
|
|
|
errorLabel->setVisible(false);
|
|
|
|
|
2018-07-09 23:40:15 +01:00
|
|
|
QDialogButtonBox buttonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, &dialog);
|
|
|
|
form.addRow(&buttonBox);
|
2018-07-09 23:40:28 +01:00
|
|
|
connect(&buttonBox, &QDialogButtonBox::accepted, [&dialog, &widthSpinBox, &heightSpinBox, &errorLabel](){
|
|
|
|
// Ensure width and height are an acceptable size.
|
|
|
|
// The maximum number of metatiles in a map is the following:
|
|
|
|
// max = (width + 15) * (height + 14)
|
|
|
|
// This limit can be found in fieldmap.c in pokeruby/pokeemerald.
|
|
|
|
int realWidth = widthSpinBox->value() + 15;
|
|
|
|
int realHeight = heightSpinBox->value() + 14;
|
|
|
|
int numMetatiles = realWidth * realHeight;
|
|
|
|
if (numMetatiles <= 0x2800) {
|
|
|
|
dialog.accept();
|
|
|
|
} else {
|
|
|
|
QString errorText = QString("Error: The specified width and height are too large.\n"
|
|
|
|
"The maximum width and height is the following: (width + 15) * (height + 14) <= 10240\n"
|
|
|
|
"The specified width and height was: (%1 + 15) * (%2 + 14) = %3")
|
|
|
|
.arg(widthSpinBox->value())
|
|
|
|
.arg(heightSpinBox->value())
|
|
|
|
.arg(numMetatiles);
|
|
|
|
errorLabel->setText(errorText);
|
|
|
|
errorLabel->setVisible(true);
|
|
|
|
}
|
|
|
|
});
|
2018-07-09 23:40:15 +01:00
|
|
|
connect(&buttonBox, SIGNAL(rejected()), &dialog, SLOT(reject()));
|
|
|
|
|
2018-07-09 23:40:28 +01:00
|
|
|
form.addRow(errorLabel);
|
|
|
|
|
2018-07-09 23:40:15 +01:00
|
|
|
if (dialog.exec() == QDialog::Accepted) {
|
2018-07-09 23:40:28 +01:00
|
|
|
editor->map->setDimensions(widthSpinBox->value(), heightSpinBox->value());
|
2018-07-09 23:40:34 +01:00
|
|
|
editor->map->commit();
|
|
|
|
onMapNeedsRedrawing(editor->map);
|
2018-07-09 23:40:15 +01:00
|
|
|
}
|
|
|
|
}
|