Freeciv-3.3
|
#include <stdarg.h>
#include "astring.h"
#include "fcintl.h"
#include "log.h"
#include "support.h"
#include "achievements.h"
#include "calendar.h"
#include "citizens.h"
#include "counters.h"
#include "culture.h"
#include "game.h"
#include "government.h"
#include "improvement.h"
#include "movement.h"
#include "nation.h"
#include "player.h"
#include "map.h"
#include "research.h"
#include "road.h"
#include "server_settings.h"
#include "specialist.h"
#include "style.h"
#include "victory.h"
#include "requirements.h"
Go to the source code of this file.
Data Structures | |
struct | req_def |
Typedefs | |
typedef enum req_item_found(* | universal_found) (const struct requirement *, const struct universal *) |
typedef enum fc_tristate(* | is_req_active_cb) (const struct civ_map *nmap, const struct req_context *context, const struct req_context *other_context, const struct requirement *req) |
Variables | |
static universal_found | universal_found_function [VUT_COUNT] = {nullptr} |
static struct req_def | req_definitions [VUT_COUNT] |
#define EXTRACT_INFO | ( | req | ) |
Definition at line 2143 of file requirements.c.
#define REQUC_CITYSTATUS unchanging_citystatus |
Definition at line 183 of file requirements.c.
#define REQUC_CITYTILE unchanging_citytile |
Definition at line 162 of file requirements.c.
#define REQUC_IMPR unchanging_building |
Definition at line 223 of file requirements.c.
#define REQUC_LOCAL unchanging_local |
Definition at line 84 of file requirements.c.
#define REQUC_NALLY unchanging_noally |
Definition at line 139 of file requirements.c.
#define REQUC_PRESENT unchanging_present |
Definition at line 100 of file requirements.c.
#define REQUC_WORLD unchanging_world |
Definition at line 115 of file requirements.c.
typedef enum fc_tristate(* is_req_active_cb) (const struct civ_map *nmap, const struct req_context *context, const struct req_context *other_context, const struct requirement *req) |
Definition at line 55 of file requirements.c.
typedef enum req_item_found(* universal_found) (const struct requirement *, const struct universal *) |
Definition at line 1 of file requirements.c.
|
static |
Find if an action fulfills a requirement
Definition at line 8513 of file requirements.c.
Referenced by universal_found_functions_init().
|
static |
Returns TRUE iff the specified activity can appear in an "Activity" requirement.
Definition at line 257 of file requirements.c.
Referenced by universal_is_legal_in_requirement(), and universal_value_from_str().
|
inlinestatic |
Returns TRUE iff two bounds that could each be either an upper or lower bound are contradicting each other. This function assumes that of the upper and lower bounds, one will be inclusive, the other exclusive.
Definition at line 1757 of file requirements.c.
Referenced by are_requirements_contradictions().
bool are_reqs_active | ( | const struct req_context * | context, |
const struct req_context * | other_context, | ||
const struct requirement_vector * | reqs, | ||
const enum req_problem_type | prob_type | ||
) |
Checks the requirement(s) to see if they are active on the given target.
context gives the target (or targets) to evaluate against
reqs gives the requirement vector. The function returns TRUE only if all requirements are active.
context and other_context may be nullptr. This is equivalent to passing empty contexts.
Make sure you give all aspects of the target when calling this function: for instance if you have TARGET_CITY pass the city's owner as the target player as well as the city itself as the target city.
Definition at line 6371 of file requirements.c.
Referenced by action_auto_perf_unit_sel(), add_clause(), are_road_reqs_fulfilled(), can_build_base(), can_build_extra(), can_change_to_government(), can_city_build_improvement_direct(), can_disaster_happen(), can_extra_appear(), can_extra_disappear(), can_remove_extra(), can_unit_do_connect(), city_can_use_specialist(), city_style(), get_target_bonus_effects(), get_tile_infrastructure_set(), get_tile_value(), goods_can_be_provided(), handle_diplomacy_accept_treaty_req(), is_enabler_active(), is_native_tile_to_extra(), is_native_tile_to_road(), is_target_possible(), multiplier_can_be_changed(), player_can_build_base(), player_can_build_extra(), player_can_remove_extra(), player_music_style(), sg_special_set_bv(), sg_special_set_dbv(), unit_can_displace_hut(), unit_can_enter_hut(), and unit_enter_hut().
bool are_reqs_active_ranges | ( | const enum req_range | min_range, |
const enum req_range | max_range, | ||
const struct req_context * | context, | ||
const struct req_context * | other_context, | ||
const struct requirement_vector * | reqs, | ||
const enum req_problem_type | prob_type | ||
) |
Like are_reqs_active() but checks only requirements that have one of the ranges between min_range and max_range.
Definition at line 6389 of file requirements.c.
Referenced by api_methods_player_can_employ(), and can_city_build_unit_direct().
bool are_requirements_contradictions | ( | const struct requirement * | req1, |
const struct requirement * | req2 | ||
) |
Returns TRUE if req1 and req2 contradicts each other.
TODO: If information about what entity each requirement type will be evaluated against is passed it will become possible to detect stuff like that an unclaimed tile contradicts all DiplRel requirements against it.
Definition at line 1781 of file requirements.c.
Referenced by default_tester_cb(), req_implies_req(), req_vec_first_contradiction_in_vec(), and req_vec_get_first_contradiction().
bool are_requirements_equal | ( | const struct requirement * | req1, |
const struct requirement * | req2 | ||
) |
Returns TRUE if req1 and req2 are equal. Does not care if one is quiet and the other not.
Definition at line 1541 of file requirements.c.
Referenced by req_edit::incoming_req_vec_change(), is_req_in_vec(), purge_duplicate_req_vec(), req_vec_change_apply(), req_vec_get_first_redundant_req(), send_packet_ruleset_action_auto_100(), send_packet_ruleset_action_enabler_100(), send_packet_ruleset_building_100(), send_packet_ruleset_city_100(), send_packet_ruleset_clause_100(), send_packet_ruleset_disaster_100(), send_packet_ruleset_effect_100(), send_packet_ruleset_extra_100(), send_packet_ruleset_goods_100(), send_packet_ruleset_government_100(), send_packet_ruleset_multiplier_100(), send_packet_ruleset_music_100(), send_packet_ruleset_road_100(), send_packet_ruleset_specialist_100(), send_packet_ruleset_tech_100(), and send_packet_ruleset_unit_100().
|
static |
Returns TRUE if req1 and req2 directly negate each other.
Definition at line 1553 of file requirements.c.
Referenced by are_requirements_contradictions().
|
inlinestatic |
Returns TRUE if tiles are in given requirements range with each other
Definition at line 2083 of file requirements.c.
Referenced by unchanging_citytile().
Return TRUE iff the two sources are equivalent. Note this isn't the same as an == or memcmp() check.
Definition at line 7354 of file requirements.c.
Referenced by add_target_to_production(), add_target_to_worklist(), are_requirements_equal(), are_requirements_opposites(), are_worklists_equal(), change_build_target(), city_building_impr_or_unit(), city_dialog_update_building(), city_set_queue(), city_worklist_commit(), client_change_all(), clipboard_send_production_packet(), handle_city_change(), handle_city_info(), insert_allows_single(), ok_worklist_editor_callback(), and ruledit_gui::open_effect_edit().
|
static |
Returns TRUE if the specified city center or continent requirement contradicts the other city tile requirement.
Definition at line 1658 of file requirements.c.
Referenced by are_requirements_contradictions().
|
static |
Find if a tile state fulfills a requirement
Definition at line 8466 of file requirements.c.
Referenced by universal_found_functions_init().
enum fc_tristate default_tester_cb | ( | const struct req_context * | context, |
const struct req_context * | other_context, | ||
const struct requirement * | req, | ||
void * | data, | ||
int | n_data | ||
) |
A tester callback for tri_reqs_cb_active() that uses the default requirement calculation except for requirements in data[n_data] array and ones implied by them or contradicting them
Definition at line 6538 of file requirements.c.
|
static |
Find if a diplrel fulfills a requirement
Definition at line 8529 of file requirements.c.
Referenced by universal_found_functions_init().
|
inlinestatic |
Determine whether the given continent or ocean might be surrounded by a specific desired surrounder.
Definition at line 4895 of file requirements.c.
Referenced by is_tile_rel_req_active().
bool does_req_contradicts_reqs | ( | const struct requirement * | req, |
const struct requirement_vector * | vec | ||
) |
Returns TRUE if the given requirement contradicts the given requirement vector.
Definition at line 2074 of file requirements.c.
Referenced by ae_suggest_repair_if_no_oblig(), city_production_caravan_shields_init(), local_dipl_rel_action_cache_set(), local_dipl_rel_tile_other_tgt_action_cache_set(), and utype_may_act_tgt_city_tile().
|
static |
Find if an extra type fulfills a requirement
Definition at line 8487 of file requirements.c.
Referenced by universal_found_functions_init().
|
static |
Find if a government fulfills a requirement
Definition at line 8299 of file requirements.c.
Referenced by universal_found_functions_init().
|
static |
Returns TRUE if the specified building requirement contradicts the specified building flag requirement.
Definition at line 1599 of file requirements.c.
Referenced by are_requirements_contradictions().
|
static |
Returns TRUE if the specified building requirement contradicts the specified building genus requirement.
Definition at line 1566 of file requirements.c.
Referenced by are_requirements_contradictions().
|
static |
Find if an improvement fulfills a requirement
Definition at line 8331 of file requirements.c.
Referenced by universal_found_functions_init().
|
static |
Determine whether an achievement requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be an achievement requirement
Definition at line 5841 of file requirements.c.
|
static |
Determine whether an action requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be an action requirement
Definition at line 3111 of file requirements.c.
|
static |
Determine whether an activity requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be an activity requirement
Definition at line 4693 of file requirements.c.
|
static |
Determine whether an age requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be an age requirement
Definition at line 4818 of file requirements.c.
|
static |
Determine whether an AI level requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be an AI level requirement
Definition at line 3855 of file requirements.c.
|
static |
Determine whether a building requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a building requirement
Definition at line 2264 of file requirements.c.
|
static |
Is building flag present in a given city?
Definition at line 2445 of file requirements.c.
Referenced by is_buildingflag_req_active().
|
static |
Determine whether a building flag requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a building flag requirement
Definition at line 2474 of file requirements.c.
|
static |
Determine whether a building genus requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a building genus requirement
Definition at line 2429 of file requirements.c.
Is center of given city in tile. If city is nullptr, any city will do.
Definition at line 5119 of file requirements.c.
Referenced by is_citytile_req_active().
|
static |
Determine whether a city status requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a city status requirement
Definition at line 5526 of file requirements.c.
|
static |
Determine whether a citytile requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a citytile requirement
Definition at line 5138 of file requirements.c.
|
static |
Determine whether a counter requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a counter requirement
Definition at line 5813 of file requirements.c.
|
static |
Is the diplomatic state within range of the target?
Definition at line 4117 of file requirements.c.
Referenced by is_diplrel_req_active(), is_diplrel_tile_o_req_active(), is_diplrel_tile_req_active(), and is_diplrel_unitany_in_range().
|
static |
Determine whether a diplomatic relationship (diplrel) requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a diplrel requirement
Definition at line 4171 of file requirements.c.
|
static |
Determine whether a tile owner / other player diplomatic relationship (diplrel_tile_o) requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a diplrel_tile_o requirement
Definition at line 4215 of file requirements.c.
|
static |
Determine whether a tile owner diplomatic relationship (diplrel_tile) requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a diplrel_tile requirement
Definition at line 4191 of file requirements.c.
|
static |
Is the diplomatic state within range of any unit at the target tile?
Definition at line 4233 of file requirements.c.
Referenced by is_diplrel_unitany_o_req_active(), and is_diplrel_unitany_req_active().
|
static |
Determine whether an any-unit-owner / other player diplomatic relationship (diplrel_unitany_o) requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a diplrel_unitany_o requirement
Definition at line 4286 of file requirements.c.
|
static |
Determine whether an any-unit-owner diplomatic relationship (diplrel_unitany) requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a diplrel_unitany requirement
Definition at line 4264 of file requirements.c.
|
static |
Determine whether an extra requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be an extra requirement
Definition at line 2963 of file requirements.c.
|
static |
Determine whether an extra flag requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be an extraflag requirement
Definition at line 3595 of file requirements.c.
|
static |
Determine whether a form age requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a form age requirement
Definition at line 4867 of file requirements.c.
|
static |
Determine whether a goods requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a goods requirement
Definition at line 3062 of file requirements.c.
|
static |
Determine whether a government (gov) requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a gov requirement
Definition at line 3739 of file requirements.c.
|
static |
Determine whether a minimum or maximum latitude requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a minlatitude or maxlatitude requirement
Definition at line 5887 of file requirements.c.
|
static |
Determine whether a maximum squared distance requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a max squared distance requirement
Definition at line 5978 of file requirements.c.
|
static |
Determine whether a maximum tiles of same region requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a max region tiles requirement
Definition at line 6014 of file requirements.c.
|
static |
Determine whether a maximum units on tile requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a maxunitsontile requirement
Definition at line 2893 of file requirements.c.
|
static |
Determine whether a minimum calendar fragment requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a mincalfrag requirement
Definition at line 6122 of file requirements.c.
|
static |
Determine whether a minimum cities count requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a mincities requirement
Definition at line 3823 of file requirements.c.
|
static |
Determine whether a minimum culture requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a minculture requirement
Definition at line 2748 of file requirements.c.
|
static |
Determine whether a minimum foreign population requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a minforeignpct requirement
Definition at line 2822 of file requirements.c.
|
static |
Determine whether a minimum hitpoints requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a minhitpoints requirement
Definition at line 4794 of file requirements.c.
|
static |
Determine whether a minimum movement fragments (minmovefrags) requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a minmovefrags requirement
Definition at line 4770 of file requirements.c.
|
static |
Determine whether a minimum size requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a minsize requirement
Definition at line 5770 of file requirements.c.
|
static |
Determine whether a minimum technologies requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a mintechs requirement
Definition at line 3787 of file requirements.c.
|
static |
Determine whether a minimum veteran level (minveteran) requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a minveteran requirement
Definition at line 4746 of file requirements.c.
|
static |
Determine whether a minimum year requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a minyear requirement
Definition at line 6103 of file requirements.c.
|
static |
Determine whether a nation requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a nation requirement
Definition at line 3880 of file requirements.c.
|
static |
Determine whether a nationality requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a nationality requirement
Definition at line 3999 of file requirements.c.
|
static |
Determine whether a nation group requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a nation group requirement
Definition at line 3942 of file requirements.c.
|
static |
Included for completeness. Determine whether a trivial (none) requirement is satisfied in a given context (it always is), ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a none requirement
Definition at line 2160 of file requirements.c.
|
static |
Determine whether an original owner requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be an original owner requirement
Definition at line 4074 of file requirements.c.
|
static |
Determine whether an output type requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be an output type requirement
Definition at line 3141 of file requirements.c.
|
static |
Determine whether a player flag requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a player flag requirement
Definition at line 2521 of file requirements.c.
|
static |
Determine whether a player state requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a player state requirement
Definition at line 2562 of file requirements.c.
bool is_req_active | ( | const struct req_context * | context, |
const struct req_context * | other_context, | ||
const struct requirement * | req, | ||
const enum req_problem_type | prob_type | ||
) |
Checks the requirement to see if it is active on the given target.
context gives the target (or targets) to evaluate against req gives the requirement itself
context and other_context may be nullptr. This is equivalent to passing empty contexts.
Make sure you give all aspects of the target when calling this function: for instance if you have TARGET_CITY pass the city's owner as the target player as well as the city itself as the target city.
Definition at line 6275 of file requirements.c.
Referenced by adjust_improvement_wants_by_effects(), adjust_wants_for_reqs(), adv_units_ruleset_init(), are_reqs_active(), are_reqs_active_ranges(), can_player_build_improvement_direct(), can_player_build_unit_direct(), city_landlocked_sell_coastal_improvements(), dai_cant_help_req(), dai_find_source_building(), dai_gov_value(), dai_tech_effect_values(), dai_wants_defender_against(), get_potential_improvement_bonus(), improvement_obsolete(), is_effect_prevented(), is_req_preventing(), mke_eval_req(), utype_needs_improvement(), and worklist_item_postpone_req_vec().
bool is_req_in_vec | ( | const struct requirement * | req, |
const struct requirement_vector * | vec | ||
) |
Returns TRUE iff the requirement vector vec contains the requirement req.
Definition at line 6692 of file requirements.c.
Referenced by tgt_citytile_act_cache_set(), and unit_state_action_cache_set().
enum req_unchanging_status is_req_preventing | ( | const struct req_context * | context, |
const struct req_context * | other_context, | ||
const struct requirement * | req, | ||
enum req_problem_type | prob_type | ||
) |
Returns whether this requirement is unfulfilled and probably won't be ever
Definition at line 6663 of file requirements.c.
Referenced by can_city_build_improvement_later(), can_player_build_improvement_later(), dai_cant_help_req(), reqs_may_activate(), and tactical_req_cb().
enum req_unchanging_status is_req_unchanging | ( | const struct req_context * | context, |
const struct requirement * | req | ||
) |
Gives a suggestion may req ever evaluate to another value with given context. (The other player is not supplied since it has no value for changeability of any requirement for now.)
Note this isn't absolute. Result other than REQUCH_NO here just means that the requirement probably can't change its value afterwards.
Definition at line 6615 of file requirements.c.
Referenced by is_req_preventing(), and sanity_check_ruleset_data().
|
static |
Determine whether a road flag requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a roadflag requirement
Definition at line 3490 of file requirements.c.
|
static |
Determine whether a server setting requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a server setting requirement
Definition at line 6182 of file requirements.c.
|
static |
Determine whether a specialist requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a specialist requirement
Definition at line 3162 of file requirements.c.
|
static |
Determine whether a style requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a style requirement
Definition at line 3763 of file requirements.c.
|
static |
Determine whether a tech requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a tech requirement
Definition at line 2603 of file requirements.c.
|
static |
Determine whether a tech flag requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a techflag requirement
Definition at line 2676 of file requirements.c.
|
static |
Determine whether a terrain type requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a terrain requirement
Definition at line 3183 of file requirements.c.
|
static |
Determine whether a terrain-alteration-possible (terrainalter) requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a terrainalter requirement
Definition at line 3692 of file requirements.c.
|
static |
Determine whether a terrain class requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a terrain class requirement
Definition at line 3280 of file requirements.c.
|
static |
Determine whether a terrain flag requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a terrain flag requirement
Definition at line 3382 of file requirements.c.
|
static |
Determine whether a tile relationship requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a tile relationship requirement
Definition at line 4938 of file requirements.c.
|
static |
Determine whether a topology requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a topology requirement
Definition at line 6142 of file requirements.c.
|
static |
Determine whether a unitclass requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a unitclass requirement
Definition at line 4467 of file requirements.c.
|
static |
Determine whether a unitclassflag requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a unitclassflag requirement
Definition at line 4547 of file requirements.c.
|
static |
Determine whether a unitflag requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a unitflag requirement
Definition at line 4387 of file requirements.c.
|
static |
Determine whether a unitstate requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a unitstate requirement
Definition at line 4627 of file requirements.c.
|
static |
Determine whether a unittype requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a unittype requirement
Definition at line 4307 of file requirements.c.
|
static |
Determine whether a wrap requirement is satisfied in a given context, ignoring parts of the requirement that can be handled uniformly for all requirement types.
context, other_context and req must not be null, and req must be a wrap requirement
Definition at line 6162 of file requirements.c.
|
static |
Find if number of cities fulfills a requirement
Definition at line 8315 of file requirements.c.
Referenced by universal_found_functions_init().
|
static |
Returns TRUE if the specified nation requirement contradicts the specified nation group requirement.
Definition at line 1632 of file requirements.c.
Referenced by are_requirements_contradictions().
|
static |
Find if a nation fulfills a requirement
Definition at line 8276 of file requirements.c.
Referenced by universal_found_functions_init().
|
static |
Returns the number of buildings of a certain type on a continent.
Definition at line 2238 of file requirements.c.
Referenced by is_building_req_active().
|
static |
Returns the number of buildings of a certain type owned by plr.
Definition at line 2224 of file requirements.c.
Referenced by is_building_req_active().
Returns the number of buildings of a certain type in the world.
Definition at line 2188 of file requirements.c.
Referenced by is_building_req_active().
Returns the number of total world buildings (this includes buildings that have been destroyed).
Definition at line 2174 of file requirements.c.
Referenced by is_building_req_active().
|
static |
Find if an output type fulfills a requirement
Definition at line 8578 of file requirements.c.
Referenced by universal_found_functions_init().
|
static |
Returns whether a building of a certain type has ever been built by pplayer, even if it has subsequently been destroyed.
Note: the implementation of this is no different in principle from num_world_buildings_total(), but the semantics are different because unlike a great wonder, a small wonder could be destroyed and rebuilt many times, requiring return of values >1, but there's no record kept to support that. Fortunately, the only current caller doesn't need the exact number.
Definition at line 2209 of file requirements.c.
Referenced by is_building_req_active().
|
inlinestatic |
Returns TRUE if players are in the same requirements range.
Definition at line 2115 of file requirements.c.
Referenced by is_achievement_req_active(), is_building_req_active(), is_diplrel_in_range(), is_minculture_req_active(), is_nation_req_active(), is_nationgroup_req_active(), is_tech_req_active(), and is_techflag_req_active().
|
static |
Returns TRUE if req1 and req2 contradicts each other because a present requirement implies the presence of a !present requirement according to the knowledge about implications in universal_found_function.
Definition at line 1701 of file requirements.c.
Referenced by are_requirements_contradictions().
const struct req_context * req_context_empty | ( | void | ) |
Returns a pointer to a statically-allocated, empty requirement context.
Definition at line 1049 of file requirements.c.
Referenced by action_enabled_local(), action_hard_reqs_actor(), action_prob(), get_effect_expected_value(), get_target_bonus_effects(), is_action_possible(), is_req_knowable(), and tri_req_present().
void req_copy | ( | struct requirement * | dst, |
const struct requirement * | src | ||
) |
Fill in copy of the requirement.
Definition at line 1528 of file requirements.c.
Referenced by can_player_build_unit_direct(), req_implies_req(), and unchanging_noally().
struct requirement req_from_str | ( | const char * | type, |
const char * | range, | ||
bool | survives, | ||
bool | present, | ||
bool | quiet, | ||
const char * | value | ||
) |
Parse a requirement type and value string into a requirement structure. Returns the invalid element for enum universal_n on error. Passing in a nullptr type is considered VUT_NONE (not an error).
Pass this some values like "Building", "Factory".
Definition at line 1086 of file requirements.c.
Referenced by effect_edit::add_now(), effect_list_compat_cb(), load_ruleset_cities(), lookup_req_list(), rscompat_civil_war_effects_3_3(), rscompat_enablers_add_obligatory_hard_reqs(), and rscompat_postprocess().
struct requirement req_from_values | ( | int | type, |
int | range, | ||
bool | survives, | ||
bool | present, | ||
bool | quiet, | ||
int | value | ||
) |
Set the values of a req from serializable integers. This is the opposite of req_get_values.
Definition at line 1494 of file requirements.c.
Referenced by req_edit::add_now(), dio_get_requirement_raw(), hard_code_oblig_hard_reqs(), hard_code_oblig_hard_reqs_ruleset(), load_action_auto_uflag_block(), load_action_post_success_force(), rscompat_postprocess(), and send_ruleset_techs().
void req_get_values | ( | const struct requirement * | req, |
int * | type, | ||
int * | range, | ||
bool * | survives, | ||
bool * | present, | ||
bool * | quiet, | ||
int * | value | ||
) |
Return the value of a req as a serializable integer. This is the opposite of req_set_value.
Definition at line 1513 of file requirements.c.
Referenced by dio_put_requirement_raw().
bool req_implies_req | ( | const struct requirement * | req1, |
const struct requirement * | req2 | ||
) |
Returns TRUE if req2 is always fulfilled when req1 is (i.e. req1 => req2)
Definition at line 1742 of file requirements.c.
Referenced by default_tester_cb().
bool req_is_impossible_to_fulfill | ( | const struct requirement * | req | ) |
Returns TRUE iff the specified requirement is known to be impossible to fulfill. Note that this function may return FALSE even when it is impossible to fulfill a requirement if it can't detect it.
req | the requirement to check the possibility of. |
Definition at line 6818 of file requirements.c.
Referenced by req_vec_is_impossible_to_fulfill().
Returns the given requirement as a formatted string ready for printing. Does not care about the 'quiet' property.
astring does not need to be initialized before the call, but caller needs to call astr_free() for it once the returned string is no longer needed.
Definition at line 1064 of file requirements.c.
Referenced by effect_list_sanity_cb(), enabler_first_self_contradiction(), enabler_tile_tgt_local_diplrel_implies_claimed(), req_vec_change_translation(), req_vec_get_first_contradiction(), req_vec_get_first_missing_univ(), req_vec_get_first_redundant_req(), sanity_check_ruleset_data(), and save_action_auto_uflag_block().
struct requirement_vector * req_vec_by_number | ( | const void * | parent_item, |
req_vec_num_in_item | number | ||
) |
Returns a writable pointer to the specified requirement vector in the specified requirement vector or nullptr if the parent item doesn't have a requirement vector with that requirement vector number.
parent_item | the item that should have the requirement vector. |
number | the item's requirement vector number. |
Definition at line 6873 of file requirements.c.
Referenced by purge_duplicate_req_vec(), and purge_unused_req_vec().
bool req_vec_change_apply | ( | const struct req_vec_change * | modification, |
requirement_vector_by_number | getter, | ||
const void * | parent_item | ||
) |
Returns TRUE iff the specified requirement vector modification was successfully applied to the specified target requirement vector.
modification | the requirement vector change |
getter | a function that returns a pointer to the requirement vector the change should be applied to given a ruleset item and the vectors number in the item. |
parent_item | the item to apply the change to. |
Definition at line 6965 of file requirements.c.
Referenced by req_vec_fix::apply_solution(), purge_duplicate_req_vec(), purge_unused_req_vec(), and rscompat_enabler_add_obligatory_hard_reqs().
const char * req_vec_change_translation | ( | const struct req_vec_change * | change, |
const requirement_vector_namer | namer | ||
) |
Returns the specified requirement vector change as a translated string ready for use in the user interface. N.B.: The returned string is static, so every call to this function overwrites the previous.
change | the requirement vector change |
namer | a function that returns a description of the vector to change for the item the vector belongs to. |
Definition at line 6891 of file requirements.c.
Referenced by req_vec_fix::apply_solution(), req_vec_fix_problem::req_vec_fix_problem(), and rscompat_enabler_add_obligatory_hard_reqs().
struct requirement * req_vec_first_contradiction_in_vec | ( | const struct requirement * | req, |
const struct requirement_vector * | vec | ||
) |
Returns the first requirement in the specified requirement vector that contradicts the specified requirement or NULL if no contradiction was detected.
req | the requirement that may contradict the vector |
vec | the requirement vector to look in |
Definition at line 2054 of file requirements.c.
Referenced by does_req_contradicts_reqs(), enabler_first_self_contradiction(), and enabler_tile_tgt_local_diplrel_implies_claimed().
struct req_vec_problem * req_vec_get_first_contradiction | ( | const struct requirement_vector * | vec, |
requirement_vector_number | get_num, | ||
const void * | parent_item | ||
) |
Returns the first self contradiction found in the specified requirement vector with suggested solutions or nullptr if no contradiction was found. It is the responsibility of the caller to free the suggestion when it is done with it.
vec | the requirement vector to look in. |
get_num | function that returns the requirement vector's number in the parent item. |
parent_item | the item that owns the vector. |
Definition at line 7086 of file requirements.c.
Referenced by req_vec_suggest_repair().
struct req_vec_problem * req_vec_get_first_missing_univ | ( | const struct requirement_vector * | vec, |
requirement_vector_number | get_num, | ||
const void * | parent_item | ||
) |
Returns the first universal known to always be absent in the specified requirement vector with suggested solutions or nullptr if no missing universals were found. It is the responsibility of the caller to free the suggestion when it is done with it.
vec | the requirement vector to look in. |
get_num | function that returns the requirement vector's number in the parent item. |
parent_item | the item that owns the vector. |
Definition at line 7174 of file requirements.c.
Referenced by purge_unused_req_vec(), and req_vec_suggest_improvement().
struct req_vec_problem * req_vec_get_first_redundant_req | ( | const struct requirement_vector * | vec, |
requirement_vector_number | get_num, | ||
const void * | parent_item | ||
) |
Returns the first redundant requirement in the specified requirement vector with suggested solutions or nullptr if no redundant requirements were found. It is the responsibility of the caller to free the suggestion when it is done with it.
vec | the requirement vector to look in. |
get_num | function that returns the requirement vector's number in the parent item. |
parent_item | the item that owns the vector. |
Definition at line 7260 of file requirements.c.
Referenced by purge_duplicate_req_vec(), and req_vec_suggest_improvement().
bool req_vec_is_impossible_to_fulfill | ( | const struct requirement_vector * | reqs | ) |
Returns TRUE iff the specified requirement vector is known to be impossible to fulfill. Note that this function may return FALSE even when it is impossible to fulfill a requirement if it can't detect it.
reqs | the requirement vector to check the possibility of. |
Definition at line 6832 of file requirements.c.
Referenced by action_enabler_utype_possible_actor(), ruleset_purge_unused_effects(), and ruleset_purge_unused_enablers().
void req_vec_problem_free | ( | struct req_vec_problem * | issue | ) |
De-allocates resources associated with the given requirement vector problem.
issue | the no longer needed problem. |
Definition at line 7065 of file requirements.c.
Referenced by enabler_problem_level(), purge_duplicate_req_vec(), purge_unused_req_vec(), req_vec_fix::refresh(), req_vec_get_first_missing_univ(), rscompat_enabler_add_obligatory_hard_reqs(), sanity_check_req_vec(), sanity_check_ruleset_data(), and req_vec_fix::~req_vec_fix().
struct req_vec_problem * req_vec_problem_new | ( | int | num_suggested_solutions, |
const char * | descr, | ||
... | |||
) |
Returns a new requirement vector problem with the specified number of suggested solutions and the specified description. The suggestions are added by the caller.
num_suggested_solutions | the number of suggested solutions. |
descr | the description of the problem as a format string |
Definition at line 7039 of file requirements.c.
Referenced by action_enabler_suggest_improvement(), ae_suggest_repair_if_no_oblig(), enabler_first_self_contradiction(), enabler_tile_tgt_local_diplrel_implies_claimed(), req_vec_get_first_contradiction(), req_vec_get_first_missing_univ(), and req_vec_get_first_redundant_req().
struct req_vec_problem * req_vec_problem_new_transl | ( | int | num_suggested_solutions, |
const char * | description, | ||
const char * | description_translated | ||
) |
Returns a new requirement vector problem with the specified number of suggested solutions and the specified description. The suggestions are added by the caller.
num_suggested_solutions | the number of suggested solutions. |
description | the description of the problem. |
description_translated | the translated description of the problem. |
Definition at line 7004 of file requirements.c.
Referenced by req_vec_problem_new().
struct req_vec_problem * req_vec_suggest_improvement | ( | const struct requirement_vector * | vec, |
requirement_vector_number | get_num, | ||
const void * | parent_item | ||
) |
Returns a suggestion to improve the specified requirement vector or nullptr if nothing to improve is found. It is the responsibility of the caller to free the suggestion when it is done with it. A possible improvement isn't always an error.
vec | the requirement vector to look in. |
get_num | function that returns the requirement vector's number in the parent item. |
parent_item | the item that owns the vector. |
Definition at line 7327 of file requirements.c.
Referenced by action_enabler_suggest_improvement().
struct req_vec_problem * req_vec_suggest_repair | ( | const struct requirement_vector * | vec, |
requirement_vector_number | get_num, | ||
const void * | parent_item | ||
) |
Returns a suggestion to fix the specified requirement vector or nullptr if no fix is found to be needed. It is the responsibility of the caller to free the suggestion when it is done with it.
vec | the requirement vector to look in. |
get_num | function that returns the requirement vector's number in the parent item. |
parent_item | the item that owns the vector. |
Definition at line 7152 of file requirements.c.
Referenced by action_enabler_suggest_repair(), req_vec_suggest_improvement(), and sanity_check_req_vec().
req_vec_num_in_item req_vec_vector_number | ( | const void * | parent_item, |
const struct requirement_vector * | vec | ||
) |
Returns the requirement vector number of the specified requirement vector in the specified requirement vector.
parent_item | the item that may own the vector. |
vec | the requirement vector to number. |
Definition at line 6853 of file requirements.c.
Referenced by purge_duplicate_req_vec(), purge_unused_req_vec(), and sanity_check_req_vec().
bool req_vec_wants_type | ( | const struct requirement_vector * | reqs, |
enum universals_n | kind | ||
) |
Returns TRUE iff the specified requirement vector has a positive requirement of the specified requirement type.
reqs | the requirement vector to look in |
kind | the requirement type to look for |
Definition at line 6711 of file requirements.c.
Referenced by city_production_caravan_shields_init().
int requirement_kind_ereq | ( | const int | value, |
const enum req_range | range, | ||
const bool | present, | ||
const int | max_value | ||
) |
Returns (the position of) the given requirement's enumerator in the enumeration of all possible requirements of its requirement kind.
Note: Since this isn't used for any requirement type that supports surviving requirements those aren't supported. Add support if a user appears.
Definition at line 8662 of file requirements.c.
|
static |
Find if a terrain type fulfills a requirement
Definition at line 8439 of file requirements.c.
Referenced by universal_found_functions_init().
enum fc_tristate tri_req_active | ( | const struct req_context * | context, |
const struct req_context * | other_context, | ||
const struct requirement * | req | ||
) |
Evaluates req in context to fc_tristate.
context and other_context may be nullptr. This is equivalent to passing empty contexts.
Fields of context that are nullptr are considered unspecified and will produce TRI_MAYBE if req needs them to evaluate.
Definition at line 6337 of file requirements.c.
Referenced by default_tester_cb(), tactical_req_cb(), and tri_req_active_turns().
enum fc_tristate tri_req_active_turns | ( | int | pass, |
int | period, | ||
const struct req_context * | context, | ||
const struct req_context * | other_context, | ||
const struct requirement * | req | ||
) |
For requirements changing with time, will they be active for the target after pass in period turns if nothing else changes? Since year and calfrag changing is effect dependent, the result may appear not precise. (Does not consider research progress etc.)
Definition at line 6414 of file requirements.c.
Referenced by tactical_req_cb().
|
static |
Applies the standard evaluation of req in context, ignoring req->present.
context and other_context may be nullptr. This is equivalent to passing empty contexts.
Fields of context that are nullptr are considered unspecified and will produce TRI_MAYBE if req needs them to evaluate.
Definition at line 6304 of file requirements.c.
Referenced by is_req_active(), tri_req_active(), unchanging_building(), unchanging_noally(), and unchanging_present().
enum fc_tristate tri_reqs_cb_active | ( | const struct req_context * | context, |
const struct req_context * | other_context, | ||
const struct requirement_vector * | reqs, | ||
struct requirement_vector * | maybe_reqs, | ||
req_tester_cb | tester, | ||
void * | data, | ||
int | n_data | ||
) |
Test requirements in reqs with tester according to (data, n_data) and give the resulting tristate. If maybe_reqs is not nullptr, copies requirements that are evaluated to TRI_MAYBE into it (stops as soon as one evaluates to TRI_NO).
Definition at line 6567 of file requirements.c.
Referenced by action_may_happen_unit_on_city().
|
static |
Special Building case handler. Sometimes building is just a constant parameter, and sometimes it subjects to wonder building rules. Also, there is obsoletion...
Definition at line 191 of file requirements.c.
|
static |
Special CityStatus case handler. Changes easily save for owner.
Definition at line 168 of file requirements.c.
|
static |
Special CityTile case handler
Definition at line 145 of file requirements.c.
|
static |
Never changes in local range Mostly it's about requirements evaluated from constants and persistent ruleset objects passed in the context.
Definition at line 77 of file requirements.c.
|
static |
Unchanging except if provided by an ally and not the player themself Alliances may break, team members may be destroyed or reassigned
Definition at line 122 of file requirements.c.
Referenced by is_req_unchanging().
|
static |
If not present, may appear; but once becomes present, never goes absent
Definition at line 90 of file requirements.c.
Referenced by is_req_unchanging(), and unchanging_world().
|
static |
Equals ..._present(), but never changes in World range
Definition at line 106 of file requirements.c.
|
static |
Find if a unit activity fulfills a requirement
Definition at line 8420 of file requirements.c.
Referenced by universal_found_functions_init().
|
static |
Find if a unit class fulfills a requirement
Definition at line 8369 of file requirements.c.
Referenced by universal_found_functions_init().
|
static |
Find if a unit type fulfills a requirement
Definition at line 8392 of file requirements.c.
Referenced by universal_found_functions_init().
Return the number of shields it takes to build this universal.
Definition at line 8066 of file requirements.c.
Referenced by city_production_build_shield_cost(), city_turns_to_build(), get_city_dialog_production_full(), and get_production_name().
Combine values into a universal structure. This is for serialization and is the opposite of universal_extraction(). FIXME: Ensure that every caller checks error return!
Definition at line 648 of file requirements.c.
Referenced by dio_get_worklist_raw(), handle_city_change(), handle_city_info(), and req_from_values().
Parse requirement type (kind) and value strings into a universal structure. Passing in a nullptr type is considered VUT_NONE (not an error).
Pass this some values like "Building", "Factory". FIXME: Ensure that every caller checks error return!
Definition at line 238 of file requirements.c.
Referenced by global_worklists_build(), req_from_str(), sg_load_player_city(), sg_load_player_city(), worklist_load(), and worklist_load().
Extract universal structure into its components for serialization; the opposite of universal_by_number().
Definition at line 902 of file requirements.c.
Referenced by get_req_source_effects(), req_get_values(), help_widget::set_topic_building(), and universal_value_cb().
Initialise universal_found_function array.
Definition at line 8631 of file requirements.c.
Referenced by game_init().
enum req_item_found universal_fulfills_requirement | ( | const struct requirement * | preq, |
const struct universal * | source | ||
) |
Will the universal 'source' fulfill this requirement?
Definition at line 8200 of file requirements.c.
Referenced by adjust_improvement_wants_by_effects(), effect_value_from_universals(), present_implies_not_present(), universal_is_relevant_to_requirement(), and universals_say_everything().
bool universal_fulfills_requirements | ( | bool | check_necessary, |
const struct requirement_vector * | reqs, | ||
const struct universal * | source | ||
) |
Will the universal 'source' fulfill the requirements in the list? If 'check_necessary' is FALSE: are there no requirements that 'source' would actively prevent the fulfillment of? If 'check_necessary' is TRUE: does 'source' help the requirements to be fulfilled? (NB 'source' might not be the only source of its type that would be sufficient; for instance, if 'source' is a specific terrain type, we can return TRUE even if the requirement is only for something vague like a TerrainClass.)
Definition at line 8221 of file requirements.c.
Referenced by action_enabler_utype_possible_actor(), action_univs_not_blocking(), help_widget::add_extras_of_act_for_terrain(), effect_cumulative_min(), helptext_building(), and universals_mean_unfulfilled().
Returns TRUE iff the specified universal legally can appear in a requirement.
Definition at line 269 of file requirements.c.
Referenced by universal_kind_values().
bool universal_is_mentioned_by_requirements | ( | const struct requirement_vector * | reqs, |
const struct universal * | psource | ||
) |
Returns TRUE iff the universal 'psource' is directly mentioned by any of the requirements in 'reqs'.
Definition at line 8106 of file requirements.c.
Referenced by effect_list_fill_cb(), effect_list_universal_needed_cb(), and is_universal_needed().
bool universal_is_relevant_to_requirement | ( | const struct requirement * | req, |
const struct universal * | source | ||
) |
Returns TRUE iff the specified universal is relevant to fulfilling the specified requirement.
Definition at line 8258 of file requirements.c.
Referenced by helptext_building().
const char * universal_name_translation | ( | const struct universal * | psource, |
char * | buf, | ||
size_t | bufsz | ||
) |
Make user-friendly text for the source. The text is put into a user buffer which is also returned. This should be short, as it's used in lists like "Aqueduct+Size 8" when explaining a calculated value. It just needs to be enough to remind the player of rules they already know, not a complete explanation (use insert_requirement() for that).
Definition at line 7668 of file requirements.c.
Referenced by apply_disaster(), city_production_name_translation(), clipboard_copy_production(), diplomat_sabotage(), do_unit_strike_city_production(), get_city_dialog_production_full(), get_city_dialog_production_row(), get_city_mapview_production(), get_effect_req_text(), help_update_improvement(), help_update_wonder(), insert_allows_single(), manual_improvements(), popup_impr_info(), req_edit::refresh_item(), req_text_insert(), and help_widget::set_topic_building().
Returns TRUE iff the specified universal is known to never be there. Note that this function may return FALSE even when it is impossible for the universal to appear in the game if that can't be detected.
source | the universal to check the absence of. |
Definition at line 6730 of file requirements.c.
Referenced by ae_suggest_repair_if_no_oblig(), req_is_impossible_to_fulfill(), and req_vec_get_first_missing_univ().
Return the universal number of the constituent.
Definition at line 912 of file requirements.c.
Referenced by city_change_production(), clipboard_send_production_packet(), dio_put_worklist_raw(), package_city(), and universal_extraction().
bool universal_replace_in_req_vec | ( | struct requirement_vector * | reqs, |
const struct universal * | to_replace, | ||
const struct universal * | replacement | ||
) |
Replaces all instances of the universal to_replace with replacement in the requirement vector reqs and returns TRUE iff any requirements were replaced.
Definition at line 8086 of file requirements.c.
Return the (untranslated) rule name of the universal. You don't have to free the return pointer.
Definition at line 7494 of file requirements.c.
Referenced by effect_edit::add_now(), define_orig_production_values(), effect_list_sanity_cb(), global_worklist_save(), global_worklists_unbuild(), req_to_fstring(), req_vec_get_first_missing_univ(), save_reqs_vector(), sg_save_player_cities(), and worklist_save().
Return untranslated name of the universal source name.
Definition at line 8058 of file requirements.c.
Referenced by effect_edit::add_now(), global_worklist_save(), global_worklists_unbuild(), req_to_fstring(), sanity_check_req_set(), sg_save_player_cities(), universal_fulfills_requirement(), universal_fulfills_requirements(), and worklist_save().
Parse requirement value strings into a universal structure.
Definition at line 282 of file requirements.c.
Referenced by req_edit::univ_value_edit(), req_edit::univ_value_enum_menu(), and universal_by_rule_name().
bool universals_mean_unfulfilled | ( | struct requirement_vector * | reqs, |
struct universal * | unis, | ||
size_t | n_unis | ||
) |
Returns TRUE iff the presence of any of the specified universals is enough to guarantee that the specified requirement vector never will be fulfilled.
reqs | the requirement vector that never should be fulfilled |
unis | the universals that are present |
n_unis | the number of universals in unis |
Definition at line 8129 of file requirements.c.
Referenced by effect_cumulative_max(), effect_universals_value_never_below(), and player_can_do_action_result().
bool universals_say_everything | ( | struct requirement_vector * | reqs, |
struct universal * | unis, | ||
size_t | n_unis | ||
) |
Returns TRUE iff the presence of the specified universals is enough to know if the specified requirement vector is fulfilled. This means that the requirement vector can't check anything it can't find in the listed universals. Note that TRUE is returned both when the requirement vector is known to be fulfilled and when it is known to be unfulfilled.
reqs | the requirement vector certainty is wanted about |
unis | the universals that are present |
n_unis | the number of universals in unis |
Definition at line 8163 of file requirements.c.
Referenced by effect_universals_value_never_below().
|
static |
Find if a unit state property fulfills a requirement.
Definition at line 8594 of file requirements.c.
Referenced by universal_found_functions_init().
Definition at line 6194 of file requirements.c.
Referenced by is_req_preventing(), is_req_unchanging(), and tri_req_present().
|
static |
Definition at line 52 of file requirements.c.
Referenced by present_implies_not_present(), universal_found_functions_init(), universal_fulfills_requirement(), and universal_fulfills_requirements().