The Battle for Wesnoth  1.19.0-dev
Namespaces | Macros | Functions | Variables
unit.cpp File Reference

Routines to manage units. More...

#include "units/unit.hpp"
#include "ai/manager.hpp"
#include "color.hpp"
#include "deprecation.hpp"
#include "display.hpp"
#include "formatter.hpp"
#include "formula/string_utils.hpp"
#include "game_board.hpp"
#include "game_config.hpp"
#include "game_data.hpp"
#include "game_events/manager.hpp"
#include "game_version.hpp"
#include "lexical_cast.hpp"
#include "log.hpp"
#include "map/map.hpp"
#include "preferences/game.hpp"
#include "random.hpp"
#include "resources.hpp"
#include "scripting/game_lua_kernel.hpp"
#include "synced_context.hpp"
#include "team.hpp"
#include "units/abilities.hpp"
#include "units/animation_component.hpp"
#include "units/filter.hpp"
#include "units/formula_manager.hpp"
#include "units/id.hpp"
#include "units/map.hpp"
#include "units/types.hpp"
#include "utils/config_filters.hpp"
#include "variable.hpp"
#include <cassert>
#include <cstdlib>
#include <exception>
#include <iterator>
#include <string_view>
Include dependency graph for unit.cpp:

Go to the source code of this file.

Namespaces

 t_translation
 

Macros

#define DBG_UT   LOG_STREAM(debug, log_unit)
 
#define LOG_UT   LOG_STREAM(info, log_unit)
 
#define WRN_UT   LOG_STREAM(warn, log_unit)
 
#define ERR_UT   LOG_STREAM(err, log_unit)
 

Functions

static const unit_typeget_unit_type (const std::string &type_id)
 Converts a string ID to a unit_type. More...
 
static unit_race::GENDER generate_gender (const unit_type &type, bool random_gender)
 
static unit_race::GENDER generate_gender (const unit_type &u_type, const config &cfg)
 
static color_t hp_color_impl (int hitpoints, int max_hitpoints)
 
bool mod_duration_match (const std::string &mod_dur, const std::string &goal_dur)
 Determines if mod_dur "matches" goal_dur. More...
 
static bool matches_ability_filter (const config &cfg, const std::string &tag_name, const config &filter)
 
std::string get_checksum (const unit &u, backwards_compatibility::unit_checksum_version version)
 Gets a checksum for a unit. More...
 

Variables

static lg::log_domain log_unit ("unit")
 

Detailed Description

Routines to manage units.

Definition in file unit.cpp.

Macro Definition Documentation

◆ DBG_UT

#define DBG_UT   LOG_STREAM(debug, log_unit)

Definition at line 62 of file unit.cpp.

◆ ERR_UT

#define ERR_UT   LOG_STREAM(err, log_unit)

Definition at line 65 of file unit.cpp.

◆ LOG_UT

#define LOG_UT   LOG_STREAM(info, log_unit)

Definition at line 63 of file unit.cpp.

◆ WRN_UT

#define WRN_UT   LOG_STREAM(warn, log_unit)

Definition at line 64 of file unit.cpp.

Function Documentation

◆ generate_gender() [1/2]

static unit_race::GENDER generate_gender ( const unit_type type,
bool  random_gender 
)
static

Definition at line 219 of file unit.cpp.

References randomness::generator, and randomness::rng::get_random_int().

Referenced by generate_gender(), and unit::init().

◆ generate_gender() [2/2]

static unit_race::GENDER generate_gender ( const unit_type u_type,
const config cfg 
)
static

Definition at line 231 of file unit.cpp.

References generate_gender(), and string_gender().

◆ get_checksum()

Gets a checksum for a unit.

In MP games the descriptions are locally generated and might differ, so it should be possible to discard them. Not sure whether replays suffer the same problem.

Parameters
uthis unit
versionallows the checksum expected in older replays to be used
Returns
the checksum for a unit

Definition at line 2822 of file unit.cpp.

References config::add_child(), c, config::child_range(), DBG_UT, config::hash(), config::recursive_clear_value(), backwards_compatibility::version_1_16_or_older, and unit::write().

Referenced by replay::add_unit_checksum().

◆ get_unit_type()

static const unit_type& get_unit_type ( const std::string &  type_id)
static

Converts a string ID to a unit_type.

Throws a game_error exception if the string does not correspond to a type.

Definition at line 207 of file unit.cpp.

References unit_type::check_id(), unit_type_data::find(), i, and unit_types.

Referenced by unit::expire_modifications(), wfl::gamestate_function_symbol_table::gamestate_function_symbol_table(), and unit::init().

◆ hp_color_impl()

static color_t hp_color_impl ( int  hitpoints,
int  max_hitpoints 
)
static

Definition at line 1068 of file unit.cpp.

Referenced by unit::hp_color(), and unit::hp_color_max().

◆ matches_ability_filter()

static bool matches_ability_filter ( const config cfg,
const std::string &  tag_name,
const config filter 
)
static

◆ mod_duration_match()

bool mod_duration_match ( const std::string &  mod_dur,
const std::string &  goal_dur 
)
inline

Determines if mod_dur "matches" goal_dur.

If goal_dur is not empty, they match if they are equal. If goal_dur is empty, they match if mod_dur is neither empty nor "forever". Helper function for expire_modifications().

Definition at line 1216 of file unit.cpp.

Referenced by unit::expire_modifications().

Variable Documentation

◆ log_unit

lg::log_domain log_unit("unit") ( "unit"  )
static