aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/economy/production/ProductionType.cpp
blob: 65f3eba693e34d1e5a9c3f95eed4e739bdf91e71 (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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
#include "ProductionType.hpp"

#include <openvic-dataloader/v2script/Parser.hpp>

using namespace OpenVic;
using namespace OpenVic::NodeTools;

Job::Job(
   PopType const* new_pop_type,
   effect_t new_effect_type,
   fixed_point_t new_effect_multiplier,
   fixed_point_t new_desired_workforce_share
) : pop_type { new_pop_type },
   effect_type { new_effect_type },
   effect_multiplier { new_effect_multiplier },
   desired_workforce_share { new_desired_workforce_share } {}

ProductionType::ProductionType(
   std::string_view new_identifier,
   std::optional<Job> new_owner,
   std::vector<Job>&& new_jobs,
   template_type_t new_template_type,
   Pop::pop_size_t new_base_workforce_size,
   GoodDefinition::good_definition_map_t&& new_input_goods,
   GoodDefinition const* new_output_goods,
   fixed_point_t new_base_output_quantity,
   std::vector<bonus_t>&& new_bonuses,
   GoodDefinition::good_definition_map_t&& new_maintenance_requirements,
   bool new_is_coastal,
   bool new_is_farm,
   bool new_is_mine
) : HasIdentifier { new_identifier },
   owner { new_owner },
   jobs { std::move(new_jobs) },
   template_type { new_template_type },
   base_workforce_size { new_base_workforce_size },
   input_goods { std::move(new_input_goods) },
   output_goods { new_output_goods },
   base_output_quantity { new_base_output_quantity },
   bonuses { std::move(new_bonuses) },
   maintenance_requirements { std::move(new_maintenance_requirements) },
   coastal { new_is_coastal },
   farm { new_is_farm },
   mine { new_is_mine } {}

bool ProductionType::parse_scripts(DefinitionManager const& definition_manager) {
   bool ret = true;
   for (auto& [bonus_script, bonus_value] : bonuses) {
      ret &= bonus_script.parse_script(false, definition_manager);
   }
   return ret;
}

ProductionTypeManager::ProductionTypeManager() : rgo_owner_sprite { 0 } {}

node_callback_t ProductionTypeManager::_expect_job(
   GoodDefinitionManager const& good_definition_manager, PopManager const& pop_manager, callback_t<Job&&> callback
) {
   return [this, &good_definition_manager, &pop_manager, callback](ast::NodeCPtr node) -> bool {
      using enum Job::effect_t;

      std::string_view pop_type {};
      Job::effect_t effect_type {THROUGHPUT};
      fixed_point_t effect_multiplier = 1, desired_workforce_share = 1;

      static const string_map_t<Job::effect_t> effect_map = {
         { "input", INPUT }, { "output", OUTPUT }, { "throughput", THROUGHPUT }
      };

      bool res = expect_dictionary_keys(
         "poptype", ONE_EXACTLY, expect_identifier(assign_variable_callback(pop_type)),
         "effect", ONE_EXACTLY, expect_identifier(expect_mapped_string(effect_map, assign_variable_callback(effect_type))),
         "effect_multiplier", ZERO_OR_ONE, expect_fixed_point(assign_variable_callback(effect_multiplier)),
         "amount", ZERO_OR_ONE, expect_fixed_point(assign_variable_callback(desired_workforce_share))
      )(node);

      PopType const* found_pop_type = pop_manager.get_pop_type_by_identifier(pop_type);
      return res & callback({ found_pop_type, effect_type, effect_multiplier, desired_workforce_share });
   };
}

node_callback_t ProductionTypeManager::_expect_job_list(
   GoodDefinitionManager const& good_definition_manager, PopManager const& pop_manager,
   callback_t<std::vector<Job>&&> callback
) {
   return [this, &good_definition_manager, &pop_manager, callback](ast::NodeCPtr node) -> bool {
      std::vector<Job> jobs;
      bool ret = expect_list(_expect_job(good_definition_manager, pop_manager, vector_callback(jobs)))(node);
      ret &= callback(std::move(jobs));
      return ret;
   };
}

bool ProductionTypeManager::add_production_type(
   std::string_view identifier,
   std::optional<Job> owner,
   std::vector<Job>&& jobs,
   ProductionType::template_type_t template_type,
   Pop::pop_size_t base_workforce_size,
   GoodDefinition::good_definition_map_t&& input_goods,
   GoodDefinition const* output_goods,
   fixed_point_t base_output_quantity,
   std::vector<ProductionType::bonus_t>&& bonuses,
   GoodDefinition::good_definition_map_t&& maintenance_requirements,
   bool is_coastal,
   bool is_farm,
   bool is_mine
) {
   if (identifier.empty()) {
      Logger::error("Invalid production type identifier - empty!");
      return false;
   }

   if (base_workforce_size <= 0) {
      Logger::error("Base workforce size ('workforce') for production type ", identifier, " was 0 or unset!");
      return false;
   }

   if (base_output_quantity <= 0) {
      Logger::error("Base output quantity ('value') for production type ", identifier, " was 0 or unset!");
      return false;
   }

   if (output_goods == nullptr) {
      Logger::error("Output good for production type ", identifier, " was null!");
      return false;
   }

   using enum ProductionType::template_type_t;

   if (template_type == ARTISAN) {
      if (owner.has_value()) {
         Logger::warning(
            "Artisanal production type ", identifier, " should not have an owner - it is being ignored."
         );
         owner.reset();
      }

      if (!jobs.empty()) {
         Logger::warning(
            "Artisanal production type ", identifier, " should not have employees - ", jobs.size(), " are being ignored."
         );
         jobs.clear();
      }
   } else {
      if (!owner.has_value()) {
         Logger::error("Production type ", identifier, " is missing an owner.");
         return false;
      }

      if (owner->get_pop_type() == nullptr) {
         Logger::error("Production type ", identifier, " owner has an invalid pop type.");
         return false;
      }

      if (jobs.empty()) {
         Logger::error("Production type ", identifier, " lacks jobs ('employees').");
         return false;
      }

      for (size_t i = 0; i < jobs.size(); i++) {
         if (jobs[i].get_pop_type() == nullptr) {
            Logger::error("Production type ", identifier, " has invalid pop type in employees[", i, "].");
            return false;
         }
      }
   }

   const bool ret = production_types.add_item({
      identifier, owner, std::move(jobs), template_type, base_workforce_size, std::move(input_goods), output_goods,
      base_output_quantity, std::move(bonuses), std::move(maintenance_requirements), is_coastal, is_farm, is_mine
   });
   if (rgo_owner_sprite <= 0 && ret && template_type == RGO && owner.has_value() && owner->get_pop_type() != nullptr) {
      /* Set rgo owner sprite to that of the first RGO owner we find. */
      rgo_owner_sprite = owner->get_pop_type()->get_sprite();
   }
   return ret;
}

bool ProductionTypeManager::load_production_types_file(
   GoodDefinitionManager const& good_definition_manager, PopManager const& pop_manager, ovdl::v2script::Parser const& parser
) {
   using namespace std::string_view_literals;
   auto template_symbol = parser.find_intern("template"sv);
   if (!template_symbol) {
      Logger::error("template could not be interned.");
   }

   size_t expected_types = 0;

   /* Pass #1: find and store template identifiers */
   ordered_set<std::string_view> templates;
   ordered_map<std::string_view, std::string_view> template_target_map;
   bool ret = expect_dictionary(
      [this, &expected_types, &templates, &template_target_map, &template_symbol](std::string_view key, ast::NodeCPtr value) -> bool {
         expected_types++;

         std::string_view template_id = "";
         bool found_template = false;
         const bool ret =
            expect_key(template_symbol, expect_identifier(assign_variable_callback(template_id)), &found_template)(value);
         if (found_template) {
            if (ret) {
               templates.emplace(template_id);
               template_target_map.emplace(key, template_id);
            } else {
               Logger::error("Failed get template identifier for ", key);
               return false;
            }
         }
         return true;
      }
   )(parser.get_file_node());

   /* Pass #2: create and populate the template map */
   ordered_map<std::string_view, ast::NodeCPtr> template_node_map;
   ret &= expect_dictionary(
      [this, &expected_types, &templates, &template_node_map](std::string_view key, ast::NodeCPtr value) -> bool {
         if (templates.contains(key)) {
            template_node_map.emplace(key, value);
            expected_types--;
         }
         return true;
      }
   )(parser.get_file_node());

   /* Pass #3: actually load production types */
   reserve_more_production_types(expected_types);
   ret &= expect_dictionary(
      [this, &good_definition_manager, &pop_manager, &template_target_map, &template_node_map](
         std::string_view key, ast::NodeCPtr node) -> bool {
         using enum ProductionType::template_type_t;

         if (template_node_map.contains(key)) {
            return true;
         }

         std::optional<Job> owner;
         std::vector<Job> jobs;
         ProductionType::template_type_t template_type { FACTORY };
         GoodDefinition const* output_goods = nullptr;
         Pop::pop_size_t base_workforce_size = 0;
         GoodDefinition::good_definition_map_t input_goods, maintenance_requirements;
         fixed_point_t base_output_quantity = 0;
         std::vector<ProductionType::bonus_t> bonuses;
         bool is_coastal = false, is_farm = false, is_mine = false;

         bool ret = true;

         static const string_map_t<ProductionType::template_type_t> template_type_map = {
            { "factory", FACTORY }, { "rgo", RGO }, { "artisan", ARTISAN }
         };

         auto parse_node = expect_dictionary_keys(
            "template", ZERO_OR_ONE, success_callback, /* Already parsed using expect_key in Pass #1 above. */
            "bonus", ZERO_OR_MORE, [&bonuses](ast::NodeCPtr bonus_node) -> bool {
               ConditionScript trigger { scope_t::STATE, scope_t::NO_SCOPE, scope_t::NO_SCOPE };
               fixed_point_t bonus_value {};
               const bool ret = expect_dictionary_keys(
                  "trigger", ONE_EXACTLY, trigger.expect_script(),
                  "value", ONE_EXACTLY, expect_fixed_point(assign_variable_callback(bonus_value))
               )(bonus_node);
               bonuses.emplace_back(std::move(trigger), bonus_value);
               return ret;
            },
            "owner", ZERO_OR_ONE, _expect_job(good_definition_manager, pop_manager, move_variable_callback(owner)),
            "employees", ZERO_OR_ONE, _expect_job_list(good_definition_manager, pop_manager, move_variable_callback(jobs)),
            "type", ZERO_OR_ONE,
               expect_identifier(expect_mapped_string(template_type_map, assign_variable_callback(template_type))),
            "workforce", ZERO_OR_ONE, expect_uint(assign_variable_callback(base_workforce_size)),
            "input_goods", ZERO_OR_ONE,
               good_definition_manager.expect_good_definition_decimal_map(move_variable_callback(input_goods)),
            "output_goods", ZERO_OR_ONE,
               good_definition_manager.expect_good_definition_identifier(assign_variable_callback_pointer(output_goods)),
            "value", ZERO_OR_ONE, expect_fixed_point(assign_variable_callback(base_output_quantity)),
            "efficiency", ZERO_OR_ONE, good_definition_manager.expect_good_definition_decimal_map(
               move_variable_callback(maintenance_requirements)
            ),
            "is_coastal", ZERO_OR_ONE, expect_bool(assign_variable_callback(is_coastal)),
            "farm", ZERO_OR_ONE, expect_bool(assign_variable_callback(is_farm)),
            "mine", ZERO_OR_ONE, expect_bool(assign_variable_callback(is_mine))
         );

         /* Check if this ProductionType has a template, and if so parse it. */
         {
            const typename decltype(template_target_map)::const_iterator target_it = template_target_map.find(key);
            if (target_it != template_target_map.end()) {
               const std::string_view template_id = target_it->second;
               const typename decltype(template_node_map)::const_iterator node_it = template_node_map.find(template_id);
               if (node_it != template_node_map.end()) {
                  ret &= parse_node(node_it->second);
               } else {
                  Logger::error("Missing template ", template_id, " for production type ", key, "!");
                  ret = false;
               }
            }
         }

         /* Parse the ProductionType's own entries, over those of its template if necessary. */
         ret &= parse_node(node);

         ret &= add_production_type(
            key, owner, std::move(jobs), template_type, base_workforce_size, std::move(input_goods), output_goods,
            base_output_quantity, std::move(bonuses), std::move(maintenance_requirements), is_coastal, is_farm, is_mine
         );
         return ret;
      }
   )(parser.get_file_node());

   production_types.lock();

   if (rgo_owner_sprite <= 0) {
      Logger::error("No RGO owner pop type sprite found!");
      ret = false;
   }

   return ret;
}

bool ProductionTypeManager::parse_scripts(DefinitionManager const& definition_manager) {
   bool ret = true;
   for (ProductionType& production_type : production_types.get_items()) {
      ret &= production_type.parse_scripts(definition_manager);
   }
   return ret;
}