Rev 1221 |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
#ifndef AGENT_H
#define AGENT_H
#include <QJSValue>
#include "scheduler.h"
namespace ABE {
class AgentType; // forward
class FMUnit; // forward
/********************************************************************************************
** iLand - an individual based forest landscape and disturbance model
** http://iland.boku.ac.at
** Copyright (C) 2009- Werner Rammer, Rupert Seidl
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
********************************************************************************************/
/** The Agent is the core element of the agent based forest management model and simulates
* a foresters decisions. */
class Agent
{
public:
Agent(AgentType *type, QJSValue js);
AgentType *type() const {return mType; }
QString name() const { return mName; }
void setName(const QString &name);
QJSValue jsAgent() const { return mJSAgent; }
const SchedulerOptions &schedulerOptions() const { return mSchedulerOptions; }
/// add a unit to the list of managed units
void addUnit(FMUnit *unit) {mUnits.push_back(unit);}
// agent properties
double useSustainableHarvest() const;
void setup();
private:
static int mAgentsCreated;
// link to the base agent type
AgentType *mType;
// the javascript object representing the agent:
QJSValue mJSAgent;
SchedulerOptions mSchedulerOptions; ///< agent specific scheduler options
QVector<FMUnit*> mUnits; ///< list of units managed by the agent
// agent properties
QString mName;
double mKnowledge;
double mEconomy;
double mExperimentation;
double mAltruism;
double mRisk;
};
} // namespace
#endif // AGENT_H