123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981 |
- #include "mainwindow.h"
- #include "ui_mainwindow.h"
- #include "project.h"
- #include "editor.h"
- #include "objectpropertiesframe.h"
- #include "ui_objectpropertiesframe.h"
-
- #include <QDebug>
- #include <QFileDialog>
- #include <QStandardItemModel>
- #include <QShortcut>
- #include <QSettings>
- #include <QSpinBox>
- #include <QTextEdit>
- #include <QSpacerItem>
- #include <QFont>
- #include <QScrollBar>
- #include <QMessageBox>
- #include <QDialogButtonBox>
-
- MainWindow::MainWindow(QWidget *parent) :
- QMainWindow(parent),
- ui(new Ui::MainWindow)
- {
- QCoreApplication::setOrganizationName("pret");
- QCoreApplication::setApplicationName("pretmap");
-
- ui->setupUi(this);
-
- ui->newEventToolButton->initButton();
- connect(ui->newEventToolButton, SIGNAL(newEventAdded(QString)), this, SLOT(addNewEvent(QString)));
-
- new QShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_Z), this, SLOT(redo()));
-
- editor = new Editor(ui);
- connect(editor, SIGNAL(objectsChanged()), this, SLOT(updateSelectedObjects()));
- connect(editor, SIGNAL(selectedObjectsChanged()), this, SLOT(updateSelectedObjects()));
- connect(editor, SIGNAL(loadMapRequested(QString, QString)), this, SLOT(onLoadMapRequested(QString, QString)));
- connect(editor, SIGNAL(tilesetChanged(QString)), this, SLOT(onTilesetChanged(QString)));
- connect(editor, SIGNAL(warpEventDoubleClicked(QString,QString)), this, SLOT(openWarpMap(QString,QString)));
-
- on_toolButton_Paint_clicked();
-
- QSettings settings;
- QString key = "recent_projects";
- if (settings.contains(key)) {
- QString default_dir = settings.value(key).toStringList().last();
- if (!default_dir.isNull()) {
- qDebug() << QString("default_dir: '%1'").arg(default_dir);
- openProject(default_dir);
- }
- }
- }
-
- MainWindow::~MainWindow()
- {
- delete ui;
- }
-
- void MainWindow::setStatusBarMessage(QString message, int timeout/* = 0*/) {
- statusBar()->showMessage(message, timeout);
- }
-
- void MainWindow::openProject(QString dir) {
- if (dir.isNull()) {
- return;
- }
-
- setStatusBarMessage(QString("Opening project %1").arg(dir));
-
- bool already_open = (
- (editor != NULL && editor != nullptr)
- && (editor->project != NULL && editor->project != nullptr)
- && (editor->project->root == dir)
- );
- if (!already_open) {
- editor->project = new Project;
- editor->project->root = dir;
- setWindowTitle(editor->project->getProjectTitle() + " - pretmap");
- loadDataStructures();
- populateMapList();
- setMap(getDefaultMap());
- } else {
- setWindowTitle(editor->project->getProjectTitle() + " - pretmap");
- loadDataStructures();
- populateMapList();
- }
-
- setStatusBarMessage(QString("Opened project %1").arg(dir));
- }
-
- QString MainWindow::getDefaultMap() {
- if (editor && editor->project) {
- QList<QStringList> names = editor->project->groupedMapNames;
- if (!names.isEmpty()) {
- 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();
- for (int i = 0; i < names.length(); i++) {
- if (names.value(i).contains(map_name)) {
- return map_name;
- }
- }
- }
- }
- // Failing that, just get the first map in the list.
- for (int i = 0; i < names.length(); i++) {
- QStringList list = names.value(i);
- if (list.length()) {
- return list.value(0);
- }
- }
- }
- }
- return QString();
- }
-
- 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) {
- qDebug() << QString("setMap(%1)").arg(map_name);
- if (map_name.isNull()) {
- return;
- }
- editor->setMap(map_name);
- 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)));
-
- setRecentMap(map_name);
- updateMapList();
- }
-
- void MainWindow::redrawMapScene()
- {
- editor->displayMap();
- on_tabWidget_currentChanged(ui->tabWidget->currentIndex());
-
- 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);
- ui->graphicsView_Objects_Map->editor = editor;
-
- ui->graphicsView_Connections->setScene(editor->scene);
- ui->graphicsView_Connections->setSceneRect(editor->scene->sceneRect());
- ui->graphicsView_Connections->setFixedSize(editor->scene->width() + 2, editor->scene->height() + 2);
-
- 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);
-
- 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);
-
- 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::openWarpMap(QString map_name, QString warp_num) {
- // Ensure valid destination map name.
- if (!editor->project->mapNames->contains(map_name)) {
- qDebug() << QString("Invalid warp destination map name '%1'").arg(map_name);
- return;
- }
-
- // Ensure valid destination warp number.
- bool ok;
- int warpNum = warp_num.toInt(&ok, 0);
- if (!ok) {
- qDebug() << QString("Invalid warp number '%1' for destination map '%2'").arg(warp_num).arg(map_name);
- return;
- }
-
- // Open the destination map, and select the target warp event.
- setMap(map_name);
- QList<Event*> warp_events = editor->map->events["warp_event_group"];
- if (warp_events.length() > warpNum) {
- Event *warp_event = warp_events.at(warpNum);
- QList<DraggablePixmapItem *> *all_events = editor->getObjects();
- for (DraggablePixmapItem *item : *all_events) {
- if (item->event == warp_event) {
- editor->selected_events->clear();
- editor->selected_events->append(item);
- editor->updateSelectedEvents();
- }
- }
-
- delete all_events;
- }
- }
-
- 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() {
- ui->comboBox_Song->clear();
- ui->comboBox_Location->clear();
- ui->comboBox_Visibility->clear();
- ui->comboBox_Weather->clear();
- ui->comboBox_Type->clear();
- ui->comboBox_BattleScene->clear();
- ui->comboBox_PrimaryTileset->clear();
- ui->comboBox_SecondaryTileset->clear();
- ui->checkBox_ShowLocation->setChecked(false);
- if (!editor || !editor->map || !editor->project) {
- ui->frame_3->setEnabled(false);
- return;
- }
- ui->frame_3->setEnabled(true);
- Map *map = editor->map;
- Project *project = editor->project;
-
- QStringList songs = project->getSongNames();
- ui->comboBox_Song->addItems(songs);
- ui->comboBox_Song->setCurrentText(map->song);
-
- ui->comboBox_Location->addItems(project->getLocations());
- ui->comboBox_Location->setCurrentText(map->location);
-
- 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);
-
- 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)
- {
- if (editor && editor->map) {
- editor->map->song = song;
- }
- }
-
- void MainWindow::on_comboBox_Location_activated(const QString &location)
- {
- if (editor && editor->map) {
- editor->map->location = location;
- }
- }
-
- void MainWindow::on_comboBox_Visibility_activated(const QString &visibility)
- {
- if (editor && editor->map) {
- editor->map->visibility = visibility;
- }
- }
-
- void MainWindow::on_comboBox_Weather_activated(const QString &weather)
- {
- if (editor && editor->map) {
- editor->map->weather = weather;
- }
- }
-
- void MainWindow::on_comboBox_Type_activated(const QString &type)
- {
- if (editor && editor->map) {
- editor->map->type = type;
- }
- }
-
- void MainWindow::on_comboBox_BattleScene_activated(const QString &battle_scene)
- {
- if (editor && editor->map) {
- editor->map->battle_scene = battle_scene;
- }
- }
-
- void MainWindow::on_checkBox_ShowLocation_clicked(bool checked)
- {
- if (editor && editor->map) {
- if (checked) {
- editor->map->show_location = "TRUE";
- } else {
- editor->map->show_location = "FALSE";
- }
- }
- }
-
- void MainWindow::loadDataStructures() {
- Project *project = editor->project;
- project->readMapLayoutsTable();
- project->readAllMapLayouts();
- project->readItemNames();
- project->readFlagNames();
- project->readVarNames();
- project->readMovementTypes();
- project->readCoordEventWeatherNames();
- project->readSecretBaseIds();
- project->readBgEventFacingDirections();
- project->readMapsWithConnections();
- }
-
- 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);
-
- 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);
-
- mapListModel = new QStandardItemModel;
- mapGroupsModel = new QList<QStandardItem*>;
-
- QStandardItem *entry = new QStandardItem;
- entry->setText(project->getProjectTitle());
- entry->setIcon(folderIcon);
- entry->setEditable(false);
- mapListModel->appendRow(entry);
-
- 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);
- group->setData(group_name, Qt::UserRole);
- group->setData("map_group", MapListUserRoles::TypeRole);
- group->setData(i, MapListUserRoles::GroupRole);
- maps->appendRow(group);
- mapGroupsModel->append(group);
- QStringList names = project->groupedMapNames.value(i);
- for (int j = 0; j < names.length(); j++) {
- QString map_name = names.value(j);
- QStandardItem *map = createMapItem(map_name, i, j);
- group->appendRow(map);
- }
- }
-
- // 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);
- ui->mapList->setUpdatesEnabled(true);
- ui->mapList->expandToDepth(2);
- ui->mapList->repaint();
- }
-
- 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;
- }
-
- 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();
- int groupNum = selectedItem->data(MapListUserRoles::GroupRole).toInt();
- QMenu* menu = new QMenu();
- QActionGroup* actions = new QActionGroup(menu);
- actions->addAction(menu->addAction("Add New Map to Group"))->setData(groupNum);
- connect(actions, SIGNAL(triggered(QAction*)), this, SLOT(onAddNewMapToGroupClick(QAction*)));
- menu->exec(QCursor::pos());
- }
- }
-
- void MainWindow::onAddNewMapToGroupClick(QAction* triggeredAction)
- {
- int groupNum = triggeredAction->data().toInt();
- QStandardItem* groupItem = mapGroupsModel->at(groupNum);
-
- QString newMapName = editor->project->getNewMapName();
- Map* newMap = editor->project->addNewMapToGroup(newMapName, groupNum);
- editor->project->saveMap(newMap);
- editor->project->saveAllDataStructures();
-
- int numMapsInGroup = groupItem->rowCount();
- QStandardItem *newMapItem = createMapItem(newMapName, groupNum, numMapsInGroup);
- groupItem->appendRow(newMapItem);
-
- setMap(newMapName);
- }
-
- void MainWindow::onTilesetChanged(QString mapName)
- {
- setMap(mapName);
- }
-
- void MainWindow::on_mapList_activated(const QModelIndex &index)
- {
- QVariant data = index.data(Qt::UserRole);
- if (!data.isNull()) {
- setMap(data.toString());
- }
- //updateMapList();
- }
-
- 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)
- //ui->mapList->setExpanded(index, true);
- ui->mapList->setExpanded(index, editor->project->map_cache->value(map_name)->hasUnsavedChanges());
- }
- }
- }
- }
-
- 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();
- updateMapList();
- }
-
- 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();
- } else if (index == 3) {
- editor->setEditingConnections();
- }
- }
-
- void MainWindow::on_actionUndo_triggered()
- {
- undo();
- }
-
- void MainWindow::on_actionRedo_triggered()
- {
- redo();
- }
-
- void MainWindow::addNewEvent(QString event_type)
- {
- if (editor) {
- DraggablePixmapItem *object = editor->addNewEvent(event_type);
- if (object) {
- editor->selectMapEvent(object, false);
- }
- 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 = NULL;
-
- if (editor->selected_events && editor->selected_events->length()) {
- events = editor->selected_events;
- } else {
- events = new QList<DraggablePixmapItem*>;
- if (all_events && all_events->length()) {
- DraggablePixmapItem *selectedEvent = all_events->first();
- editor->selected_events->append(selectedEvent);
- editor->redrawObject(selectedEvent);
- events->append(selectedEvent);
- }
- }
-
- QMap<QString, int> event_obj_gfx_constants = editor->project->getEventObjGfxConstants();
-
- 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");
- QString event_group_type = item->event->get("event_group_type");
- QString map_name = item->event->get("map_name");
- frame->ui->label_name->setText(
- QString("%1: %2 %3")
- .arg(editor->project->getMap(map_name)->events.value(event_group_type).indexOf(item->event) + 1)
- .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";
- field_labels["movement_type"] = "Movement";
- field_labels["radius_x"] = "Movement Radius X";
- field_labels["radius_y"] = "Movement Radius Y";
- field_labels["trainer_see_type"] = "Trainer See Type";
- field_labels["sight_radius_tree_id"] = "Sight Radius / Berry Tree ID";
- field_labels["destination_warp"] = "Destination Warp";
- field_labels["destination_map_name"] = "Destination Map";
- field_labels["script_var"] = "Var";
- field_labels["script_var_value"] = "Var Value";
- field_labels["player_facing_direction"] = "Player Facing Direction";
- field_labels["item"] = "Item";
- field_labels["item_unknown5"] = "Unknown 5";
- field_labels["item_unknown6"] = "Unknown 6";
- field_labels["weather"] = "Weather";
- field_labels["flag"] = "Flag";
- field_labels["secret_base_id"] = "Secret Base Id";
-
- QStringList fields;
-
- if (event_type == EventType::Object) {
-
- frame->ui->sprite->setVisible(true);
- frame->ui->comboBox_sprite->addItems(event_obj_gfx_constants.keys());
- 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)));
- */
-
- fields << "movement_type";
- fields << "radius_x";
- fields << "radius_y";
- fields << "script_label";
- fields << "event_flag";
- fields << "replacement";
- fields << "trainer_see_type";
- fields << "sight_radius_tree_id";
- }
- else if (event_type == EventType::Warp) {
- fields << "destination_warp";
- fields << "destination_map_name";
- }
- else if (event_type == EventType::CoordScript) {
- fields << "script_label";
- fields << "script_var";
- fields << "script_var_value";
- }
- else if (event_type == EventType::CoordWeather) {
- fields << "weather";
- }
- else if (event_type == EventType::Sign) {
- fields << "player_facing_direction";
- fields << "script_label";
- }
- else if (event_type == EventType::HiddenItem) {
- fields << "item";
- fields << "flag";
- }
- else if (event_type == EventType::SecretBase) {
- fields << "secret_base_id";
- }
-
- for (QString key : fields) {
- QWidget *widget = new QWidget(frame);
- QFormLayout *fl = new QFormLayout(widget);
- fl->setContentsMargins(9, 0, 9, 0);
- NoScrollComboBox *combo = new NoScrollComboBox(widget);
- combo->setEditable(true);
-
- QString value = item->event->get(key);
- if (key == "destination_map_name") {
- if (!editor->project->mapNames->contains(value)) {
- combo->addItem(value);
- }
- combo->addItems(*editor->project->mapNames);
- } else if (key == "item") {
- if (!editor->project->itemNames->contains(value)) {
- combo->addItem(value);
- }
- combo->addItems(*editor->project->itemNames);
- } else if (key == "flag" || key == "event_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);
- } else if (key == "movement_type") {
- if (!editor->project->movementTypes->contains(value)) {
- combo->addItem(value);
- }
- combo->addItems(*editor->project->movementTypes);
- } else if (key == "weather") {
- if (!editor->project->coordEventWeatherNames->contains(value)) {
- combo->addItem(value);
- }
- combo->addItems(*editor->project->coordEventWeatherNames);
- } else if (key == "secret_base_id") {
- if (!editor->project->secretBaseIds->contains(value)) {
- combo->addItem(value);
- }
- combo->addItems(*editor->project->secretBaseIds);
- } else if (key == "player_facing_direction") {
- if (!editor->project->bgEventFacingDirections->contains(value)) {
- combo->addItem(value);
- }
- combo->addItems(*editor->project->bgEventFacingDirections);
- } 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");
- }
-
- void MainWindow::onLoadMapRequested(QString mapName, QString fromMapName) {
- setMap(mapName);
- editor->setSelectedConnectionFromMap(fromMapName);
- }
-
- void MainWindow::onMapChanged(Map *map) {
- map->layout->has_unsaved_changes = true;
- updateMapList();
- }
-
- void MainWindow::onMapNeedsRedrawing(Map *map) {
- redrawMapScene();
- }
-
- 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);
- }
- }
-
- void MainWindow::on_comboBox_ConnectionDirection_currentIndexChanged(const QString &direction)
- {
- editor->updateCurrentConnectionDirection(direction);
- }
-
- void MainWindow::on_spinBox_ConnectionOffset_valueChanged(int offset)
- {
- editor->updateConnectionOffset(offset);
- }
-
- void MainWindow::on_comboBox_ConnectedMap_currentTextChanged(const QString &mapName)
- {
- editor->setConnectionMap(mapName);
- }
-
- void MainWindow::on_pushButton_AddConnection_clicked()
- {
- editor->addNewConnection();
- }
-
- void MainWindow::on_pushButton_RemoveConnection_clicked()
- {
- editor->removeCurrentConnection();
- }
-
- void MainWindow::on_comboBox_DiveMap_currentTextChanged(const QString &mapName)
- {
- editor->updateDiveMap(mapName);
- }
-
- void MainWindow::on_comboBox_EmergeMap_currentTextChanged(const QString &mapName)
- {
- editor->updateEmergeMap(mapName);
- }
-
- void MainWindow::on_comboBox_PrimaryTileset_activated(const QString &tilesetLabel)
- {
- editor->updatePrimaryTileset(tilesetLabel);
- }
-
- void MainWindow::on_comboBox_SecondaryTileset_activated(const QString &tilesetLabel)
- {
- editor->updateSecondaryTileset(tilesetLabel);
- }
-
- 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);
- // See below for explanation of maximum map dimensions
- widthSpinBox->setMaximum(0x1E7);
- heightSpinBox->setMaximum(0x1D1);
- widthSpinBox->setValue(editor->map->getWidth());
- heightSpinBox->setValue(editor->map->getHeight());
- form.addRow(new QLabel("Width"), widthSpinBox);
- form.addRow(new QLabel("Height"), heightSpinBox);
-
- QLabel *errorLabel = new QLabel();
- QPalette errorPalette;
- errorPalette.setColor(QPalette::WindowText, Qt::red);
- errorLabel->setPalette(errorPalette);
- errorLabel->setVisible(false);
-
- QDialogButtonBox buttonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, &dialog);
- form.addRow(&buttonBox);
- 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);
- }
- });
- connect(&buttonBox, SIGNAL(rejected()), &dialog, SLOT(reject()));
-
- form.addRow(errorLabel);
-
- if (dialog.exec() == QDialog::Accepted) {
- editor->map->setDimensions(widthSpinBox->value(), heightSpinBox->value());
- editor->map->commit();
- onMapNeedsRedrawing(editor->map);
- }
- }
-
- void MainWindow::on_checkBox_smartPaths_stateChanged(int selected)
- {
- editor->map->smart_paths_enabled = selected == Qt::Checked;
- }
|