aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/history/ProvinceHistory.hpp
blob: 40944031fda043c912f7c3d3dc8bb4f3a2c553f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#pragma once

#include <map>
#include <vector>

#include "openvic-simulation/map/Province.hpp"
#include "openvic-simulation/map/TerrainType.hpp"
#include "openvic-simulation/country/Country.hpp"
#include "openvic-simulation/economy/Good.hpp"
#include "openvic-simulation/economy/Building.hpp"
#include "openvic-simulation/history/Bookmark.hpp"

namespace OpenVic {
    struct ProvinceHistoryManager;

    struct ProvinceHistory {
        friend struct ProvinceHistoryManager;

    private:
        Country const* owner;
        Country const* controller;
        std::vector<Country const*> cores;
        Good const* rgo;
        uint8_t life_rating;
        TerrainType const* terrain_type;
        std::map<Building const*, uint8_t> buildings;
        std::map<Ideology const*, uint8_t> party_loyalties;

        ProvinceHistory(
            Country const* new_owner,
            Country const* new_controller,
            std::vector<Country const*>&& new_cores,
            Good const* new_rgo,
            uint8_t new_life_rating,
            TerrainType const* new_terrain_type,
            std::map<Building const*, uint8_t>&& new_buildings,
            std::map<Ideology const*, uint8_t>&& new_party_loyalties
        );

    public:
        Country const* get_owner() const;
        Country const* get_controller() const;
        const std::vector<Country const*>& get_cores() const;
        bool is_core_of(Country const* country) const;
        Good const* get_rgo() const;
        uint8_t get_life_rating() const;
        TerrainType const* get_terrain_type() const;
        const std::map<Building const*, uint8_t>& get_buildings() const;
        const std::map<Ideology const*, uint8_t>& get_party_loyalties() const;
    };

    struct ProvinceHistoryManager {
    private:
        std::map<Province const*, std::map<Date, ProvinceHistory>> province_histories;
        bool locked = false;

        inline bool _load_province_history_entry(GameManager& game_manager, std::string_view province, Date const& date, ast::NodeCPtr root);
    
    public:
        ProvinceHistoryManager() {}

        bool add_province_history_entry(
            Province const* province,
            Date date,
            Country const* owner,
            Country const* controller,
            std::vector<Country const*>&& cores,
            Good const* rgo,
            uint8_t life_rating,
            TerrainType const* terrain_type,
            std::map<Building const*, uint8_t>&& buildings,
            std::map<Ideology const*, uint8_t>&& party_loyalties,
            bool updated_cores,
            bool updated_buildings,
            bool updated_loyalties
        );

        void lock_province_histories();
        bool is_locked() const;

        /* Returns history of province at date, if date doesn't have an entry returns closest entry before date. Return can be nullptr if an error occurs. */
        ProvinceHistory const* get_province_history(Province const* province, Date entry) const;
        /* Returns history of province at bookmark date. Return can be nullptr if an error occurs. */
        inline ProvinceHistory const* get_province_history(Province const* province, Bookmark const* bookmark) const;

        bool load_province_history_file(GameManager& game_manager, std::string_view name, ast::NodeCPtr root);
    };
} // namespace OpenVic