#pragma once #include #include "openvic-simulation/types/Date.hpp" #include "openvic-simulation/types/fixed_point/FixedPointMap.hpp" #include "openvic-simulation/utility/Getters.hpp" namespace OpenVic { struct Country; struct Culture; struct Religion; struct CountryParty; struct Ideology; struct ProvinceDefinition; struct GovernmentType; struct NationalValue; struct Reform; struct CountryHistoryEntry; /* Representation of an existing country that is currently in-game. */ struct CountryInstance { friend struct CountryInstanceManager; private: Country const* PROPERTY_RW(base_country); Culture const* PROPERTY_RW(primary_culture); std::vector PROPERTY(accepted_cultures); Religion const* PROPERTY_RW(religion); CountryParty const* PROPERTY_RW(ruling_party); Date PROPERTY_RW(last_election); fixed_point_map_t PROPERTY(upper_house); // TODO - should this be ProvinceInstance and/or non-const pointer? // Currently ProvinceDefinition as that's what CountryHistoryEntry has (loaded prior to ProvinceInstance generation) ProvinceDefinition const* PROPERTY_RW(capital); GovernmentType const* PROPERTY_RW(government_type); fixed_point_t PROPERTY_RW(plurality); NationalValue const* PROPERTY_RW(national_value); bool PROPERTY_RW(civilised); fixed_point_t PROPERTY_RW(prestige); std::vector PROPERTY(reforms); // TODO: should be map of reform groups to active reforms: must set defaults & validate applied history // TODO: Military units + OOBs; will probably need an extensible deployment class CountryInstance(Country const* new_base_country); public: std::string_view get_identifier() const; bool add_accepted_culture(Culture const* new_accepted_culture); bool remove_accepted_culture(Culture const* culture_to_remove); /* Add or modify a party in the upper house. */ void add_to_upper_house(Ideology const* party, fixed_point_t popularity); bool remove_from_upper_house(Ideology const* party); bool add_reform(Reform const* new_reform); bool remove_reform(Reform const* reform_to_remove); bool apply_history_to_country(CountryHistoryEntry const* entry); }; struct CountryManager; struct CountryHistoryManager; struct UnitInstanceManager; struct Map; struct CountryInstanceManager { private: std::vector PROPERTY(country_instances); public: bool generate_country_instances(CountryManager const& country_manager); bool apply_history_to_countries( CountryHistoryManager const& history_manager, Date date, UnitInstanceManager& unit_instance_manager, Map& map ); }; }