Bez popisu

mainwindow.cpp 24KB

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