2022-09-24 22:55:05 +02:00
|
|
|
#pragma once
|
2022-09-18 01:23:17 +02:00
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <QGraphicsScene>
|
|
|
|
#include <QStandardItemModel>
|
|
|
|
#include "mapcontroller.h"
|
|
|
|
#include "../lib/Terrain.h"
|
2022-11-27 19:14:14 +02:00
|
|
|
#include "resourceExtractor/ResourceConverter.h"
|
2022-09-18 01:23:17 +02:00
|
|
|
|
|
|
|
class CMap;
|
|
|
|
class ObjectBrowser;
|
|
|
|
class CGObjectInstance;
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class MainWindow;
|
|
|
|
const QString teamName = "VCMI Team";
|
|
|
|
const QString appName = "VCMI Map Editor";
|
|
|
|
}
|
|
|
|
|
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
const QString mainWindowSizeSetting = "MainWindow/Size";
|
|
|
|
const QString mainWindowPositionSetting = "MainWindow/Position";
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit MainWindow(QWidget *parent = nullptr);
|
|
|
|
~MainWindow();
|
|
|
|
|
|
|
|
void initializeMap(bool isNew);
|
|
|
|
|
|
|
|
void saveMap();
|
|
|
|
bool openMap(const QString &);
|
|
|
|
|
|
|
|
MapView * mapView();
|
|
|
|
|
|
|
|
void loadObjectsTree();
|
|
|
|
|
|
|
|
void setStatusMessage(const QString & status);
|
|
|
|
|
|
|
|
int getMapLevel() const {return mapLevel;}
|
|
|
|
|
|
|
|
MapController controller;
|
|
|
|
|
|
|
|
private slots:
|
2022-10-08 20:55:15 +02:00
|
|
|
void on_actionOpen_triggered();
|
2022-09-18 01:23:17 +02:00
|
|
|
|
|
|
|
void on_actionSave_as_triggered();
|
|
|
|
|
|
|
|
void on_actionNew_triggered();
|
|
|
|
|
|
|
|
void on_actionLevel_triggered();
|
|
|
|
|
|
|
|
void on_actionSave_triggered();
|
|
|
|
|
|
|
|
void on_actionErase_triggered();
|
|
|
|
|
|
|
|
void on_actionUndo_triggered();
|
|
|
|
|
|
|
|
void on_actionRedo_triggered();
|
|
|
|
|
|
|
|
void on_actionPass_triggered(bool checked);
|
|
|
|
|
|
|
|
void on_actionGrid_triggered(bool checked);
|
|
|
|
|
|
|
|
void on_toolBrush_clicked(bool checked);
|
|
|
|
|
|
|
|
void on_toolArea_clicked(bool checked);
|
|
|
|
|
2022-10-08 21:54:45 +02:00
|
|
|
void terrainButtonClicked(TerrainId terrain);
|
2022-10-08 22:11:29 +02:00
|
|
|
void roadOrRiverButtonClicked(ui8 type, bool isRoad);
|
2022-09-18 01:23:17 +02:00
|
|
|
|
|
|
|
void on_toolErase_clicked();
|
|
|
|
|
|
|
|
void on_treeView_activated(const QModelIndex &index);
|
|
|
|
|
|
|
|
void on_terrainFilterCombo_currentTextChanged(const QString &arg1);
|
|
|
|
|
|
|
|
void on_filter_textChanged(const QString &arg1);
|
|
|
|
|
|
|
|
void on_actionFill_triggered();
|
|
|
|
|
|
|
|
void on_toolBrush2_clicked(bool checked);
|
|
|
|
|
|
|
|
void on_toolBrush4_clicked(bool checked);
|
|
|
|
|
|
|
|
void on_inspectorWidget_itemChanged(QTableWidgetItem *item);
|
|
|
|
|
|
|
|
void on_actionMapSettings_triggered();
|
|
|
|
|
|
|
|
void on_actionPlayers_settings_triggered();
|
|
|
|
|
|
|
|
void on_actionValidate_triggered();
|
|
|
|
|
|
|
|
void on_actionUpdate_appearance_triggered();
|
|
|
|
|
|
|
|
void on_actionRecreate_obstacles_triggered();
|
|
|
|
|
|
|
|
void switchDefaultPlayer(const PlayerColor &);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
|
|
|
void treeViewSelected(const QModelIndex &selected, const QModelIndex &deselected);
|
|
|
|
void loadInspector(CGObjectInstance * obj, bool switchTab);
|
|
|
|
void mapChanged();
|
|
|
|
void enableUndo(bool enable);
|
|
|
|
void enableRedo(bool enable);
|
|
|
|
void onSelectionMade(int level, bool anythingSelected);
|
|
|
|
void onPlayersChanged();
|
|
|
|
|
|
|
|
void displayStatus(const QString& message, int timeout = 2000);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void preparePreview(const QModelIndex &index, bool createNew);
|
|
|
|
void addGroupIntoCatalog(const std::string & groupName, bool staticOnly);
|
|
|
|
void addGroupIntoCatalog(const std::string & groupName, bool useCustomName, bool staticOnly, int ID);
|
|
|
|
|
|
|
|
QAction * getActionPlayer(const PlayerColor &);
|
|
|
|
|
|
|
|
void changeBrushState(int idx);
|
|
|
|
void setTitle();
|
|
|
|
|
|
|
|
void closeEvent(QCloseEvent *event) override;
|
|
|
|
|
|
|
|
bool getAnswerAboutUnsavedChanges();
|
|
|
|
|
|
|
|
void loadUserSettings();
|
|
|
|
void saveUserSettings();
|
|
|
|
|
2022-11-27 19:14:14 +02:00
|
|
|
void parseCommandLine(ExtractionOptions & extractionOptions);
|
2022-11-20 18:48:31 +02:00
|
|
|
|
2022-09-18 01:23:17 +02:00
|
|
|
private:
|
2022-09-24 22:55:05 +02:00
|
|
|
Ui::MainWindow * ui;
|
2022-09-18 01:23:17 +02:00
|
|
|
ObjectBrowser * objectBrowser = nullptr;
|
|
|
|
QGraphicsScene * scenePreview;
|
|
|
|
|
|
|
|
QString filename;
|
|
|
|
bool unsaved = false;
|
|
|
|
|
|
|
|
QStandardItemModel objectsModel;
|
|
|
|
|
|
|
|
int mapLevel = 0;
|
|
|
|
|
|
|
|
std::set<int> catalog;
|
2022-11-20 18:48:31 +02:00
|
|
|
|
|
|
|
// command line options
|
|
|
|
QString mapFilePath; // FilePath to the H3 or VCMI map to open
|
2022-11-24 22:52:31 +02:00
|
|
|
};
|