No Description

mainwindow.cpp 27KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780
  1. #include "mainwindow.h"
  2. #include "ui_mainwindow.h"
  3. #include "project.h"
  4. #include "editor.h"
  5. #include "objectpropertiesframe.h"
  6. #include "ui_objectpropertiesframe.h"
  7. #include <QDebug>
  8. #include <QFileDialog>
  9. #include <QStandardItemModel>
  10. #include <QShortcut>
  11. #include <QSettings>
  12. #include <QSpinBox>
  13. #include <QTextEdit>
  14. #include <QSpacerItem>
  15. #include <QFont>
  16. #include <QScrollBar>
  17. MainWindow::MainWindow(QWidget *parent) :
  18. QMainWindow(parent),
  19. ui(new Ui::MainWindow)
  20. {
  21. QCoreApplication::setOrganizationName("pret");
  22. QCoreApplication::setApplicationName("pretmap");
  23. ui->setupUi(this);
  24. new QShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_Z), this, SLOT(redo()));
  25. editor = new Editor(ui);
  26. connect(editor, SIGNAL(objectsChanged()), this, SLOT(updateSelectedObjects()));
  27. connect(editor, SIGNAL(selectedObjectsChanged()), this, SLOT(updateSelectedObjects()));
  28. on_toolButton_Paint_clicked();
  29. QSettings settings;
  30. QString key = "recent_projects";
  31. if (settings.contains(key)) {
  32. QString default_dir = settings.value(key).toStringList().last();
  33. if (!default_dir.isNull()) {
  34. qDebug() << QString("default_dir: '%1'").arg(default_dir);
  35. openProject(default_dir);
  36. }
  37. }
  38. }
  39. MainWindow::~MainWindow()
  40. {
  41. delete ui;
  42. }
  43. void MainWindow::setStatusBarMessage(QString message, int timeout/* = 0*/) {
  44. statusBar()->showMessage(message, timeout);
  45. }
  46. void MainWindow::openProject(QString dir) {
  47. if (dir.isNull()) {
  48. return;
  49. }
  50. setStatusBarMessage(QString("Opening project %1").arg(dir));
  51. bool already_open = (
  52. (editor != NULL && editor != nullptr)
  53. && (editor->project != NULL && editor->project != nullptr)
  54. && (editor->project->root == dir)
  55. );
  56. if (!already_open) {
  57. editor->project = new Project;
  58. editor->project->root = dir;
  59. setWindowTitle(editor->project->getProjectTitle() + " - pretmap");
  60. loadDataStructures();
  61. populateMapList();
  62. setMap(getDefaultMap());
  63. } else {
  64. setWindowTitle(editor->project->getProjectTitle() + " - pretmap");
  65. loadDataStructures();
  66. populateMapList();
  67. }
  68. setStatusBarMessage(QString("Opened project %1").arg(dir));
  69. }
  70. QString MainWindow::getDefaultMap() {
  71. if (editor && editor->project) {
  72. QList<QStringList> names = editor->project->groupedMapNames;
  73. if (!names.isEmpty()) {
  74. QSettings settings;
  75. QString key = "project:" + editor->project->root;
  76. if (settings.contains(key)) {
  77. QMap<QString, QVariant> qmap = settings.value(key).toMap();
  78. if (qmap.contains("recent_map")) {
  79. QString map_name = qmap.value("recent_map").toString();
  80. for (int i = 0; i < names.length(); i++) {
  81. if (names.value(i).contains(map_name)) {
  82. return map_name;
  83. }
  84. }
  85. }
  86. }
  87. // Failing that, just get the first map in the list.
  88. for (int i = 0; i < names.length(); i++) {
  89. QStringList list = names.value(i);
  90. if (list.length()) {
  91. return list.value(0);
  92. }
  93. }
  94. }
  95. }
  96. return QString();
  97. }
  98. QString MainWindow::getExistingDirectory(QString dir) {
  99. return QFileDialog::getExistingDirectory(this, "Open Directory", dir, QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
  100. }
  101. void MainWindow::on_action_Open_Project_triggered()
  102. {
  103. QSettings settings;
  104. QString key = "recent_projects";
  105. QString recent = ".";
  106. if (settings.contains(key)) {
  107. recent = settings.value(key).toStringList().last();
  108. }
  109. QString dir = getExistingDirectory(recent);
  110. if (!dir.isEmpty()) {
  111. QStringList recents;
  112. if (settings.contains(key)) {
  113. recents = settings.value(key).toStringList();
  114. }
  115. recents.removeAll(dir);
  116. recents.append(dir);
  117. settings.setValue(key, recents);
  118. openProject(dir);
  119. }
  120. }
  121. void MainWindow::setMap(QString map_name) {
  122. qDebug() << QString("setMap(%1)").arg(map_name);
  123. if (map_name.isNull()) {
  124. return;
  125. }
  126. editor->setMap(map_name);
  127. on_tabWidget_currentChanged(ui->tabWidget->currentIndex());
  128. ui->graphicsView_Map->setScene(editor->scene);
  129. ui->graphicsView_Map->setSceneRect(editor->scene->sceneRect());
  130. ui->graphicsView_Map->setFixedSize(editor->scene->width() + 2, editor->scene->height() + 2);
  131. ui->graphicsView_Objects_Map->setScene(editor->scene);
  132. ui->graphicsView_Objects_Map->setSceneRect(editor->scene->sceneRect());
  133. ui->graphicsView_Objects_Map->setFixedSize(editor->scene->width() + 2, editor->scene->height() + 2);
  134. ui->graphicsView_Objects_Map->editor = editor;
  135. ui->graphicsView_Connections->setScene(editor->scene);
  136. ui->graphicsView_Metatiles->setScene(editor->scene_metatiles);
  137. //ui->graphicsView_Metatiles->setSceneRect(editor->scene_metatiles->sceneRect());
  138. ui->graphicsView_Metatiles->setFixedSize(editor->metatiles_item->pixmap().width() + 2, editor->metatiles_item->pixmap().height() + 2);
  139. ui->graphicsView_Collision->setScene(editor->scene_collision_metatiles);
  140. //ui->graphicsView_Collision->setSceneRect(editor->scene_collision_metatiles->sceneRect());
  141. ui->graphicsView_Collision->setFixedSize(editor->collision_metatiles_item->pixmap().width() + 2, editor->collision_metatiles_item->pixmap().height() + 2);
  142. ui->graphicsView_Elevation->setScene(editor->scene_elevation_metatiles);
  143. //ui->graphicsView_Elevation->setSceneRect(editor->scene_elevation_metatiles->sceneRect());
  144. ui->graphicsView_Elevation->setFixedSize(editor->elevation_metatiles_item->pixmap().width() + 2, editor->elevation_metatiles_item->pixmap().height() + 2);
  145. displayMapProperties();
  146. setWindowTitle(map_name + " - " + editor->project->getProjectTitle() + " - pretmap");
  147. connect(editor->map, SIGNAL(mapChanged(Map*)), this, SLOT(onMapChanged(Map *)));
  148. connect(editor->map, SIGNAL(statusBarMessage(QString)), this, SLOT(setStatusBarMessage(QString)));
  149. setRecentMap(map_name);
  150. updateMapList();
  151. }
  152. void MainWindow::setRecentMap(QString map_name) {
  153. QSettings settings;
  154. QString key = "project:" + editor->project->root;
  155. QMap<QString, QVariant> qmap;
  156. if (settings.contains(key)) {
  157. qmap = settings.value(key).toMap();
  158. }
  159. qmap.insert("recent_map", map_name);
  160. settings.setValue(key, qmap);
  161. }
  162. void MainWindow::displayMapProperties() {
  163. ui->comboBox_Song->clear();
  164. ui->comboBox_Location->clear();
  165. ui->comboBox_Visibility->clear();
  166. ui->comboBox_Weather->clear();
  167. ui->comboBox_Type->clear();
  168. ui->comboBox_BattleScene->clear();
  169. ui->checkBox_ShowLocation->setChecked(false);
  170. if (!editor || !editor->map || !editor->project) {
  171. ui->frame_3->setEnabled(false);
  172. return;
  173. }
  174. ui->frame_3->setEnabled(true);
  175. Map *map = editor->map;
  176. Project *project = editor->project;
  177. QStringList songs = project->getSongNames();
  178. ui->comboBox_Song->addItems(songs);
  179. ui->comboBox_Song->setCurrentText(map->song);
  180. ui->comboBox_Location->addItems(project->getLocations());
  181. ui->comboBox_Location->setCurrentText(map->location);
  182. ui->comboBox_Visibility->addItems(project->getVisibilities());
  183. ui->comboBox_Visibility->setCurrentText(map->visibility);
  184. ui->comboBox_Weather->addItems(project->getWeathers());
  185. ui->comboBox_Weather->setCurrentText(map->weather);
  186. ui->comboBox_Type->addItems(project->getMapTypes());
  187. ui->comboBox_Type->setCurrentText(map->type);
  188. ui->comboBox_BattleScene->addItems(project->getBattleScenes());
  189. ui->comboBox_BattleScene->setCurrentText(map->battle_scene);
  190. ui->checkBox_ShowLocation->setChecked(map->show_location.toInt() > 0 || map->show_location == "TRUE");
  191. }
  192. void MainWindow::on_comboBox_Song_activated(const QString &song)
  193. {
  194. if (editor && editor->map) {
  195. editor->map->song = song;
  196. }
  197. }
  198. void MainWindow::on_comboBox_Location_activated(const QString &location)
  199. {
  200. if (editor && editor->map) {
  201. editor->map->location = location;
  202. }
  203. }
  204. void MainWindow::on_comboBox_Visibility_activated(const QString &visibility)
  205. {
  206. if (editor && editor->map) {
  207. editor->map->visibility = visibility;
  208. }
  209. }
  210. void MainWindow::on_comboBox_Weather_activated(const QString &weather)
  211. {
  212. if (editor && editor->map) {
  213. editor->map->weather = weather;
  214. }
  215. }
  216. void MainWindow::on_comboBox_Type_activated(const QString &type)
  217. {
  218. if (editor && editor->map) {
  219. editor->map->type = type;
  220. }
  221. }
  222. void MainWindow::on_comboBox_BattleScene_activated(const QString &battle_scene)
  223. {
  224. if (editor && editor->map) {
  225. editor->map->battle_scene = battle_scene;
  226. }
  227. }
  228. void MainWindow::on_checkBox_ShowLocation_clicked(bool checked)
  229. {
  230. if (editor && editor->map) {
  231. if (checked) {
  232. editor->map->show_location = "TRUE";
  233. } else {
  234. editor->map->show_location = "FALSE";
  235. }
  236. }
  237. }
  238. void MainWindow::loadDataStructures() {
  239. Project *project = editor->project;
  240. project->readMapAttributesTable();
  241. project->readAllMapAttributes();
  242. project->readItemNames();
  243. project->readFlagNames();
  244. project->readVarNames();
  245. }
  246. void MainWindow::populateMapList() {
  247. Project *project = editor->project;
  248. QIcon mapFolderIcon;
  249. mapFolderIcon.addFile(QStringLiteral(":/icons/folder_closed_map.ico"), QSize(), QIcon::Normal, QIcon::Off);
  250. mapFolderIcon.addFile(QStringLiteral(":/icons/folder_map.ico"), QSize(), QIcon::Normal, QIcon::On);
  251. QIcon folderIcon;
  252. folderIcon.addFile(QStringLiteral(":/icons/folder_closed.ico"), QSize(), QIcon::Normal, QIcon::Off);
  253. mapIcon = new QIcon;
  254. mapIcon->addFile(QStringLiteral(":/icons/map.ico"), QSize(), QIcon::Normal, QIcon::Off);
  255. mapIcon->addFile(QStringLiteral(":/icons/image.ico"), QSize(), QIcon::Normal, QIcon::On);
  256. mapListModel = new QStandardItemModel;
  257. mapGroupsModel = new QList<QStandardItem*>;
  258. QStandardItem *entry = new QStandardItem;
  259. entry->setText(project->getProjectTitle());
  260. entry->setIcon(folderIcon);
  261. entry->setEditable(false);
  262. mapListModel->appendRow(entry);
  263. QStandardItem *maps = new QStandardItem;
  264. maps->setText("maps");
  265. maps->setIcon(folderIcon);
  266. maps->setEditable(false);
  267. entry->appendRow(maps);
  268. project->readMapGroups();
  269. for (int i = 0; i < project->groupNames->length(); i++) {
  270. QString group_name = project->groupNames->value(i);
  271. QStandardItem *group = new QStandardItem;
  272. group->setText(group_name);
  273. group->setIcon(mapFolderIcon);
  274. group->setEditable(false);
  275. group->setData(group_name, Qt::UserRole);
  276. group->setData("map_group", MapListUserRoles::TypeRole);
  277. group->setData(i, MapListUserRoles::GroupRole);
  278. maps->appendRow(group);
  279. mapGroupsModel->append(group);
  280. QStringList names = project->groupedMapNames.value(i);
  281. for (int j = 0; j < names.length(); j++) {
  282. QString map_name = names.value(j);
  283. QStandardItem *map = createMapItem(map_name, i, j);
  284. group->appendRow(map);
  285. }
  286. }
  287. // Right-clicking on items in the map list tree view brings up a context menu.
  288. ui->mapList->setContextMenuPolicy(Qt::CustomContextMenu);
  289. connect(ui->mapList, SIGNAL(customContextMenuRequested(const QPoint &)),
  290. this, SLOT(onOpenMapListContextMenu(const QPoint &)));
  291. ui->mapList->setModel(mapListModel);
  292. ui->mapList->setUpdatesEnabled(true);
  293. ui->mapList->expandToDepth(2);
  294. ui->mapList->repaint();
  295. }
  296. QStandardItem* MainWindow::createMapItem(QString mapName, int groupNum, int inGroupNum) {
  297. QStandardItem *map = new QStandardItem;
  298. map->setText(QString("[%1.%2] ").arg(groupNum).arg(inGroupNum, 2, 10, QLatin1Char('0')) + mapName);
  299. map->setIcon(*mapIcon);
  300. map->setEditable(false);
  301. map->setData(mapName, Qt::UserRole);
  302. map->setData("map_name", MapListUserRoles::TypeRole);
  303. return map;
  304. }
  305. void MainWindow::onOpenMapListContextMenu(const QPoint &point)
  306. {
  307. QModelIndex index = ui->mapList->indexAt(point);
  308. if (!index.isValid()) {
  309. return;
  310. }
  311. QStandardItem *selectedItem = mapListModel->itemFromIndex(index);
  312. QVariant itemType = selectedItem->data(MapListUserRoles::TypeRole);
  313. if (!itemType.isValid()) {
  314. return;
  315. }
  316. // Build custom context menu depending on which type of item was selected (map group, map name, etc.)
  317. if (itemType == "map_group") {
  318. QString groupName = selectedItem->data(Qt::UserRole).toString();
  319. int groupNum = selectedItem->data(MapListUserRoles::GroupRole).toInt();
  320. QMenu* menu = new QMenu();
  321. QActionGroup* actions = new QActionGroup(menu);
  322. actions->addAction(menu->addAction("Add New Map to Group"))->setData(groupNum);
  323. connect(actions, SIGNAL(triggered(QAction*)), this, SLOT(onAddNewMapToGroupClick(QAction*)));
  324. menu->exec(QCursor::pos());
  325. }
  326. }
  327. void MainWindow::onAddNewMapToGroupClick(QAction* triggeredAction)
  328. {
  329. int groupNum = triggeredAction->data().toInt();
  330. QStandardItem* groupItem = mapGroupsModel->at(groupNum);
  331. QString newMapName = editor->project->getNewMapName();
  332. Map* newMap = editor->project->addNewMapToGroup(newMapName, groupNum);
  333. editor->project->saveMap(newMap);
  334. editor->project->saveAllDataStructures();
  335. int numMapsInGroup = groupItem->rowCount();
  336. QStandardItem *newMapItem = createMapItem(newMapName, groupNum, numMapsInGroup);
  337. groupItem->appendRow(newMapItem);
  338. setMap(newMapName);
  339. }
  340. void MainWindow::on_mapList_activated(const QModelIndex &index)
  341. {
  342. QVariant data = index.data(Qt::UserRole);
  343. if (!data.isNull()) {
  344. setMap(data.toString());
  345. }
  346. //updateMapList();
  347. }
  348. void MainWindow::markAllEdited(QAbstractItemModel *model) {
  349. QList<QModelIndex> list;
  350. list.append(QModelIndex());
  351. while (list.length()) {
  352. QModelIndex parent = list.takeFirst();
  353. for (int i = 0; i < model->rowCount(parent); i++) {
  354. QModelIndex index = model->index(i, 0, parent);
  355. if (model->hasChildren(index)) {
  356. list.append(index);
  357. }
  358. markEdited(index);
  359. }
  360. }
  361. }
  362. void MainWindow::markEdited(QModelIndex index) {
  363. QVariant data = index.data(Qt::UserRole);
  364. if (!data.isNull()) {
  365. QString map_name = data.toString();
  366. if (editor->project) {
  367. if (editor->project->map_cache->contains(map_name)) {
  368. // Just mark anything that's been opened for now.
  369. // TODO if (project->getMap()->saved)
  370. //ui->mapList->setExpanded(index, true);
  371. ui->mapList->setExpanded(index, editor->project->map_cache->value(map_name)->hasUnsavedChanges());
  372. }
  373. }
  374. }
  375. }
  376. void MainWindow::updateMapList() {
  377. QAbstractItemModel *model = ui->mapList->model();
  378. markAllEdited(model);
  379. }
  380. void MainWindow::on_action_Save_Project_triggered()
  381. {
  382. editor->saveProject();
  383. updateMapList();
  384. }
  385. void MainWindow::undo() {
  386. editor->undo();
  387. }
  388. void MainWindow::redo() {
  389. editor->redo();
  390. }
  391. void MainWindow::on_action_Save_triggered() {
  392. editor->save();
  393. updateMapList();
  394. }
  395. void MainWindow::on_tabWidget_2_currentChanged(int index)
  396. {
  397. if (index == 0) {
  398. editor->setEditingMap();
  399. } else if (index == 1) {
  400. editor->setEditingCollision();
  401. }
  402. }
  403. void MainWindow::on_action_Exit_triggered()
  404. {
  405. QApplication::quit();
  406. }
  407. void MainWindow::on_tabWidget_currentChanged(int index)
  408. {
  409. if (index == 0) {
  410. on_tabWidget_2_currentChanged(ui->tabWidget_2->currentIndex());
  411. } else if (index == 1) {
  412. editor->setEditingObjects();
  413. } else if (index == 3) {
  414. editor->setEditingConnections(ui->comboBox_ConnectionDirection->currentText().toLower());
  415. }
  416. }
  417. void MainWindow::on_actionUndo_triggered()
  418. {
  419. undo();
  420. }
  421. void MainWindow::on_actionRedo_triggered()
  422. {
  423. redo();
  424. }
  425. void MainWindow::on_toolButton_newObject_clicked()
  426. {
  427. if (editor) {
  428. DraggablePixmapItem *object = editor->addNewEvent();
  429. if (object) {
  430. //if (editor->selected_events->length()) {
  431. editor->selectMapObject(object, true);
  432. //}
  433. }
  434. updateSelectedObjects();
  435. }
  436. }
  437. // Should probably just pass layout and let the editor work it out
  438. void MainWindow::updateSelectedObjects() {
  439. QList<DraggablePixmapItem *> *all_events = editor->getObjects();
  440. QList<DraggablePixmapItem *> *events = all_events;
  441. if (editor->selected_events && editor->selected_events->length()) {
  442. events = editor->selected_events;
  443. }
  444. QMap<QString, int> map_obj_gfx_constants = editor->project->getMapObjGfxConstants();
  445. QList<ObjectPropertiesFrame *> frames;
  446. for (DraggablePixmapItem *item : *events) {
  447. ObjectPropertiesFrame *frame = new ObjectPropertiesFrame;
  448. // frame->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
  449. QSpinBox *x = frame->ui->spinBox_x;
  450. QSpinBox *y = frame->ui->spinBox_y;
  451. QSpinBox *z = frame->ui->spinBox_z;
  452. x->setValue(item->event->x());
  453. connect(x, SIGNAL(valueChanged(QString)), item, SLOT(set_x(QString)));
  454. connect(item, SIGNAL(xChanged(int)), x, SLOT(setValue(int)));
  455. y->setValue(item->event->y());
  456. connect(y, SIGNAL(valueChanged(QString)), item, SLOT(set_y(QString)));
  457. connect(item, SIGNAL(yChanged(int)), y, SLOT(setValue(int)));
  458. z->setValue(item->event->elevation());
  459. connect(z, SIGNAL(valueChanged(QString)), item, SLOT(set_elevation(QString)));
  460. connect(item, SIGNAL(elevationChanged(int)), z, SLOT(setValue(int)));
  461. QFont font;
  462. font.setCapitalization(QFont::Capitalize);
  463. frame->ui->label_name->setFont(font);
  464. QString event_type = item->event->get("event_type");
  465. QString map_name = item->event->get("map_name");
  466. frame->ui->label_name->setText(
  467. QString("%1 %2 %3")
  468. .arg(map_name)
  469. .arg(event_type)
  470. .arg(editor->project->getMap(map_name)->events.value(event_type).indexOf(item->event) + 1)
  471. );
  472. frame->ui->label_spritePixmap->setPixmap(item->event->pixmap);
  473. connect(item, SIGNAL(spriteChanged(QPixmap)), frame->ui->label_spritePixmap, SLOT(setPixmap(QPixmap)));
  474. frame->ui->sprite->setVisible(false);
  475. QMap<QString, QString> field_labels;
  476. field_labels["script_label"] = "Script";
  477. field_labels["event_flag"] = "Event Flag";
  478. field_labels["replacement"] = "Replacement";
  479. field_labels["behavior"] = "Behavior";
  480. field_labels["radius_x"] = "Movement Radius X";
  481. field_labels["radius_y"] = "Movement Radius Y";
  482. field_labels["property"] = "Property";
  483. field_labels["sight_radius"] = "Sight Radius";
  484. field_labels["destination_warp"] = "Destination Warp";
  485. field_labels["destination_map_name"] = "Destination Map";
  486. field_labels["script_var"] = "Var";
  487. field_labels["script_var_value"] = "Var Value";
  488. field_labels["type"] = "Type";
  489. field_labels["item"] = "Item";
  490. field_labels["item_unknown5"] = "Unknown 5";
  491. field_labels["item_unknown6"] = "Unknown 6";
  492. field_labels["weather"] = "Weather";
  493. field_labels["flag"] = "Flag";
  494. field_labels["secret_base_map"] = "Secret Base Map";
  495. QStringList fields;
  496. if (event_type == "object") {
  497. frame->ui->sprite->setVisible(true);
  498. frame->ui->comboBox_sprite->addItems(map_obj_gfx_constants.keys());
  499. frame->ui->comboBox_sprite->setCurrentText(item->event->get("sprite"));
  500. connect(frame->ui->comboBox_sprite, SIGNAL(activated(QString)), item, SLOT(set_sprite(QString)));
  501. /*
  502. frame->ui->script->setVisible(true);
  503. frame->ui->comboBox_script->addItem(item->event->get("script_label"));
  504. frame->ui->comboBox_script->setCurrentText(item->event->get("script_label"));
  505. //item->bind(frame->ui->comboBox_script, "script_label");
  506. connect(frame->ui->comboBox_script, SIGNAL(activated(QString)), item, SLOT(set_script(QString)));
  507. //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); });
  508. //connect(item, SIGNAL(scriptChanged(QString)), frame->ui->comboBox_script, SLOT(setValue(QString)));
  509. */
  510. fields << "behavior";
  511. fields << "radius_x";
  512. fields << "radius_y";
  513. fields << "script_label";
  514. fields << "event_flag";
  515. fields << "replacement";
  516. fields << "property";
  517. fields << "sight_radius";
  518. }
  519. else if (event_type == "warp") {
  520. fields << "destination_warp";
  521. fields << "destination_map_name";
  522. }
  523. else if (event_type == "trap") {
  524. fields << "script_label";
  525. fields << "script_var";
  526. fields << "script_var_value";
  527. }
  528. else if (event_type == "trap_weather") {
  529. fields << "weather";
  530. }
  531. else if (event_type == "sign") {
  532. fields << "type";
  533. fields << "script_label";
  534. }
  535. else if (event_type == "event_hidden_item") {
  536. fields << "item";
  537. fields << "flag";
  538. }
  539. else if (event_type == "event_secret_base") {
  540. fields << "secret_base_map";
  541. }
  542. for (QString key : fields) {
  543. QWidget *widget = new QWidget(frame);
  544. QFormLayout *fl = new QFormLayout(widget);
  545. fl->setContentsMargins(9, 0, 9, 0);
  546. QComboBox *combo = new QComboBox(widget);
  547. combo->setEditable(true);
  548. QString value = item->event->get(key);
  549. if (key == "destination_map_name") {
  550. if (!editor->project->mapNames->contains(value)) {
  551. combo->addItem(value);
  552. }
  553. combo->addItems(*editor->project->mapNames);
  554. } else if (key == "item") {
  555. if (!editor->project->itemNames->contains(value)) {
  556. combo->addItem(value);
  557. }
  558. combo->addItems(*editor->project->itemNames);
  559. } else if (key == "flag") {
  560. if (!editor->project->flagNames->contains(value)) {
  561. combo->addItem(value);
  562. }
  563. combo->addItems(*editor->project->flagNames);
  564. } else if (key == "script_var") {
  565. if (!editor->project->varNames->contains(value)) {
  566. combo->addItem(value);
  567. }
  568. combo->addItems(*editor->project->varNames);
  569. } else {
  570. combo->addItem(value);
  571. }
  572. combo->setCurrentText(value);
  573. fl->addRow(new QLabel(field_labels[key], widget), combo);
  574. widget->setLayout(fl);
  575. frame->layout()->addWidget(widget);
  576. item->bind(combo, key);
  577. }
  578. frames.append(frame);
  579. }
  580. //int scroll = ui->scrollArea_4->verticalScrollBar()->value();
  581. QWidget *target = ui->scrollAreaWidgetContents;
  582. if (target->children().length()) {
  583. qDeleteAll(target->children());
  584. }
  585. QVBoxLayout *layout = new QVBoxLayout(target);
  586. target->setLayout(layout);
  587. ui->scrollArea_4->setWidgetResizable(true);
  588. ui->scrollArea_4->setWidget(target);
  589. for (ObjectPropertiesFrame *frame : frames) {
  590. layout->addWidget(frame);
  591. }
  592. layout->addStretch(1);
  593. // doesn't work
  594. //QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
  595. //ui->scrollArea_4->ensureVisible(0, scroll);
  596. }
  597. void MainWindow::on_toolButton_deleteObject_clicked()
  598. {
  599. if (editor && editor->selected_events) {
  600. if (editor->selected_events->length()) {
  601. for (DraggablePixmapItem *item : *editor->selected_events) {
  602. editor->deleteEvent(item->event);
  603. if (editor->scene->items().contains(item)) {
  604. editor->scene->removeItem(item);
  605. }
  606. editor->selected_events->removeOne(item);
  607. }
  608. updateSelectedObjects();
  609. }
  610. }
  611. }
  612. void MainWindow::on_toolButton_Paint_clicked()
  613. {
  614. editor->map_edit_mode = "paint";
  615. checkToolButtons();
  616. }
  617. void MainWindow::on_toolButton_Select_clicked()
  618. {
  619. editor->map_edit_mode = "select";
  620. checkToolButtons();
  621. }
  622. void MainWindow::on_toolButton_Fill_clicked()
  623. {
  624. editor->map_edit_mode = "fill";
  625. checkToolButtons();
  626. }
  627. void MainWindow::on_toolButton_Dropper_clicked()
  628. {
  629. editor->map_edit_mode = "pick";
  630. checkToolButtons();
  631. }
  632. void MainWindow::checkToolButtons() {
  633. ui->toolButton_Paint->setChecked(editor->map_edit_mode == "paint");
  634. ui->toolButton_Select->setChecked(editor->map_edit_mode == "select");
  635. ui->toolButton_Fill->setChecked(editor->map_edit_mode == "fill");
  636. ui->toolButton_Dropper->setChecked(editor->map_edit_mode == "pick");
  637. }
  638. void MainWindow::onMapChanged(Map *map) {
  639. updateMapList();
  640. }
  641. void MainWindow::on_action_Export_Map_Image_triggered()
  642. {
  643. QString defaultFilepath = QString("%1/%2.png").arg(editor->project->root).arg(editor->map->name);
  644. QString filepath = QFileDialog::getSaveFileName(this, "Export Map Image", defaultFilepath, "Image Files (*.png *.jpg *.bmp)");
  645. if (!filepath.isEmpty()) {
  646. editor->map_item->pixmap().save(filepath);
  647. }
  648. }
  649. void MainWindow::on_comboBox_ConnectionDirection_currentIndexChanged(const QString &direction)
  650. {
  651. editor->showCurrentConnectionMap(direction.toLower());
  652. }
  653. void MainWindow::on_spinBox_ConnectionOffset_valueChanged(int offset)
  654. {
  655. editor->updateConnectionOffset(offset);
  656. }
  657. void MainWindow::on_comboBox_ConnectedMap_currentTextChanged(const QString &mapName)
  658. {
  659. editor->updateConnectionMap(mapName, ui->comboBox_ConnectionDirection->currentText().toLower());
  660. }