1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-04 09:42:40 +02:00
vcmi/lib/rewardable/Limiter.h

129 lines
3.2 KiB
C++
Raw Normal View History

2023-04-30 15:13:07 +02:00
/*
* Limiter.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 "../GameConstants.h"
#include "../ResourceSet.h"
#include "../serializer/Serializeable.h"
2023-04-30 15:13:07 +02:00
VCMI_LIB_NAMESPACE_BEGIN
class CGHeroInstance;
class CStackBasicDescriptor;
2023-10-09 05:24:40 +02:00
struct Component;
2023-04-30 15:13:07 +02:00
namespace Rewardable {
struct Limiter;
using LimitersList = std::vector<std::shared_ptr<Rewardable::Limiter>>;
/// Limiters of rewards. Rewards will be granted to hero only if he satisfies requirements
/// Note: for this is only a test - it won't remove anything from hero (e.g. artifacts or creatures)
struct DLL_LINKAGE Limiter final : public Serializeable
2023-04-30 15:13:07 +02:00
{
/// day of week, unused if 0, 1-7 will test for current day of week
si32 dayOfWeek;
si32 daysPassed;
/// total experience that hero needs to have
si32 heroExperience;
/// level that hero needs to have
si32 heroLevel;
/// mana points that hero needs to have
si32 manaPoints;
/// percentage of mana points that hero needs to have
si32 manaPercentage;
/// Number of free secondary slots that hero needs to have
bool canLearnSkills;
2023-04-30 15:13:07 +02:00
/// resources player needs to have in order to trigger reward
TResources resources;
/// skills hero needs to have
std::vector<si32> primary;
std::map<SecondarySkill, si32> secondary;
/// artifacts that hero needs to have (equipped or in backpack) to trigger this
2023-10-09 02:33:16 +02:00
/// checks for artifacts copies if same artifact id is included multiple times
2023-04-30 15:13:07 +02:00
std::vector<ArtifactID> artifacts;
/// Spells that hero must have in the spellbook
std::vector<SpellID> spells;
2023-10-04 15:49:17 +02:00
/// Spells that hero must be able to learn
std::vector<SpellID> canLearnSpells;
2023-04-30 15:13:07 +02:00
/// creatures that hero needs to have
std::vector<CStackBasicDescriptor> creatures;
2023-10-09 04:19:12 +02:00
/// only heroes/hero classes from list could pass limiter
std::vector<HeroTypeID> heroes;
std::vector<HeroClassID> heroClasses;
/// only player colors can pass limiter
std::vector<PlayerColor> players;
2023-04-30 15:13:07 +02:00
/// sub-limiters, all must pass for this limiter to pass
LimitersList allOf;
/// sub-limiters, at least one should pass for this limiter to pass
LimitersList anyOf;
/// sub-limiters, none should pass for this limiter to pass
LimitersList noneOf;
Limiter();
2023-10-12 13:09:10 +02:00
~Limiter();
2023-04-30 15:13:07 +02:00
bool heroAllowed(const CGHeroInstance * hero) const;
2023-10-09 05:24:40 +02:00
/// Generates list of components that describes reward for a specific hero
2023-10-12 13:09:10 +02:00
void loadComponents(std::vector<Component> & comps,
2023-10-09 05:24:40 +02:00
const CGHeroInstance * h) const;
2023-04-30 15:13:07 +02:00
template <typename Handler> void serialize(Handler &h)
2023-04-30 15:13:07 +02:00
{
h & dayOfWeek;
h & daysPassed;
h & heroExperience;
h & heroLevel;
h & manaPoints;
h & manaPercentage;
2023-10-04 15:49:17 +02:00
h & canLearnSkills;
2023-04-30 15:13:07 +02:00
h & resources;
h & primary;
h & secondary;
h & artifacts;
2023-10-04 15:49:17 +02:00
h & spells;
h & canLearnSpells;
2023-04-30 15:13:07 +02:00
h & creatures;
2023-10-09 04:19:12 +02:00
h & heroes;
h & heroClasses;
h & players;
2023-10-11 00:47:19 +02:00
h & allOf;
h & anyOf;
h & noneOf;
2023-04-30 15:13:07 +02:00
}
2023-09-15 10:06:06 +02:00
void serializeJson(JsonSerializeFormat & handler);
2023-04-30 15:13:07 +02:00
};
}
2023-10-11 00:47:19 +02:00
bool DLL_LINKAGE operator== (const Rewardable::Limiter & l, const Rewardable::Limiter & r);
2023-10-11 21:10:42 +02:00
bool DLL_LINKAGE operator!= (const Rewardable::Limiter & l, const Rewardable::Limiter & r);
2023-10-11 00:47:19 +02:00
2023-04-30 15:13:07 +02:00
VCMI_LIB_NAMESPACE_END