Rev 1221 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1033 | 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 | ********************************************************************************************/ |
||
902 | werner | 19 | #ifndef ACTPLANTING_H |
20 | #define ACTPLANTING_H |
||
21 | |||
22 | #include "activity.h" |
||
23 | #include "species.h" |
||
24 | |||
934 | werner | 25 | class ResourceUnitSpecies; // forward |
26 | |||
907 | werner | 27 | namespace ABE { |
902 | werner | 28 | |
29 | class FMSTP; // forward |
||
30 | class FMStand; // forward |
||
31 | |||
32 | class ActPlanting : public Activity |
||
33 | { |
||
34 | public: |
||
35 | ActPlanting(FMSTP *parent); |
||
36 | QString type() const { return "planting"; } |
||
37 | void setup(QJSValue value); |
||
38 | bool execute(FMStand *stand); |
||
39 | //bool evaluate(FMStand *stand); |
||
40 | QStringList info(); |
||
934 | werner | 41 | |
42 | // run an one-time planting item |
||
43 | static void runSinglePlantingItem(FMStand *stand, QJSValue value); |
||
902 | werner | 44 | private: |
45 | struct SPlantingItem { |
||
951 | werner | 46 | SPlantingItem(): species(0), fraction(0.), height(0.05), age(1), clear(false), grouped(false), group_type(-1), group_random_count(-1), offset(0), spacing(0) {} |
902 | werner | 47 | Species *species; |
48 | double fraction; |
||
911 | werner | 49 | double height; |
951 | werner | 50 | int age; |
902 | werner | 51 | bool clear; |
911 | werner | 52 | bool grouped; ///< true for pattern creation |
53 | int group_type; ///< index of the pattern in the pattern list |
||
912 | werner | 54 | int group_random_count; ///< if >0: number of random patterns |
911 | werner | 55 | int offset; ///< offset (in LIF-pixels) for the pattern algorithm |
56 | int spacing; ///< distance between two applications of a pattern |
||
902 | werner | 57 | bool setup(QJSValue value); |
1203 | werner | 58 | void run(FMStand *stand); |
902 | werner | 59 | }; |
60 | QVector<SPlantingItem> mItems; |
||
911 | werner | 61 | bool mRequireLoading; |
62 | |||
951 | werner | 63 | static QStringList mAllowedProperties; |
911 | werner | 64 | |
951 | werner | 65 | |
902 | werner | 66 | }; |
67 | |||
68 | } // end namespace |
||
69 | #endif // ACTPLANTING_H |