1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-16 10:19:47 +02:00
vcmi/AI/VCAI/ResourceManager.h

100 lines
3.4 KiB
C++
Raw Normal View History

2018-07-26 12:06:55 +02:00
/*
* ResourceManager.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
#include "AIUtility.h"
#include "../../lib/GameConstants.h"
#include "../../lib/VCMI_Lib.h"
#include "VCAI.h"
#include <boost/heap/binomial_heap.hpp>
class AIhelper;
class IResourceManager;
struct DLL_EXPORT ResourceObjective
{
ResourceObjective() = default;
2018-07-27 08:10:21 +02:00
ResourceObjective(const TResources &res, Goals::TSubgoal goal);
2018-07-26 12:06:55 +02:00
bool operator < (const ResourceObjective &ro) const;
TResources resources; //how many resources do we need
2018-07-26 12:06:55 +02:00
Goals::TSubgoal goal; //what for (build, gather army etc...)
};
class DLL_EXPORT IResourceManager //: public: IAbstractManager
2018-07-26 12:06:55 +02:00
{
public:
virtual ~IResourceManager() = default;
2018-10-09 21:31:44 +02:00
virtual void init(CPlayerSpecificInfoCallback * CB) = 0;
2018-07-26 12:06:55 +02:00
virtual void setAI(VCAI * AI) = 0;
virtual TResources reservedResources() const = 0;
virtual TResources freeResources() const = 0;
virtual TResource freeGold() const = 0;
virtual TResources allResources() const = 0;
virtual TResource allGold() const = 0;
virtual Goals::TSubgoal whatToDo() const = 0;//get highest-priority goal
virtual Goals::TSubgoal whatToDo(TResources &res, Goals::TSubgoal goal) = 0;
virtual bool containsObjective(Goals::TSubgoal goal) const = 0;
2018-07-26 12:06:55 +02:00
virtual bool hasTasksLeft() const = 0;
virtual bool removeOutdatedObjectives(std::function<bool(const Goals::TSubgoal &)> predicate) = 0; //remove ResourceObjectives from queue if ResourceObjective->goal meets specific criteria
2018-07-26 12:06:55 +02:00
virtual bool notifyGoalCompleted(Goals::TSubgoal goal) = 0;
};
class DLL_EXPORT ResourceManager : public IResourceManager
{
/*Resource Manager is a smart shopping list for AI to help
Uses priority queue based on CGoal.priority */
friend class VCAI;
friend class AIhelper;
friend struct SetGlobalState;
CPlayerSpecificInfoCallback * cb; //this is enough, but we downcast from CCallback
VCAI * ai;
public:
ResourceManager() = default;
ResourceManager(CPlayerSpecificInfoCallback * CB, VCAI * AI = nullptr); //for tests only
bool canAfford(const TResources & cost) const;
TResources reservedResources() const override;
TResources freeResources() const override;
TResource freeGold() const override;
TResources allResources() const override;
TResource allGold() const override;
Goals::TSubgoal whatToDo() const override; //peek highest-priority goal
Goals::TSubgoal whatToDo(TResources & res, Goals::TSubgoal goal) override; //can we afford this goal or need to CollectRes?
bool containsObjective(Goals::TSubgoal goal) const override;
2018-07-26 12:06:55 +02:00
bool hasTasksLeft() const override;
bool removeOutdatedObjectives(std::function<bool(const Goals::TSubgoal &)> predicate) override;
bool notifyGoalCompleted(Goals::TSubgoal goal) override;
2018-07-26 12:06:55 +02:00
protected: //not-const actions only for AI
virtual void reserveResources(const TResources & res, Goals::TSubgoal goal = Goals::TSubgoal());
2018-07-26 12:06:55 +02:00
virtual bool updateGoal(Goals::TSubgoal goal); //new goal must have same properties but different priority
2018-07-27 08:10:21 +02:00
virtual bool tryPush(const ResourceObjective &o);
2018-07-26 12:06:55 +02:00
//inner processing
virtual TResources estimateIncome() const;
virtual Goals::TSubgoal collectResourcesForOurGoal(ResourceObjective &o) const;
2018-10-09 21:31:44 +02:00
void init(CPlayerSpecificInfoCallback * CB) override;
2018-07-26 12:06:55 +02:00
void setAI(VCAI * AI) override;
private:
TResources saving;
boost::heap::binomial_heap<ResourceObjective> queue;
void dumpToLog() const;
};