Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
671 | werner | 1 | /******************************************************************************************** |
2 | ** iLand - an individual based forest landscape and disturbance model |
||
3 | ** http://iland.boku.ac.at |
||
4 | ** Copyright (C) 2009- Werner Rammer, Rupert Seidl |
||
5 | ** |
||
6 | ** This program is free software: you can redistribute it and/or modify |
||
7 | ** it under the terms of the GNU General Public License as published by |
||
8 | ** the Free Software Foundation, either version 3 of the License, or |
||
9 | ** (at your option) any later version. |
||
10 | ** |
||
11 | ** This program is distributed in the hope that it will be useful, |
||
12 | ** but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
13 | ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
14 | ** GNU General Public License for more details. |
||
15 | ** |
||
16 | ** You should have received a copy of the GNU General Public License |
||
17 | ** along with this program. If not, see <http://www.gnu.org/licenses/>. |
||
18 | ********************************************************************************************/ |
||
19 | |||
105 | Werner | 20 | #ifndef MODELCONTROLLER_H |
21 | #define MODELCONTROLLER_H |
||
128 | Werner | 22 | #include <QObject> |
514 | werner | 23 | #include <QHash> |
642 | werner | 24 | #include "grid.h" |
646 | werner | 25 | #include "layeredgrid.h" |
128 | Werner | 26 | class Model; |
590 | werner | 27 | class MainWindow; |
596 | werner | 28 | class MapGrid; |
1066 | werner | 29 | class Species; |
596 | werner | 30 | |
128 | Werner | 31 | class ModelController: public QObject |
105 | Werner | 32 | { |
128 | Werner | 33 | Q_OBJECT |
105 | Werner | 34 | public: |
35 | ModelController(); |
||
128 | Werner | 36 | ~ModelController(); |
590 | werner | 37 | void setMainWindow(MainWindow *mw) { mViewerWindow = mw; } |
1041 | werner | 38 | MainWindow *mainWindow() { return mViewerWindow; } |
590 | werner | 39 | void connectSignals(); // connect signal/slots to the main window if available |
128 | Werner | 40 | Model *model() const { return mModel; } |
41 | // bool checkers... |
||
145 | Werner | 42 | bool canCreate(); ///< return true if the model can be created (settings loaded and model does not exist) |
43 | bool canDestroy(); ///< model may be destroyed |
||
44 | bool canRun(); ///< model may be run |
||
161 | werner | 45 | bool isRunning(); ///< model is running |
225 | werner | 46 | bool isFinished(); ///< returns true if there is a valid model state, but the run is finished |
776 | werner | 47 | bool isPaused(); ///< returns true if the model is currently paused |
837 | werner | 48 | bool hasError() { return mHasError; } ///< returns true if an error occured during the last operation |
49 | QString lastError() { return mLastError; } ///< error message of the last received error |
||
632 | werner | 50 | // simulation length |
497 | werner | 51 | int currentYear() const; ///< return current year of the model |
498 | werner | 52 | int totalYears() const { return mYearsToRun; } ///< returns total number of years to simulate |
632 | werner | 53 | // error handling |
54 | void throwError(const QString msg); |
||
161 | werner | 55 | // dynamic outputs (variable fields) |
802 | werner | 56 | void setDynamicOutputEnabled(bool enabled) { mDynamicOutputEnabled = enabled; } |
161 | werner | 57 | void setupDynamicOutput(QString fieldList); |
58 | QString dynamicOutput(); |
||
514 | werner | 59 | // some informational services |
1066 | werner | 60 | QList<const Species *> availableSpecies(); |
1064 | werner | 61 | void setLoadedJavascriptFile(QString filename) { mLastLoadedJSFile = filename; } |
62 | QString loadedJavascriptFile() const { return mLastLoadedJSFile; } |
||
514 | werner | 63 | |
1064 | werner | 64 | |
590 | werner | 65 | void saveScreenshot(QString file_name); ///< saves a screenshot of the central view widget to 'file_name' |
649 | werner | 66 | void addGrid(const FloatGrid *grid, const QString &name, const GridViewType view_type, double min_value, double max_value); |
596 | werner | 67 | void paintMap(MapGrid *map, double min_value, double max_value); |
646 | werner | 68 | |
647 | werner | 69 | void addLayers(const LayeredGridBase *layers, const QString &name); |
893 | werner | 70 | void removeLayers(const LayeredGridBase *layers); |
634 | werner | 71 | void setViewport(QPointF center_point, double scale_px_per_m); |
1061 | werner | 72 | |
73 | void setUIShortcuts(QVariantMap shortcuts); |
||
222 | werner | 74 | signals: |
776 | werner | 75 | void finished(QString errorMessage); ///< model has finished run (errorMessage is empty in case of success) |
76 | void year(int year); ///< signal indicating a year of the simulation has been processed |
||
77 | void bufferLogs(bool do_buffer); ///< signal indicating that logs should be buffered (true, model run mode) or that buffering should stop (false) for "interactive" mode |
||
78 | void stateChanged(); ///< is emitted when model started/stopped/paused |
||
128 | Werner | 79 | public slots: |
80 | void setFileName(QString initFileName); ///< set project file name |
||
81 | void create(); ///< create the model |
||
82 | void destroy(); ///< delete the model |
||
222 | werner | 83 | void run(int years); ///< run the model |
223 | werner | 84 | bool runYear(); ///< runs a single time step |
222 | werner | 85 | bool pause(); ///< pause execution, and if paused, continue to run. returns state *after* change, i.e. true=now in paused mode |
776 | werner | 86 | bool continueRun(); ///< continues execution if simulation was paused |
222 | werner | 87 | void cancel(); ///< cancel execution of the model |
652 | werner | 88 | void repaint(); ///< force a repaint of the main drawing window |
223 | werner | 89 | private slots: |
90 | void runloop(); |
||
128 | Werner | 91 | private: |
776 | werner | 92 | bool internalRun(); ///< runs the main loop |
93 | void internalStop(); ///< save outputs, stop the model execution |
||
802 | werner | 94 | void fetchDynamicOutput(); ///< execute the dynamic output and fetch data |
1182 | werner | 95 | void saveDebugOutputs(); ///< save debug outputs to file |
590 | werner | 96 | MainWindow *mViewerWindow; |
128 | Werner | 97 | Model *mModel; |
223 | werner | 98 | bool mPaused; |
225 | werner | 99 | bool mRunning; |
100 | bool mFinished; |
||
101 | bool mCanceled; |
||
837 | werner | 102 | bool mHasError; |
103 | QString mLastError; |
||
223 | werner | 104 | int mYearsToRun; |
128 | Werner | 105 | QString mInitFile; |
802 | werner | 106 | bool mDynamicOutputEnabled; |
161 | werner | 107 | QStringList mDynFieldList; |
108 | QStringList mDynData; |
||
1064 | werner | 109 | QString mLastLoadedJSFile; |
161 | werner | 110 | |
105 | Werner | 111 | }; |
112 | |||
113 | #endif // MODELCONTROLLER_H |