Loading [MathJax]/extensions/ams.js
ALMaSS  1.2 (after EcoStack, March 2024)
The Animal, Landscape and Man Simulation System
All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
NLCabbageSpring.h
Go to the documentation of this file.
1 
16 //
17 // NLCabbageSpring.h
18 //
19 
20 
21 #ifndef NLCABBAGESPRING_H
22 #define NLCABBAGESPRING_H
23 
24 #define NLCABBAGESPRING_BASE 20500
25 
28 #define NL_CABS_WINTER_PLOUGH a_field->m_user[1]
29 
35 typedef enum {
36  nl_cabs_start = 1, // Compulsory, must always be 1 (one).
62 
63 
72 class NLCabbageSpring: public Crop
73 {
74  public:
75  virtual bool Do( Farm *a_farm, LE *a_field, FarmEvent *a_ev );
76  NLCabbageSpring(TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape* a_L) : Crop(a_tov, a_toc, a_L)
77  {
78  // When we start it off, the first possible date for a farm operation is 20th October
79  // This information is used by other crops when they decide how much post processing of
80  // the management is allowed after harvest before the next crop starts.
81  m_first_date=g_date->DayInYear( 15,4 );
83  }
85  const int elements = 2 + (nl_cabs_foobar - NLCABBAGESPRING_BASE);
87 
88  FarmManagementCategory catlist[elements] =
89  {
90  fmc_Others, // zero element unused but must be here
91  fmc_Others,//nl_cabs_start = 1, // Compulsory, must always be 1 (one).
92  fmc_Others,//nl_cabs_sleep_all_day = NLCABBAGESPRING_BASE,
93  fmc_Cultivation,//nl_cabs_spring_plough_sandy,
94  fmc_Fertilizer,//nl_cabs_ferti_p1,
95  fmc_Fertilizer,//nl_cabs_ferti_s1,
96  fmc_Cultivation,//nl_cabs_preseeding_cultivator,
97  fmc_Others,//nl_cabs_spring_planting,
98  fmc_Cutting,//nl_cabs_weeding1,
99  fmc_Herbicide,//nl_cabs_herbicide1,
100  fmc_Cutting,//nl_cabs_weeding2,
101  fmc_Fungicide,//nl_cabs_fungicide1,
102  fmc_Fungicide,//nl_cabs_fungicide2,
103  fmc_Fungicide,//nl_cabs_fungicide3,
104  fmc_Insecticide,//nl_cabs_insecticide1,
105  fmc_Insecticide,//nl_cabs_insecticide2,
106  fmc_Insecticide,//nl_cabs_insecticide3,
107  fmc_Fertilizer,//nl_cabs_ferti_p2,
108  fmc_Fertilizer,//nl_cabs_ferti_s2,
109  fmc_Fertilizer,//nl_cabs_ferti_p3,
110  fmc_Fertilizer,//nl_cabs_ferti_s3,
111  fmc_Fertilizer,//nl_cabs_ferti_p4,
112  fmc_Fertilizer,//nl_cabs_ferti_s4,
113  fmc_Watering,//nl_cabs_watering,
114  fmc_Harvest//nl_cabs_harvest,
115  };
116  // Iterate over the catlist elements and copy them to vector
117  copy(begin(catlist), end(catlist), back_inserter(m_ManagementCategories));
118 
119  }
120 };
121 
122 #endif // NLCABBAGESPRING_H
123 
LE::GetMDates
int GetMDates(int a, int b)
Definition: Elements.h:405
nl_cabs_spring_planting
Definition: NLCabbageSpring.h:42
FarmEvent::m_forcespring
bool m_forcespring
Definition: Farm.h:392
fmc_Insecticide
Definition: LandscapeFarmingEnums.h:1005
nl_cabs_insecticide2
Definition: NLCabbageSpring.h:50
Farm::PreseedingCultivator
virtual bool PreseedingCultivator(LE *a_field, double a_user, int a_days)
Carry out preseeding cultivation on a_field (tilling set including cultivator and string roller to co...
Definition: FarmFuncs.cpp:312
Farm::SpringPlough
virtual bool SpringPlough(LE *a_field, double a_user, int a_days)
Carry out a ploughing event in the spring on a_field.
Definition: FarmFuncs.cpp:421
Farm::HerbicideTreat
virtual bool HerbicideTreat(LE *a_field, double a_user, int a_days)
Apply herbicide to a_field.
Definition: FarmFuncs.cpp:2025
Farm::IsStockFarmer
bool IsStockFarmer(void)
Definition: Farm.h:961
NLCabbageSpring::SetUpFarmCategoryInformation
void SetUpFarmCategoryInformation()
Definition: NLCabbageSpring.h:84
Farm::Harvest
virtual bool Harvest(LE *a_field, double a_user, int a_days)
Carry out a harvest on a_field.
Definition: FarmFuncs.cpp:1364
FarmEvent::m_lock
bool m_lock
Definition: Farm.h:384
Farm::FP_ManganeseSulphate
virtual bool FP_ManganeseSulphate(LE *a_field, double a_user, int a_days)
Apply Manganse Sulphate to a_field owned by an arable farmer.
Definition: FarmFuncs.cpp:840
Farm::ProductApplication
virtual bool ProductApplication(LE *a_field, double a_user, int a_days, double a_applicationrate, PlantProtectionProducts a_ppp, bool a_isgranularpesticide=false, int a_orcharddrifttype=0)
Apply test pesticide to a_field.
Definition: FarmFuncs.cpp:2267
FarmEvent
A struct to hold the information required to trigger a farm event.
Definition: Farm.h:372
LE::ClearManagementActionSum
void ClearManagementActionSum()
clears the management action counters
Definition: Elements.h:247
Farm::FP_NPK
virtual bool FP_NPK(LE *a_field, double a_user, int a_days)
Apply NPK fertilizer, on a_field owned by an arable farmer.
Definition: FarmFuncs.cpp:645
nl_cabs_ferti_s4
Definition: NLCabbageSpring.h:57
nl_cabs_fungicide3
Definition: NLCabbageSpring.h:48
tov_NLCabbageSpring
Definition: LandscapeFarmingEnums.h:267
Farm::DoIt_prob
bool DoIt_prob(double a_probability)
Return chance out of 0 to 1.
Definition: Farm.cpp:864
g_date
class Calendar * g_date
Definition: Calendar.cpp:37
nl_cabs_weeding1
Definition: NLCabbageSpring.h:43
fmc_Herbicide
Definition: LandscapeFarmingEnums.h:1006
nl_cabs_fungicide1
Definition: NLCabbageSpring.h:46
Farm::SpringSow
virtual bool SpringSow(LE *a_field, double a_user, int a_days, double a_seed_coating_amount=-1, PlantProtectionProducts a_ppp=ppp_foobar)
Carry out a sowing event in the spring on a_field.
Definition: FarmFuncs.cpp:501
Crop::m_base_elements_no
int m_base_elements_no
Definition: Farm.h:505
NLCabbageSpringToDo
NLCabbageSpringToDo
Definition: NLCabbageSpring.h:35
nl_cabs_sleep_all_day
Definition: NLCabbageSpring.h:37
Crop::m_first_date
int m_first_date
Definition: Farm.h:501
Farm::FA_NPK
virtual bool FA_NPK(LE *a_field, double a_user, int a_days)
Apply NPK fertilizer to a_field owned by an stock farmer.
Definition: FarmFuncs.cpp:982
Farm::FungicideTreat
virtual bool FungicideTreat(LE *a_field, double a_user, int a_days)
Apply fungicide to a_field.
Definition: FarmFuncs.cpp:2101
nl_cabs_preseeding_cultivator
Definition: NLCabbageSpring.h:41
nl_cabs_ferti_p3
Definition: NLCabbageSpring.h:54
Crop
The base class for all crops.
Definition: Farm.h:495
cfg_pest_product_amounts
CfgArray_Double cfg_pest_product_amounts
Amount of pesticide applied in grams of active substance per hectare for each of the 10 pesticides.
CfgBool::value
bool value() const
Definition: Configurator.h:164
nl_cabs_weeding2
Definition: NLCabbageSpring.h:45
fmc_Cutting
Definition: LandscapeFarmingEnums.h:1009
nl_cabs_watering
Definition: NLCabbageSpring.h:58
nl_cabs_harvest
Definition: NLCabbageSpring.h:59
Landscape
The landscape class containing all environmental and topographical data.
Definition: Landscape.h:142
fmc_Fertilizer
Definition: LandscapeFarmingEnums.h:1004
cfg_pest_cabbage_on
CfgBool cfg_pest_cabbage_on
Turn on pesticides for cabbage.
Calendar::Date
long Date(void)
Definition: Calendar.h:57
NLCABBAGESPRING_BASE
#define NLCABBAGESPRING_BASE
Definition: NLCabbageSpring.h:24
Farm::FP_AmmoniumSulphate
virtual bool FP_AmmoniumSulphate(LE *a_field, double a_user, int a_days)
Apply Ammonium Sulphate to a_field owned by an arable farmer.
Definition: FarmFuncs.cpp:882
fmc_Cultivation
Definition: LandscapeFarmingEnums.h:1008
LE::GetSoilType
int GetSoilType()
Definition: Elements.h:302
NL_CABS_WINTER_PLOUGH
#define NL_CABS_WINTER_PLOUGH
A flag used to indicate autumn ploughing status.
Definition: NLCabbageSpring.h:28
CfgBool
Bool configurator entry class.
Definition: Configurator.h:155
nl_cabs_spring_plough_sandy
Definition: NLCabbageSpring.h:38
fmc_Others
Definition: LandscapeFarmingEnums.h:1003
fmc_Watering
Definition: LandscapeFarmingEnums.h:1011
Farm::FA_ManganeseSulphate
virtual bool FA_ManganeseSulphate(LE *a_field, double a_user, int a_days)
Apply manganese sulphate to a_field owned by an stock farmer.
Definition: FarmFuncs.cpp:1095
Calendar::OldDays
long OldDays(void)
Definition: Calendar.h:60
NLCabbageSpring
NLCabbageSpring class .
Definition: NLCabbageSpring.h:72
l_pest_insecticide_amount
CfgFloat l_pest_insecticide_amount
MapErrorMsg::Warn
void Warn(MapErrorState a_level, std::string a_msg1, std::string a_msg2)
Definition: MapErrorMsg.cpp:69
CfgArray_Double
Definition: Configurator.h:208
nl_cabs_insecticide3
Definition: NLCabbageSpring.h:51
Crop::StartUpCrop
bool StartUpCrop(int a_spring, std::vector< std::vector< int >> a_flexdates, int a_todo)
Holds the translation between the farm operation enum for each cropand the farm management category a...
Definition: Farm.cpp:652
nl_cabs_herbicide1
Definition: NLCabbageSpring.h:44
Crop::m_farm
Farm * m_farm
Definition: Farm.h:498
Crop::m_field
LE * m_field
Definition: Farm.h:499
Crop::m_ManagementCategories
vector< FarmManagementCategory > m_ManagementCategories
Holds the translation between the farm operation enum for each crop and the farm management category ...
Definition: Farm.h:530
CfgArray_Double::value
std::vector< double > value() const
Definition: Configurator.h:219
FarmEvent::m_todo
int m_todo
Definition: Farm.h:388
Farm::InsecticideTreat
virtual bool InsecticideTreat(LE *a_field, double a_user, int a_days)
Apply insecticide to a_field.
Definition: FarmFuncs.cpp:2135
nl_cabs_ferti_s2
Definition: NLCabbageSpring.h:53
nl_cabs_start
Definition: NLCabbageSpring.h:36
LE::GetGreenBiomass
virtual double GetGreenBiomass(void)
Definition: Elements.h:160
Farm::ShallowHarrow
virtual bool ShallowHarrow(LE *a_field, double a_user, int a_days)
Carry out a shallow harrow event on a_field, e.g., after grass cutting event.
Definition: FarmFuncs.cpp:473
TTypesOfCrops
TTypesOfCrops
Definition: LandscapeFarmingEnums.h:781
nl_cabs_foobar
Definition: NLCabbageSpring.h:60
LE
Definition: Elements.h:86
Farm::Water
virtual bool Water(LE *a_field, double a_user, int a_days)
Carry out a watering on a_field.
Definition: FarmFuncs.cpp:1330
Crop::m_last_date
int m_last_date
Definition: Farm.h:503
g_msg
MapErrorMsg * g_msg
Definition: MapErrorMsg.cpp:41
nl_cabs_fungicide2
Definition: NLCabbageSpring.h:47
nl_cabs_ferti_p4
Definition: NLCabbageSpring.h:56
Farm::FA_AmmoniumSulphate
virtual bool FA_AmmoniumSulphate(LE *a_field, double a_user, int a_days)
Apply ammonium sulphate to a_field owned by an stock farmer.
Definition: FarmFuncs.cpp:1081
TTypesOfVegetation
TTypesOfVegetation
Values that represent the types of vegetation that are represented in ALMaSS.
Definition: LandscapeFarmingEnums.h:192
CfgInt
Integer configurator entry class.
Definition: Configurator.h:102
Farm
The base class for all farm types.
Definition: Farm.h:755
nl_cabs_insecticide1
Definition: NLCabbageSpring.h:49
Crop::m_date_modifier
static int m_date_modifier
Holds a value that shifts test pesticide use by this many days in crops modified to use it.
Definition: Farm.h:514
CfgFloat
Double configurator entry class.
Definition: Configurator.h:126
nl_cabs_ferti_s1
Definition: NLCabbageSpring.h:40
fmc_Harvest
Definition: LandscapeFarmingEnums.h:1012
Calendar::DayInYear
int DayInYear(void)
Definition: Calendar.h:58
nl_cabs_ferti_p2
Definition: NLCabbageSpring.h:52
cfg_CAB_InsecticideMonth
CfgInt cfg_CAB_InsecticideMonth
Provided to allow configuration control of the first insecticide spray in cabbage crops - this change...
NLCabbageSpring::NLCabbageSpring
NLCabbageSpring(TTypesOfVegetation a_tov, TTypesOfCrops a_toc, Landscape *a_L)
Definition: NLCabbageSpring.h:76
cfg_CAB_InsecticideDay
CfgInt cfg_CAB_InsecticideDay
Provided to allow configuration control of the first insecticide spray in cabbage crops - this change...
nl_cabs_ferti_s3
Definition: NLCabbageSpring.h:55
NLCabbageSpring::Do
virtual bool Do(Farm *a_farm, LE *a_field, FarmEvent *a_ev)
The one and only method for a crop management plan. All farm actions go through here.
Definition: NLCabbageSpring.cpp:64
Crop::m_ev
FarmEvent * m_ev
Definition: Farm.h:500
WARN_BUG
Definition: MapErrorMsg.h:34
ppp_1
Definition: LandscapeFarmingEnums.h:1079
fmc_Fungicide
Definition: LandscapeFarmingEnums.h:1007
FarmManagementCategory
FarmManagementCategory
Definition: LandscapeFarmingEnums.h:1001
nl_cabs_ferti_p1
Definition: NLCabbageSpring.h:39
Crop::SimpleEvent_
void SimpleEvent_(long a_date, int a_todo, bool a_lock, Farm *a_farm, LE *a_field)
Adds an event to this crop management without relying on member variables.
Definition: Farm.cpp:751