2021-05-15 20:36:50 +02:00
|
|
|
/*
|
|
|
|
* ArmyManager.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
|
|
|
|
|
2021-05-16 13:55:57 +02:00
|
|
|
#include "../AIUtility.h"
|
2021-05-15 20:36:50 +02:00
|
|
|
|
2021-05-16 13:55:57 +02:00
|
|
|
#include "../../../lib/GameConstants.h"
|
|
|
|
#include "../../../lib/VCMI_Lib.h"
|
|
|
|
#include "../../../lib/CTownHandler.h"
|
|
|
|
#include "../../../lib/CBuildingHandler.h"
|
2021-05-16 13:55:47 +02:00
|
|
|
|
2022-09-26 20:01:07 +02:00
|
|
|
namespace NKAI
|
|
|
|
{
|
|
|
|
|
2021-05-16 13:55:47 +02:00
|
|
|
class Nullkiller;
|
2021-05-15 20:36:50 +02:00
|
|
|
|
|
|
|
struct SlotInfo
|
|
|
|
{
|
|
|
|
const CCreature * creature;
|
|
|
|
int count;
|
|
|
|
uint64_t power;
|
|
|
|
};
|
|
|
|
|
2021-05-16 13:15:12 +02:00
|
|
|
struct ArmyUpgradeInfo
|
|
|
|
{
|
|
|
|
std::vector<SlotInfo> resultingArmy;
|
2023-04-17 23:11:16 +02:00
|
|
|
uint64_t upgradeValue = 0;
|
2021-05-16 13:15:12 +02:00
|
|
|
TResources upgradeCost;
|
2023-06-11 18:21:50 +02:00
|
|
|
|
|
|
|
void addArmyToBuy(std::vector<SlotInfo> army);
|
|
|
|
void addArmyToGet(std::vector<SlotInfo> army);
|
2021-05-16 13:15:12 +02:00
|
|
|
};
|
|
|
|
|
2021-05-15 20:36:50 +02:00
|
|
|
class DLL_EXPORT IArmyManager //: public: IAbstractManager
|
|
|
|
{
|
|
|
|
public:
|
2022-09-22 10:02:16 +02:00
|
|
|
virtual ~IArmyManager() = default;
|
2021-05-16 13:15:03 +02:00
|
|
|
virtual void update() = 0;
|
2021-05-15 20:36:50 +02:00
|
|
|
virtual ui64 howManyReinforcementsCanBuy(const CCreatureSet * target, const CGDwelling * source) const = 0;
|
2021-05-16 13:59:35 +02:00
|
|
|
virtual ui64 howManyReinforcementsCanBuy(
|
2021-05-16 14:39:38 +02:00
|
|
|
const CCreatureSet * targetArmy,
|
|
|
|
const CGDwelling * dwelling,
|
2023-06-04 15:02:02 +02:00
|
|
|
const TResources & availableResources,
|
|
|
|
uint8_t turn = 0) const = 0;
|
|
|
|
|
2021-05-16 13:56:42 +02:00
|
|
|
virtual ui64 howManyReinforcementsCanGet(const CGHeroInstance * hero, const CCreatureSet * source) const = 0;
|
2023-06-04 15:02:02 +02:00
|
|
|
virtual ui64 howManyReinforcementsCanGet(
|
|
|
|
const IBonusBearer * armyCarrier,
|
|
|
|
const CCreatureSet * target,
|
|
|
|
const CCreatureSet * source) const = 0;
|
|
|
|
|
2021-05-16 13:56:42 +02:00
|
|
|
virtual std::vector<SlotInfo> getBestArmy(const IBonusBearer * armyCarrier, const CCreatureSet * target, const CCreatureSet * source) const = 0;
|
2021-05-15 20:36:50 +02:00
|
|
|
virtual std::vector<SlotInfo>::iterator getWeakestCreature(std::vector<SlotInfo> & army) const = 0;
|
|
|
|
virtual std::vector<SlotInfo> getSortedSlots(const CCreatureSet * target, const CCreatureSet * source) const = 0;
|
2023-06-11 18:21:50 +02:00
|
|
|
virtual std::vector<SlotInfo> toSlotInfo(std::vector<creInfo> creatures) const = 0;
|
2023-06-04 15:02:02 +02:00
|
|
|
|
|
|
|
virtual std::vector<creInfo> getArmyAvailableToBuy(const CCreatureSet * hero, const CGDwelling * dwelling) const = 0;
|
|
|
|
virtual std::vector<creInfo> getArmyAvailableToBuy(
|
|
|
|
const CCreatureSet * hero,
|
|
|
|
const CGDwelling * dwelling,
|
|
|
|
TResources availableRes,
|
|
|
|
uint8_t turn = 0) const = 0;
|
|
|
|
|
2023-06-11 18:21:50 +02:00
|
|
|
virtual uint64_t evaluateStackPower(const Creature * creature, int count) const = 0;
|
2021-05-16 13:15:03 +02:00
|
|
|
virtual SlotInfo getTotalCreaturesAvailable(CreatureID creatureID) const = 0;
|
2021-05-16 19:53:11 +02:00
|
|
|
virtual ArmyUpgradeInfo calculateCreaturesUpgrade(
|
2021-05-16 13:15:12 +02:00
|
|
|
const CCreatureSet * army,
|
|
|
|
const CGObjectInstance * upgrader,
|
|
|
|
const TResources & availableResources) const = 0;
|
2021-05-16 14:39:38 +02:00
|
|
|
virtual std::shared_ptr<CCreatureSet> getArmyAvailableToBuyAsCCreatureSet(const CGDwelling * dwelling, TResources availableRes) const = 0;
|
2021-05-15 20:36:50 +02:00
|
|
|
};
|
|
|
|
|
2022-06-11 17:45:34 +02:00
|
|
|
class StackUpgradeInfo;
|
2021-05-16 13:15:12 +02:00
|
|
|
|
2021-05-15 20:36:50 +02:00
|
|
|
class DLL_EXPORT ArmyManager : public IArmyManager
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
CPlayerSpecificInfoCallback * cb; //this is enough, but we downcast from CCallback
|
2020-05-04 17:58:43 +02:00
|
|
|
const Nullkiller * ai;
|
2021-05-16 13:15:03 +02:00
|
|
|
std::map<CreatureID, SlotInfo> totalArmy;
|
2021-05-15 20:36:50 +02:00
|
|
|
|
|
|
|
public:
|
2020-05-04 17:58:43 +02:00
|
|
|
ArmyManager(CPlayerSpecificInfoCallback * CB, const Nullkiller * ai): cb(CB), ai(ai) {}
|
2021-05-16 13:15:03 +02:00
|
|
|
void update() override;
|
2023-06-04 15:02:02 +02:00
|
|
|
|
2021-05-15 20:36:50 +02:00
|
|
|
ui64 howManyReinforcementsCanBuy(const CCreatureSet * target, const CGDwelling * source) const override;
|
2021-05-16 13:59:35 +02:00
|
|
|
ui64 howManyReinforcementsCanBuy(
|
2021-05-16 14:39:38 +02:00
|
|
|
const CCreatureSet * targetArmy,
|
|
|
|
const CGDwelling * dwelling,
|
2023-06-04 15:02:02 +02:00
|
|
|
const TResources & availableResources,
|
|
|
|
uint8_t turn = 0) const override;
|
|
|
|
|
2021-05-16 13:56:42 +02:00
|
|
|
ui64 howManyReinforcementsCanGet(const CGHeroInstance * hero, const CCreatureSet * source) const override;
|
|
|
|
ui64 howManyReinforcementsCanGet(const IBonusBearer * armyCarrier, const CCreatureSet * target, const CCreatureSet * source) const override;
|
|
|
|
std::vector<SlotInfo> getBestArmy(const IBonusBearer * armyCarrier, const CCreatureSet * target, const CCreatureSet * source) const override;
|
2021-05-15 20:36:50 +02:00
|
|
|
std::vector<SlotInfo>::iterator getWeakestCreature(std::vector<SlotInfo> & army) const override;
|
|
|
|
std::vector<SlotInfo> getSortedSlots(const CCreatureSet * target, const CCreatureSet * source) const override;
|
2023-06-11 18:21:50 +02:00
|
|
|
std::vector<SlotInfo> toSlotInfo(std::vector<creInfo> creatures) const override;
|
2023-06-04 15:02:02 +02:00
|
|
|
|
2021-05-16 13:13:48 +02:00
|
|
|
std::vector<creInfo> getArmyAvailableToBuy(const CCreatureSet * hero, const CGDwelling * dwelling) const override;
|
2023-06-04 15:02:02 +02:00
|
|
|
std::vector<creInfo> getArmyAvailableToBuy(
|
|
|
|
const CCreatureSet * hero,
|
|
|
|
const CGDwelling * dwelling,
|
|
|
|
TResources availableRes,
|
|
|
|
uint8_t turn = 0) const override;
|
|
|
|
|
2021-05-16 14:39:38 +02:00
|
|
|
std::shared_ptr<CCreatureSet> getArmyAvailableToBuyAsCCreatureSet(const CGDwelling * dwelling, TResources availableRes) const override;
|
2023-06-11 18:21:50 +02:00
|
|
|
uint64_t evaluateStackPower(const Creature * creature, int count) const override;
|
2021-05-16 13:15:03 +02:00
|
|
|
SlotInfo getTotalCreaturesAvailable(CreatureID creatureID) const override;
|
2021-05-16 19:53:11 +02:00
|
|
|
ArmyUpgradeInfo calculateCreaturesUpgrade(
|
2021-05-16 13:15:12 +02:00
|
|
|
const CCreatureSet * army,
|
|
|
|
const CGObjectInstance * upgrader,
|
|
|
|
const TResources & availableResources) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::vector<SlotInfo> convertToSlots(const CCreatureSet * army) const;
|
2021-05-16 13:39:20 +02:00
|
|
|
std::vector<StackUpgradeInfo> getPossibleUpgrades(const CCreatureSet * army, const CGObjectInstance * upgrader) const;
|
|
|
|
std::vector<StackUpgradeInfo> getHillFortUpgrades(const CCreatureSet * army) const;
|
|
|
|
std::vector<StackUpgradeInfo> getDwellingUpgrades(const CCreatureSet * army, const CGDwelling * dwelling) const;
|
2021-05-15 20:36:50 +02:00
|
|
|
};
|
2022-09-26 20:01:07 +02:00
|
|
|
|
|
|
|
}
|