#pragma once #include "body.hpp" #include "h-basic.h" #include "object_flag_set.hpp" #include "player_defs.hpp" #include "player_race_flag_set.hpp" #include "player_spec.hpp" /** * Maximum number of specialties. */ constexpr int MAX_SPEC = 20; /** * Player descriptor and runtime data. */ struct player_class { const char *title = nullptr; /* Type of class */ char *desc = nullptr; /* Small desc of the class */ const char *titles[PY_MAX_LEVEL / 5] { }; /* Titles */ s16b c_adj[6] { }; /* Class stat modifier */ s16b c_mhp = 0; /* Class hit-dice adjustment */ s16b c_exp = 0; /* Class experience factor */ s16b powers[4] { }; /* Powers of the class */ player_race_flag_set flags; s16b mana = 0; s16b blow_num = 0; s16b blow_wgt = 0; s16b blow_mul = 0; s16b extra_blows = 0; s32b sense_base = 0; s32b sense_pl = 0; s32b sense_plus = 0; byte sense_heavy = 0; byte sense_heavy_magic = 0; s16b obj_tval[5] { }; s16b obj_sval[5] { }; s16b obj_pval[5] { }; s16b obj_dd[5] { }; s16b obj_ds[5] { }; s16b obj_num = 0; char body_parts[BODY_MAX] { }; /* To help to decide what to use when body changing */ std::array oflags; s16b opval[PY_MAX_LEVEL + 1] { }; char skill_basem[MAX_SKILLS] { }; u32b skill_base[MAX_SKILLS] { }; char skill_modm[MAX_SKILLS] { }; s16b skill_mod[MAX_SKILLS] { }; u32b gods = 0; std::array spec; std::array abilities; /* Abilitiers to be gained by level(doesnt take prereqs in account) */ };