diff options
author | zaaarf <zaaarf@proton.me> | 2023-09-19 21:58:29 +0200 |
---|---|---|
committer | zaaarf <zaaarf@proton.me> | 2023-09-19 21:58:29 +0200 |
commit | 33787f89686cd03a6ae7305bc51add5ac47fbde2 (patch) | |
tree | e9f370f392839f0315b01722a61e09085c49458e /src/openvic-simulation/politics/PoliticalReform.hpp | |
parent | b1349e8dfa0c840ca82472fb7f342de08ed8804b (diff) |
feat: added PartyIssue and PoliticalReform structs
Diffstat (limited to 'src/openvic-simulation/politics/PoliticalReform.hpp')
-rw-r--r-- | src/openvic-simulation/politics/PoliticalReform.hpp | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/openvic-simulation/politics/PoliticalReform.hpp b/src/openvic-simulation/politics/PoliticalReform.hpp new file mode 100644 index 0000000..7c778d1 --- /dev/null +++ b/src/openvic-simulation/politics/PoliticalReform.hpp @@ -0,0 +1,53 @@ +#pragma once + +#include <cstddef> +#include "types/IdentifierRegistry.hpp" + +namespace OpenVic { + struct PoliticalReformManager; + + struct PoliticalReformGroup : HasIdentifier { + friend struct PoliticalReformManager; + + private: + PoliticalReformGroup(const std::string_view new_identifier, bool ordered); + const bool ordered; //next_step_only, TODO default to false + + public: + PoliticalReformGroup(PoliticalReformGroup&&) = default; + bool is_ordered() const; + }; + + struct PoliticalReform : HasIdentifier { + friend struct PoliticalReformManager; + + private: + PoliticalReformGroup const& group; + const size_t ordinal; //assigned by the parser to allow policy sorting + + //TODO - conditions to allow, policy modifiers, policy rule changes + + PoliticalReform(const std::string_view new_identifier, PoliticalReformGroup const& new_group, size_t ordinal); + + public: + PoliticalReform(PoliticalReform&&) = default; + size_t get_ordinal() const; + }; + + struct PoliticalReformManager { + private: + IdentifierRegistry<PoliticalReformGroup> political_reform_groups; + IdentifierRegistry<PoliticalReform> political_reforms; + + public: + PoliticalReformManager(); + + bool add_political_reform_group(const std::string_view identifier, bool ordered); + IDENTIFIER_REGISTRY_ACCESSORS(PoliticalReformGroup, political_reform_group) + + bool add_political_reform(const std::string_view identifier, PoliticalReformGroup const* group, size_t ordinal); + IDENTIFIER_REGISTRY_ACCESSORS(PoliticalReform, political_reform) + + //TODO - loaders + }; +}
\ No newline at end of file |