No Description

mainwindow.cpp 25KB

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