aboutsummaryrefslogtreecommitdiff
path: root/src/openvic-simulation/research/Invention.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/openvic-simulation/research/Invention.hpp')
-rw-r--r--src/openvic-simulation/research/Invention.hpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/openvic-simulation/research/Invention.hpp b/src/openvic-simulation/research/Invention.hpp
index 5d31155..2b8100d 100644
--- a/src/openvic-simulation/research/Invention.hpp
+++ b/src/openvic-simulation/research/Invention.hpp
@@ -1,6 +1,7 @@
#pragma once
#include "openvic-simulation/misc/Modifier.hpp"
+#include "openvic-simulation/scripts/ConditionalWeight.hpp"
#include "openvic-simulation/types/IdentifierRegistry.hpp"
#include "openvic-simulation/types/OrderedContainers.hpp"
@@ -27,13 +28,17 @@ namespace OpenVic {
crime_set_t PROPERTY(enabled_crimes);
const bool PROPERTY_CUSTOM_PREFIX(unlock_gas_attack, will);
const bool PROPERTY_CUSTOM_PREFIX(unlock_gas_defence, will);
+ ConditionScript PROPERTY(limit);
+ ConditionalWeight PROPERTY(chance);
Invention(
std::string_view new_identifier, ModifierValue&& new_values, bool new_news, unit_set_t&& new_activated_units,
building_set_t&& new_activated_buildings, crime_set_t&& new_enabled_crimes, bool new_unlock_gas_attack,
- bool new_unlock_gas_defence
+ bool new_unlock_gas_defence, ConditionScript&& new_limit, ConditionalWeight&& new_chance
);
+ bool parse_scripts(GameManager const& game_manager);
+
public:
Invention(Invention&&) = default;
};
@@ -45,12 +50,14 @@ namespace OpenVic {
bool add_invention(
std::string_view identifier, ModifierValue&& values, bool news, Invention::unit_set_t&& activated_units,
Invention::building_set_t&& activated_buildings, Invention::crime_set_t&& enabled_crimes, bool unlock_gas_attack,
- bool unlock_gas_defence
+ bool unlock_gas_defence, ConditionScript&& limit, ConditionalWeight&& chance
);
bool load_inventions_file(
ModifierManager const& modifier_manager, UnitManager const& unit_manager,
BuildingTypeManager const& building_type_manager, CrimeManager const& crime_manager, ast::NodeCPtr root
); // inventions/*.txt
+
+ bool parse_scripts(GameManager const& game_manager);
};
} \ No newline at end of file