#include <attack_type.hpp>
Classes | |
class | specials_context_t |
Public Member Functions | |
attack_type (const config &cfg) | |
const t_string & | name () const |
const std::string & | id () const |
const std::string & | type () const |
const std::string & | icon () const |
const std::string & | range () const |
int | min_range () const |
int | max_range () const |
std::string | accuracy_parry_description () const |
int | accuracy () const |
int | parry () const |
int | damage () const |
int | num_attacks () const |
double | attack_weight () const |
double | defense_weight () const |
const config & | specials () const |
void | set_name (const t_string &value) |
void | set_id (const std::string &value) |
void | set_type (const std::string &value) |
void | set_icon (const std::string &value) |
void | set_range (const std::string &value) |
void | set_accuracy (int value) |
void | set_parry (int value) |
void | set_damage (int value) |
void | set_num_attacks (int value) |
void | set_attack_weight (double value) |
void | set_defense_weight (double value) |
void | set_specials (config value) |
bool | has_special (const std::string &special, bool simple_check=false, bool special_id=true, bool special_tags=true) const |
Returns whether or not *this has a special with a tag or id equal to special. More... | |
unit_ability_list | get_specials (const std::string &special) const |
Returns the currently active specials as an ability list, given the current context (see set_specials_context). More... | |
std::vector< std::pair< t_string, t_string > > | special_tooltips (boost::dynamic_bitset<> *active_list=nullptr) const |
Returns a vector of names and descriptions for the specials of *this. More... | |
bool | matches_filter (const config &filter) const |
Returns whether or not *this matches the given filter. More... | |
bool | apply_modification (const config &cfg) |
Modifies *this using the specifications in cfg, but only if *this matches cfg viewed as a filter. More... | |
bool | describe_modification (const config &cfg, std::string *description) |
Trimmed down version of apply_modification(), with no modifications actually made. More... | |
int | movement_used () const |
void | set_movement_used (int value) |
int | attacks_used () const |
void | set_attacks_used (int value) |
void | write (config &cfg) const |
config | to_config () const |
void | add_formula_context (wfl::map_formula_callable &) const |
specials_context_t | specials_context (unit_const_ptr self, unit_const_ptr other, const map_location &unit_loc, const map_location &other_loc, bool attacking, const_attack_ptr other_attack) const |
specials_context_t | specials_context (unit_const_ptr self, const map_location &loc, bool attacking=true) const |
specials_context_t | specials_context (const unit_type &self_type, const map_location &loc, bool attacking=true) const |
specials_context_t | specials_context_for_listing (bool attacking=true) const |
void | set_changed (bool value) |
bool | get_changed () const |
Private Types | |
enum | AFFECTS { AFFECT_SELF =1 , AFFECT_OTHER =2 , AFFECT_EITHER =3 } |
Private Attributes | |
map_location | self_loc_ |
map_location | other_loc_ |
unit_const_ptr | self_ |
unit_const_ptr | other_ |
bool | is_attacker_ |
const_attack_ptr | other_attack_ |
bool | is_for_listing_ = false |
t_string | description_ |
std::string | id_ |
std::string | type_ |
std::string | icon_ |
std::string | range_ |
int | min_range_ |
int | max_range_ |
int | damage_ |
int | num_attacks_ |
double | attack_weight_ |
double | defense_weight_ |
int | accuracy_ |
int | movement_used_ |
int | attacks_used_ |
int | parry_ |
config | specials_ |
bool | changed_ |
Friends | |
class | specials_context_t |
already added | |
std::string | weapon_specials () const |
Returns a comma-separated string of active names for the specials of *this. More... | |
std::string | weapon_specials_value (const std::set< std::string > checking_tags) const |
void | modified_attacks (unsigned &min_attacks, unsigned &max_attacks) const |
Calculates the number of attacks this weapon has, considering specials. More... | |
int | modified_damage () const |
Returns the damage per attack of this weapon, considering specials. More... | |
int | composite_value (const unit_ability_list &abil_list, int base_value) const |
Return the special weapon value, considering specials. More... | |
unit_ability_list | get_weapon_ability (const std::string &ability) const |
Returns list for weapon like abilities for each ability type. More... | |
unit_ability_list | get_specials_and_abilities (const std::string &special) const |
Returns list who contains get_weapon_ability and get_specials list for each ability type. More... | |
bool | has_weapon_ability (const std::string &special, bool special_id=true, bool special_tags=true) const |
used for abilities used like weapon More... | |
bool | has_special_or_ability (const std::string &special, bool special_id=true, bool special_tags=true) const |
used for abilities used like weapon and true specials More... | |
unit_ability_list | overwrite_special_checking (const std::string &ability, unit_ability_list input, unit_ability_list overwriters, const std::string &filter_self, bool is_special) const |
Filter a list of abilities or weapon specials, removing any entries that are overridden by the overwrite_specials attributes of a second list. More... | |
bool | check_self_abilities (const config &cfg, const std::string &special) const |
check_self_abilities : return an boolean value for checking of activities of abilities used like weapon More... | |
bool | check_adj_abilities (const config &cfg, const std::string &special, int dir, const unit &from) const |
check_adj_abilities : return an boolean value for checking of activities of abilities used like weapon More... | |
bool | special_active (const config &special, AFFECTS whom, const std::string &tag_name, const std::string &filter_self="filter_self") const |
static void | weapon_specials_impl_self (std::string &temp_string, unit_const_ptr self, const_attack_ptr self_attack, const_attack_ptr other_attack, const map_location &self_loc, AFFECTS whom, std::set< std::string > &checking_name, const std::set< std::string > &checking_tags={}, bool leader_bool=false) |
weapon_specials_impl_self and weapon_specials_impl_adj : check if special name can be added. More... | |
static void | weapon_specials_impl_adj (std::string &temp_string, unit_const_ptr self, const_attack_ptr self_attack, const_attack_ptr other_attack, const map_location &self_loc, AFFECTS whom, std::set< std::string > &checking_name, const std::set< std::string > &checking_tags={}, const std::string &affect_adjacents="", bool leader_bool=false) |
static bool | check_self_abilities_impl (const_attack_ptr self_attack, const_attack_ptr other_attack, const config &special, unit_const_ptr u, const map_location &loc, AFFECTS whom, const std::string &tag_name, bool leader_bool=false) |
check_self_abilities_impl : return an boolean value for checking of activities of abilities used like weapon More... | |
static bool | check_adj_abilities_impl (const_attack_ptr self_attack, const_attack_ptr other_attack, const config &special, unit_const_ptr u, const unit &from, int dir, const map_location &loc, AFFECTS whom, const std::string &tag_name, bool leader_bool=false) |
check_adj_abilities_impl : return an boolean value for checking of activities of abilities used like weapon in unit adjacent to fighter More... | |
static bool | special_active_impl (const_attack_ptr self_attack, const_attack_ptr other_attack, const config &special, AFFECTS whom, const std::string &tag_name, const std::string &filter_self="filter_self") |
Returns whether or not the given special is active for the specified unit, based on the current context (see set_specials_context). More... | |
Definition at line 38 of file attack_type.hpp.
|
private |
Enumerator | |
---|---|
AFFECT_SELF | |
AFFECT_OTHER | |
AFFECT_EITHER |
Definition at line 137 of file attack_type.hpp.
|
explicit |
Definition at line 50 of file attack_type.cpp.
References description_, translation::egettext(), t_string::empty(), icon_, and id_.
|
inline |
Definition at line 51 of file attack_type.hpp.
References accuracy_.
Referenced by impl_unit_attack_get(), and matches_simple_filter().
std::string attack_type::accuracy_parry_description | ( | ) | const |
Definition at line 84 of file attack_type.cpp.
References accuracy_, parry_, s, and utils::signed_percent().
void attack_type::add_formula_context | ( | wfl::map_formula_callable & | callable | ) | const |
Definition at line 474 of file abilities.cpp.
References wfl::map_formula_callable::add(), is_attacker_, other_, and self_.
bool attack_type::apply_modification | ( | const config & | cfg | ) |
Modifies *this using the specifications in cfg, but only if *this matches cfg viewed as a filter.
this
matched the cfg as a filter. Definition at line 278 of file attack_type.cpp.
References accuracy_, config::add_child(), config::all_children_range(), utils::apply_modifier(), attack_weight_, attacks_used_, config::clear(), damage_, defense_weight_, deprecated_message(), description_, t_string::empty(), icon_, id_, INDEFINITE, matches_filter(), movement_used_, num_attacks_, config::optional_child(), parry_, range_, set_accuracy(), set_attack_weight(), set_attacks_used(), set_changed(), set_damage(), set_defense_weight(), set_icon(), set_name(), set_parry(), set_range(), set_specials(), set_type(), specials_, utils::split(), and type_.
|
inline |
Definition at line 55 of file attack_type.hpp.
References attack_weight_.
Referenced by battle_context::choose_attacker_weapon(), and impl_unit_attack_get().
|
inline |
Definition at line 126 of file attack_type.hpp.
References attacks_used_.
Referenced by impl_unit_attack_get(), and matches_simple_filter().
|
private |
check_adj_abilities : return an boolean value for checking of activities of abilities used like weapon
cfg | the config to one special ability checked. |
special | The special ability type who is being checked. |
dir | direction to research a unit adjacent to self_. |
from | unit adjacent to self_ is checked. |
Definition at line 1383 of file abilities.cpp.
References AFFECT_SELF, check_adj_abilities_impl(), other_attack_, self_, and self_loc_.
Referenced by has_weapon_ability().
|
staticprivate |
check_adj_abilities_impl : return an boolean value for checking of activities of abilities used like weapon in unit adjacent to fighter
self_attack | the attack used by unit who fight. |
other_attack | the attack used by opponent. |
special | the config to one special ability checked. |
u | the unit who is or not affected by an abilities owned by from. |
from | unit adjacent to u is checked. |
dir | direction to research a unit adjacent to u. |
loc | location of the unit checked. |
whom | determine if unit affected or not by special ability. |
tag_name | The special ability type who is being checked. |
leader_bool | If true, [leadership] abilities are checked. |
Definition at line 1388 of file abilities.cpp.
References special_active_impl().
Referenced by check_adj_abilities(), has_weapon_ability(), and weapon_specials_impl_adj().
|
private |
check_self_abilities : return an boolean value for checking of activities of abilities used like weapon
cfg | the config to one special ability checked. |
special | The special ability type who is being checked. |
Definition at line 1363 of file abilities.cpp.
References AFFECT_SELF, check_self_abilities_impl(), other_attack_, self_, and self_loc_.
Referenced by has_weapon_ability().
|
staticprivate |
check_self_abilities_impl : return an boolean value for checking of activities of abilities used like weapon
self_attack | the attack used by unit checked in this function. |
other_attack | the attack used by opponent to unit checked. |
special | the config to one special ability checked. |
u | the unit checked. |
loc | location of the unit checked. |
whom | determine if unit affected or not by special ability. |
tag_name | The special ability type who is being checked. |
leader_bool | If true, [leadership] abilities are checked. |
Definition at line 1368 of file abilities.cpp.
References special_active_impl().
Referenced by check_self_abilities(), has_weapon_ability(), and weapon_specials_impl_self().
int attack_type::composite_value | ( | const unit_ability_list & | abil_list, |
int | base_value | ||
) | const |
Return the special weapon value, considering specials.
abil_list | The list of special checked. |
base_value | The value modified or not by function. |
Definition at line 1275 of file abilities.cpp.
References unit_abilities::effect::get_composite_value().
Referenced by modified_attacks(), and modified_damage().
|
inline |
Definition at line 53 of file attack_type.hpp.
References damage_.
Referenced by impl_unit_attack_get(), matches_simple_filter(), modified_damage(), and gui2::dialogs::unit_attack::pre_show().
|
inline |
Definition at line 56 of file attack_type.hpp.
References defense_weight_.
Referenced by battle_context::choose_defender_weapon(), and impl_unit_attack_get().
bool attack_type::describe_modification | ( | const config & | cfg, |
std::string * | description | ||
) |
Trimmed down version of apply_modification(), with no modifications actually made.
This can be used to get a description of the modification(s) specified by cfg (if *this matches cfg as a filter).
If *description is provided, it will be set to a (translated) description of the modification(s) applied (currently only changes to the number of strikes, damage, accuracy, and parry are included in this description).
this
matched the cfg as a filter. Definition at line 436 of file attack_type.cpp.
References utils::format_conjunct_list(), matches_filter(), utils::print_modifier(), set_accuracy(), set_attacks_used(), set_damage(), set_parry(), VGETTEXT, and VNGETTEXT.
|
inline |
Definition at line 310 of file attack_type.hpp.
References changed_.
unit_ability_list attack_type::get_specials | ( | const std::string & | special | ) | const |
Returns the currently active specials as an ability list, given the current context (see set_specials_context).
Definition at line 771 of file abilities.cpp.
References AFFECT_OTHER, AFFECT_SELF, config::child_range(), unit_ability_list::emplace_back(), i, other_attack_, other_loc_, self_, self_loc_, special_active(), and specials_.
Referenced by get_specials_and_abilities().
unit_ability_list attack_type::get_specials_and_abilities | ( | const std::string & | special | ) | const |
Returns list who contains get_weapon_ability and get_specials list for each ability type.
Definition at line 1258 of file abilities.cpp.
References unit_ability_list::append(), unit_ability_list::empty(), get_specials(), get_weapon_ability(), and overwrite_special_checking().
Referenced by modified_attacks(), and modified_damage().
unit_ability_list attack_type::get_weapon_ability | ( | const std::string & | ability | ) | const |
Returns list for weapon like abilities for each ability type.
Definition at line 1239 of file abilities.cpp.
References unit_ability_list::append_if(), i, other_, other_loc_, self_, and self_loc_.
Referenced by get_specials_and_abilities().
bool attack_type::has_special | ( | const std::string & | special, |
bool | simple_check = false , |
||
bool | special_id = true , |
||
bool | special_tags = true |
||
) | const |
Returns whether or not *this has a special with a tag or id equal to special.
special | The special being checked. |
simple_check | If true, check whether the unit has the special. Else, check whether the special is currently active. |
special_id | If true, match special against the id of special tags. |
special_tags | If true, match special against the tag name of special tags. |
If simple_check is set to true, then the check is merely for being present. Otherwise (the default), the check is for a special active in the current context (see set_specials_context), including specials obtained from the opponent's attack.
Definition at line 699 of file abilities.cpp.
References AFFECT_OTHER, AFFECT_SELF, other_attack_, special_active(), and specials_.
Referenced by has_special_or_ability(), and matches_simple_filter().
bool attack_type::has_special_or_ability | ( | const std::string & | special, |
bool | special_id = true , |
||
bool | special_tags = true |
||
) | const |
used for abilities used like weapon and true specials
special | The special being checked. |
special_id | If true, match special against the id of special tags. |
special_tags | If true, match special against the tag name of special tags. |
Definition at line 1509 of file abilities.cpp.
References has_special(), has_weapon_ability(), and range().
Referenced by matches_simple_filter().
bool attack_type::has_weapon_ability | ( | const std::string & | special, |
bool | special_id = true , |
||
bool | special_tags = true |
||
) | const |
used for abilities used like weapon
Returns whether or not *this has a special ability with a tag or id equal to special.
special | The special being checked. |
special_id | If true, match special against the id of special tags. |
special_tags | If true, match special against the tag name of special tags. |
the Check is for a special ability active in the current context (see set_specials_context), including specials obtained from the opponent's attack.
Definition at line 1408 of file abilities.cpp.
References AFFECT_OTHER, check_adj_abilities(), check_adj_abilities_impl(), check_self_abilities(), check_self_abilities_impl(), unit_map::end(), unit_map::find(), get_ability_children(), get_adjacent_tiles(), i, other_, other_attack_, other_loc_, self_, and self_loc_.
Referenced by has_special_or_ability().
|
inline |
Definition at line 46 of file attack_type.hpp.
References icon_.
Referenced by impl_unit_attack_get(), and gui2::dialogs::unit_attack::pre_show().
|
inline |
Definition at line 44 of file attack_type.hpp.
References id_.
Referenced by impl_unit_attack_get(), and matches_simple_filter().
bool attack_type::matches_filter | ( | const config & | filter | ) | const |
Returns whether or not *this matches the given filter.
Definition at line 248 of file attack_type.cpp.
References config::all_children_range(), and matches_simple_filter().
Referenced by apply_modification(), and describe_modification().
|
inline |
Definition at line 49 of file attack_type.hpp.
References max_range_.
|
inline |
Definition at line 48 of file attack_type.hpp.
References min_range_.
void attack_type::modified_attacks | ( | unsigned & | min_attacks, |
unsigned & | max_attacks | ||
) | const |
Calculates the number of attacks this weapon has, considering specials.
This returns two numbers because of the swarm special. The actual number of attacks depends on the unit's health and should be: min_attacks + (max_attacks - min_attacks) * (current hp) / (max hp) c.f. swarm_blows()
Definition at line 1095 of file abilities.cpp.
References composite_value(), unit_ability_list::empty(), ERR_NG, get_specials_and_abilities(), unit_ability_list::highest(), and num_attacks().
int attack_type::modified_damage | ( | ) | const |
Returns the damage per attack of this weapon, considering specials.
Definition at line 1120 of file abilities.cpp.
References composite_value(), damage(), and get_specials_and_abilities().
|
inline |
Definition at line 124 of file attack_type.hpp.
References movement_used_.
Referenced by impl_unit_attack_get(), and matches_simple_filter().
|
inline |
Definition at line 43 of file attack_type.hpp.
References description_.
Referenced by impl_unit_attack_get(), gui2::dialogs::unit_attack::pre_show(), special_tooltips(), and weapon_specials().
|
inline |
Definition at line 54 of file attack_type.hpp.
References num_attacks_.
Referenced by impl_unit_attack_get(), matches_simple_filter(), modified_attacks(), and gui2::dialogs::unit_attack::pre_show().
|
private |
Filter a list of abilities or weapon specials, removing any entries that are overridden by the overwrite_specials attributes of a second list.
ability | The special ability type who is being checked. |
input | list to check, a filtered copy of this list is returned by the function. |
overwriters | list that may have overwrite_specials attributes. |
filter_self | name of [filter_"self/student"] if is abilities or specials who are checked. |
is_special | if true, input contains weapon specials; if false, it contains abilities. |
Definition at line 1286 of file abilities.cpp.
References unit_ability::ability_cfg, AFFECT_OTHER, AFFECT_SELF, unit_ability_list::begin(), unit_ability_list::empty(), unit_ability_list::end(), unit_ability_list::erase(), utils::erase_if(), i, other_attack_, overwrite_special_affects(), and special_active_impl().
Referenced by get_specials_and_abilities().
|
inline |
Definition at line 52 of file attack_type.hpp.
References parry_.
Referenced by impl_unit_attack_get(), and matches_simple_filter().
|
inline |
Definition at line 47 of file attack_type.hpp.
References range_.
Referenced by battle_context::choose_defender_weapon(), has_special_or_ability(), impl_unit_attack_get(), matches_simple_filter(), and gui2::dialogs::unit_attack::pre_show().
|
inline |
Definition at line 64 of file attack_type.hpp.
References accuracy_, and set_changed().
Referenced by apply_modification(), describe_modification(), and impl_unit_attack_set().
|
inline |
Definition at line 68 of file attack_type.hpp.
References attack_weight_, and set_changed().
Referenced by apply_modification(), and impl_unit_attack_set().
|
inline |
Definition at line 127 of file attack_type.hpp.
References attacks_used_.
Referenced by apply_modification(), describe_modification(), and impl_unit_attack_set().
|
inline |
Definition at line 306 of file attack_type.hpp.
References changed_.
Referenced by apply_modification(), set_accuracy(), set_attack_weight(), set_damage(), set_defense_weight(), set_icon(), set_id(), set_name(), set_num_attacks(), set_parry(), set_range(), set_specials(), and set_type().
|
inline |
Definition at line 66 of file attack_type.hpp.
References damage_, and set_changed().
Referenced by apply_modification(), describe_modification(), and impl_unit_attack_set().
|
inline |
Definition at line 69 of file attack_type.hpp.
References defense_weight_, and set_changed().
Referenced by apply_modification(), and impl_unit_attack_set().
|
inline |
Definition at line 62 of file attack_type.hpp.
References icon_, and set_changed().
Referenced by apply_modification(), and impl_unit_attack_set().
|
inline |
Definition at line 60 of file attack_type.hpp.
References id_, and set_changed().
Referenced by impl_unit_attack_set().
|
inline |
Definition at line 125 of file attack_type.hpp.
References movement_used_.
Referenced by impl_unit_attack_set().
|
inline |
Definition at line 59 of file attack_type.hpp.
References description_, and set_changed().
Referenced by apply_modification(), and impl_unit_attack_set().
|
inline |
Definition at line 67 of file attack_type.hpp.
References num_attacks_, and set_changed().
Referenced by impl_unit_attack_set().
|
inline |
Definition at line 65 of file attack_type.hpp.
References parry_, and set_changed().
Referenced by apply_modification(), describe_modification(), and impl_unit_attack_set().
|
inline |
Definition at line 63 of file attack_type.hpp.
References range_, and set_changed().
Referenced by apply_modification(), and impl_unit_attack_set().
|
inline |
Definition at line 70 of file attack_type.hpp.
References set_changed(), and specials_.
Referenced by apply_modification(), and impl_unit_attack_set().
|
inline |
Definition at line 61 of file attack_type.hpp.
References set_changed(), and type_.
Referenced by apply_modification(), and impl_unit_attack_set().
|
private |
Definition at line 1521 of file abilities.cpp.
References other_attack_, and special_active_impl().
Referenced by get_specials(), has_special(), special_tooltips(), weapon_specials(), and weapon_specials_value().
|
staticprivate |
Returns whether or not the given special is active for the specified unit, based on the current context (see set_specials_context).
self_attack | this unit's attack |
other_attack | the other unit's attack |
special | a weapon special WML structure |
whom | specifies which combatant we care about |
tag_name | tag name of the special config |
filter_self | the filter to use |
Definition at line 1537 of file abilities.cpp.
References config::add_child(), AFFECT_EITHER, AFFECT_OTHER, AFFECT_SELF, game_config::images::blank, config::child_or_add(), config::child_range(), deprecated_message(), unit_map::end(), resources::filter_con, unit_map::find(), resources::gameboard, get_adjacent_tiles(), filter_context::get_disp_context(), map_location::get_relative_dir(), unit_map::iterator_base< iter_types >::get_shared_ptr(), display_context::get_team(), config::has_child(), i, INDEFINITE, utf8::index(), team::is_enemy(), gamemap::is_village(), game_board::map(), config::matches(), map_location::NDIRECTIONS, map_location::parse_directions(), utils::parse_ranges(), unit::side(), unit::STATE_POISONED, unit::STATE_SLOWED, and unit_map::iterator_base< iter_types >::valid().
Referenced by check_adj_abilities_impl(), check_self_abilities_impl(), overwrite_special_checking(), and special_active().
std::vector< std::pair< t_string, t_string > > attack_type::special_tooltips | ( | boost::dynamic_bitset<> * | active_list = nullptr | ) | const |
Returns a vector of names and descriptions for the specials of *this.
Each std::pair in the vector has first = name and second = description.
This uses either the active or inactive name/description for each special, based on the current context (see set_specials_context), provided active_list is not nullptr. Otherwise specials are assumed active. If the appropriate name is empty, the special is skipped.
Definition at line 804 of file abilities.cpp.
References AFFECT_EITHER, config::all_children_range(), t_string::empty(), name(), special_active(), and specials_.
|
inline |
Definition at line 57 of file attack_type.hpp.
References specials_.
Referenced by impl_unit_attack_get().
|
inline |
Definition at line 300 of file attack_type.hpp.
References specials_context_t.
|
inline |
Definition at line 297 of file attack_type.hpp.
References specials_context_t.
|
inline |
Definition at line 292 of file attack_type.hpp.
References specials_context_t.
Referenced by gui2::dialogs::unit_attack::pre_show(), and unit_display::unit_attack().
|
inline |
Definition at line 303 of file attack_type.hpp.
References specials_context_t.
|
inline |
Definition at line 130 of file attack_type.hpp.
Referenced by impl_unit_attack_get().
|
inline |
Definition at line 45 of file attack_type.hpp.
References type_.
Referenced by impl_unit_attack_get(), matches_simple_filter(), unit::resistance_against(), movetype::resistances::resistance_against(), and unit_abilities::individual_effect::set().
std::string attack_type::weapon_specials | ( | ) | const |
Returns a comma-separated string of active names for the specials of *this.
Empty names are skipped.
Whether or not a special is active depends on the current context (see set_specials_context)
Definition at line 858 of file abilities.cpp.
References AFFECT_EITHER, AFFECT_SELF, config::all_children_range(), t_string::empty(), font::inactive_details_color, name(), other_attack_, self_, self_loc_, font::span_color(), special_active(), specials_, weapon_specials_impl_adj(), and weapon_specials_impl_self().
Referenced by gui2::dialogs::unit_attack::pre_show().
|
staticprivate |
Definition at line 959 of file abilities.cpp.
References add_name(), check_adj_abilities_impl(), unit_map::end(), unit_map::find(), cursor::get(), get_adjacent_tiles(), and i.
Referenced by weapon_specials(), and weapon_specials_value().
|
staticprivate |
weapon_specials_impl_self and weapon_specials_impl_adj : check if special name can be added.
[in,out] | temp_string | the string modified and returned |
[in] | self | the unit checked. |
[in] | self_attack | the attack used by unit checked in this function. |
[in] | other_attack | the attack used by opponent to unit checked. |
[in] | self_loc | location of the unit checked. |
[in] | whom | determine if unit affected or not by special ability. |
[in,out] | checking_name | the reference for checking if a name is already added |
[in] | checking_tags | the reference for checking if special ability type can be used |
[in] | leader_bool | If true, [leadership] abilities are checked. |
Definition at line 939 of file abilities.cpp.
References add_name(), and check_self_abilities_impl().
Referenced by weapon_specials(), and weapon_specials_value().
std::string attack_type::weapon_specials_value | ( | const std::set< std::string > | checking_tags | ) | const |
Definition at line 901 of file abilities.cpp.
References _(), add_name(), add_name_list(), AFFECT_OTHER, AFFECT_SELF, config::all_children_range(), other_, other_attack_, other_loc_, self_, self_loc_, special_active(), specials_, weapon_specials_impl_adj(), and weapon_specials_impl_self().
Referenced by gui2::dialogs::unit_attack::pre_show().
void attack_type::write | ( | config & | cfg | ) | const |
Definition at line 564 of file attack_type.cpp.
References accuracy_, config::add_child(), attack_weight_, attacks_used_, damage_, defense_weight_, description_, icon_, id_, max_range_, min_range_, movement_used_, num_attacks_, parry_, range_, specials_, and type_.
Referenced by to_config().
|
friend |
Definition at line 261 of file attack_type.hpp.
Referenced by specials_context(), and specials_context_for_listing().
|
private |
Definition at line 327 of file attack_type.hpp.
Referenced by accuracy(), accuracy_parry_description(), apply_modification(), set_accuracy(), and write().
|
private |
Definition at line 324 of file attack_type.hpp.
Referenced by apply_modification(), attack_weight(), set_attack_weight(), and write().
|
private |
Definition at line 329 of file attack_type.hpp.
Referenced by apply_modification(), attacks_used(), set_attacks_used(), and write().
|
private |
Definition at line 332 of file attack_type.hpp.
Referenced by get_changed(), and set_changed().
|
private |
Definition at line 322 of file attack_type.hpp.
Referenced by apply_modification(), damage(), set_damage(), and write().
|
private |
Definition at line 325 of file attack_type.hpp.
Referenced by apply_modification(), defense_weight(), set_defense_weight(), and write().
|
private |
Definition at line 316 of file attack_type.hpp.
Referenced by apply_modification(), attack_type(), name(), set_name(), and write().
|
private |
Definition at line 319 of file attack_type.hpp.
Referenced by apply_modification(), attack_type(), icon(), set_icon(), and write().
|
private |
Definition at line 317 of file attack_type.hpp.
Referenced by apply_modification(), attack_type(), id(), set_id(), and write().
|
mutableprivate |
Definition at line 265 of file attack_type.hpp.
Referenced by add_formula_context(), and attack_type::specials_context_t::specials_context_t().
|
mutableprivate |
Definition at line 267 of file attack_type.hpp.
Referenced by attack_type::specials_context_t::specials_context_t().
|
private |
Definition at line 321 of file attack_type.hpp.
Referenced by max_range(), and write().
|
private |
Definition at line 321 of file attack_type.hpp.
Referenced by min_range(), and write().
|
private |
Definition at line 328 of file attack_type.hpp.
Referenced by apply_modification(), movement_used(), set_movement_used(), and write().
|
private |
Definition at line 323 of file attack_type.hpp.
Referenced by apply_modification(), num_attacks(), set_num_attacks(), and write().
|
mutableprivate |
Definition at line 264 of file attack_type.hpp.
Referenced by add_formula_context(), get_weapon_ability(), has_weapon_ability(), attack_type::specials_context_t::specials_context_t(), and weapon_specials_value().
|
mutableprivate |
Definition at line 266 of file attack_type.hpp.
Referenced by check_adj_abilities(), check_self_abilities(), get_specials(), has_special(), has_weapon_ability(), overwrite_special_checking(), special_active(), attack_type::specials_context_t::specials_context_t(), weapon_specials(), and weapon_specials_value().
|
private |
Definition at line 262 of file attack_type.hpp.
Referenced by get_specials(), get_weapon_ability(), has_weapon_ability(), attack_type::specials_context_t::specials_context_t(), and weapon_specials_value().
|
private |
Definition at line 330 of file attack_type.hpp.
Referenced by accuracy_parry_description(), apply_modification(), parry(), set_parry(), and write().
|
private |
Definition at line 320 of file attack_type.hpp.
Referenced by apply_modification(), range(), set_range(), and write().
|
mutableprivate |
Definition at line 263 of file attack_type.hpp.
Referenced by add_formula_context(), check_adj_abilities(), check_self_abilities(), get_specials(), get_weapon_ability(), has_weapon_ability(), attack_type::specials_context_t::specials_context_t(), weapon_specials(), and weapon_specials_value().
|
mutableprivate |
Definition at line 262 of file attack_type.hpp.
Referenced by check_adj_abilities(), check_self_abilities(), get_specials(), get_weapon_ability(), has_weapon_ability(), attack_type::specials_context_t::specials_context_t(), weapon_specials(), and weapon_specials_value().
|
private |
Definition at line 331 of file attack_type.hpp.
Referenced by apply_modification(), get_specials(), has_special(), set_specials(), special_tooltips(), specials(), weapon_specials(), weapon_specials_value(), and write().
|
private |
Definition at line 318 of file attack_type.hpp.
Referenced by apply_modification(), set_type(), type(), and write().