aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/tech/Technology.cpp
blob: aa96fe2608adf55a3bda4dc160eadb9aba078b1b (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#include "Technology.hpp"

using namespace OpenVic;
using namespace OpenVic::NodeTools;

TechnologyFolder::TechnologyFolder(std::string_view identifier) : HasIdentifier { identifier } {}

TechnologyArea::TechnologyArea(std::string_view identifier, TechnologyFolder const& folder) : HasIdentifier { identifier }, folder { folder } {}

Technology::Technology(std::string_view identifier, TechnologyArea const& area, year_t year, fixed_point_t cost, bool unciv_military, uint8_t unit, unit_set_t activated_units, building_set_t activated_buildings, ModifierValue&& values)
   : Modifier { identifier, std::move(values), 0 }, area { area }, year { year }, cost { cost }, unciv_military { unciv_military }, unit { unit }, activated_buildings { std::move(activated_units) }, activated_units { std::move(activated_buildings) } {}

TechnologySchool::TechnologySchool(std::string_view new_identifier, ModifierValue&& new_values) 
   : Modifier { new_identifier, std::move(new_values), 0 } {} //TODO: school icon

TechnologyManager::TechnologyManager() : technology_folders { "technology folders" }, technology_areas { "technology areas" }, 
   technologies { "technologies" }, technology_schools { "technology schools" } {}

bool TechnologyManager::add_technology_folder(std::string_view identifier) {
   if (identifier.empty()) {
      Logger::error("Invalid technology folder identifier - empty!");
      return false;
   }

   return technology_folders.add_item({ identifier });
}

bool TechnologyManager::add_technology_area(std::string_view identifier, TechnologyFolder const* folder) {
   if (identifier.empty()) {
      Logger::error("Invalid technology area identifier - empty!");
      return false;
   }

   if (folder == nullptr) {
      Logger::error("Null folder for technology area \"", identifier, "\"!");
      return false;
   }

   return technology_areas.add_item({ identifier, *folder });
}

bool TechnologyManager::add_technology(std::string_view identifier, TechnologyArea const* area, Technology::year_t year, fixed_point_t cost, bool unciv_military, uint8_t unit, Technology::unit_set_t activated_units, Technology::building_set_t activated_buildings, ModifierValue&& values) {
   if (identifier.empty()) {
      Logger::error("Invalid technology identifier - empty!");
      return false;
   }

   if (area == nullptr) {
      Logger::error("Null area for technology \"", identifier, "\"!");
      return false;
   }

   return technologies.add_item({ identifier, *area, year, cost, unciv_military, unit, activated_units, activated_buildings, std::move(values) });
}

bool TechnologyManager::add_technology_school(std::string_view identifier, ModifierValue&& values) {
   if (identifier.empty()) {
      Logger::error("Invalid modifier effect identifier - empty!");
      return false;
   }

   return technology_schools.add_item({ identifier, std::move(values) });
}

bool TechnologyManager::load_technology_file_areas(ast::NodeCPtr root) {
   return expect_dictionary_reserve_length(technology_folders, [this](std::string_view root_key, ast::NodeCPtr root_value) -> bool {
      if (root_key == "folders") {
         return expect_dictionary([this](std::string_view folder_key, ast::NodeCPtr folder_value) -> bool {
            bool ret = add_technology_folder(folder_key);
            TechnologyFolder const* current_folder = get_technology_folder_by_identifier(folder_key);
            if (current_folder == nullptr)
               return false;
            ret &= expect_list(expect_identifier([this, current_folder](std::string_view area) -> bool {
               return add_technology_area(area, current_folder);
            }))(folder_value);
            return ret;
         })(root_value);
         lock_technology_folders();
         lock_technology_areas();
      } else if (root_key == "schools") return true; //ignore
      else return false;
   })(root);
}

bool TechnologyManager::load_technology_file_schools(ModifierManager const& modifier_manager, ast::NodeCPtr root) {
   return expect_dictionary([this, &modifier_manager](std::string_view root_key, ast::NodeCPtr root_value) -> bool {
      if (root_key == "schools") {
         return expect_dictionary_reserve_length(technology_schools, [this, &modifier_manager](std::string_view school_key, ast::NodeCPtr school_value) -> bool {
            ModifierValue modifiers;
            bool ret = modifier_manager.expect_modifier_value(move_variable_callback(modifiers))(school_value);
            ret &= add_technology_school(school_key, std::move(modifiers));
            return ret;
         })(root_value);
         lock_technology_schools();
      } else if (root_key == "folders") return true; //ignore
      else return false;
   })(root);
}

bool TechnologyManager::load_technologies_file(ModifierManager const& modifier_manager, UnitManager const& unit_manager, BuildingManager const& building_manager, ast::NodeCPtr root) {
   return expect_dictionary_reserve_length(technologies, [this, &modifier_manager, &unit_manager, &building_manager](std::string_view tech_key, ast::NodeCPtr tech_value) -> bool {
      ModifierValue modifiers;
      std::string_view area_identifier;
      Technology::year_t year;
      fixed_point_t cost;
      bool unciv_military = false;
      uint8_t unit = 0; 
      Technology::unit_set_t activated_units;
      Technology::building_set_t activated_buildings;
      
      bool ret = modifier_manager.expect_modifier_value_and_keys(move_variable_callback(modifiers),
         "area", ONE_EXACTLY, expect_identifier(assign_variable_callback(area_identifier)),
         "year", ONE_EXACTLY, expect_uint(assign_variable_callback(year)),
         "cost", ONE_EXACTLY, expect_fixed_point(assign_variable_callback(cost)),
         "unciv_military", ZERO_OR_ONE, expect_bool(assign_variable_callback(unciv_military)),
         "unit", ZERO_OR_ONE, expect_uint(assign_variable_callback(unit)),
         "activate_unit", ZERO_OR_MORE, expect_identifier([this, &unit_manager, &activated_units](std::string_view identifier) -> bool {
            activated_units.insert(unit_manager.get_unit_by_identifier(identifier));
            return true;
         }),
         "activate_building", ZERO_OR_MORE, expect_identifier([this, &building_manager, &activated_buildings](std::string_view identifier) -> bool {
            activated_buildings.insert(building_manager.get_building_type_by_identifier(identifier));
            return true;
         }),
         "ai_chance", ONE_EXACTLY, expect_dictionary([this](std::string_view identifier, ast::NodeCPtr value) -> bool { return true; }) //TODO
      )(tech_value);

      TechnologyArea const* area = get_technology_area_by_identifier(area_identifier);

      ret &= add_technology(tech_key, area, year, cost, unciv_military, unit, activated_units, activated_buildings, std::move(modifiers));
      return ret;
   })(root);
}

bool TechnologyManager::generate_modifiers(ModifierManager& modifier_manager) {
   bool ret = true;

   ret &= modifier_manager.add_modifier_effect("unciv_military_modifier", true, ModifierEffect::format_t::PROPORTION_DECIMAL);
   ret &= modifier_manager.add_modifier_effect("unciv_economic_modifier", true, ModifierEffect::format_t::PROPORTION_DECIMAL);

   for (TechnologyFolder const& folder : get_technology_folders()) {
      std::string folder_name = std::string(folder.get_identifier()) + "_research_bonus";
      ret &= modifier_manager.add_modifier_effect(folder_name, true, ModifierEffect::format_t::PROPORTION_DECIMAL);
   }
   return ret;
}