15 #define GETTEXT_DOMAIN "wesnoth-lib"
32 #define ERR_CONFIG LOG_STREAM(err, log_config)
43 , last_selected_(
prefs::
get().selected_achievement_group())
44 , achievements_box_(
nullptr)
45 , content_names_(
nullptr)
51 std::vector<config> content_list;
52 content_names_ = &find_widget<menu_button>(
"selected_achievements_list");
65 content_list.emplace_back(
"label", list.display_name_);
68 if(content_list.size() > 0) {
85 int achieved_count = 0;
90 }
else if(ach.hidden_ && !ach.achieved_) {
94 const bool in_progress = ach.max_progress_ != 0 && ach.current_progress_ != -1;
95 const auto in_progress_name = !in_progress
99 {
"count", std::to_string(ach.current_progress_)},
100 {
"total", std::to_string(ach.max_progress_)}
105 {
"label", ach.achieved_
106 ? ach.icon_completed_
111 {
"label", ach.achieved_
112 ? ach.name_completed_
117 {
"label", ach.achieved_
124 auto achievement_progress =
static_cast<progress_bar*
>(newrow.
find(
"achievement_progress",
false));
126 achievement_progress->
set_percentage((ach.current_progress_ /
double(ach.max_progress_)) * 100);
137 auto& achieved_label = find_widget<label>(
"achievement_count");
138 achieved_label.set_label(
VGETTEXT(
"Completed $count/$total", {
139 {
"count", std::to_string(achieved_count)} ,
constexpr int sub_achievements_limit
static lg::log_domain log_config("config")
static game_config_manager * get()
std::vector< achievement_group > & get_achievements()
void set_variable(const std::string &key, wfl::variant &&value)
virtual void post_show() override
Actions to be taken after the window has been shown.
menu_button * content_names_
listbox * achievements_box_
void set_achievements_row()
virtual void pre_show() override
Actions to be taken before showing the window.
std::string last_selected_
void set_sub_achievements(grid &newrow, const achievement &ach)
Abstract base class for all modal dialogs.
widget * find(const std::string_view id, const bool must_be_active) override
See widget::find.
grid & add_row(const widget_item &item, const int index=-1)
When an item in the list is selected by the user we need to update the state.
void clear()
Removes all the rows in the listbox, clearing it.
void set_percentage(unsigned percentage)
Standard logging facilities (interface).
REGISTER_DIALOG(editor_edit_unit)
void connect_signal_notify_modified(dispatcher &dispatcher, const signal_notification &signal)
Connects a signal handler for getting a notification upon modification.
std::map< std::string, widget_item > widget_data
std::string img(const std::string &src, const std::string &align, bool floating)
Generates a Help markup tag corresponding to an image.
std::string span_color(const color_t &color, Args &&... data)
Applies Pango markup to the input specifying its display color.
A set of achievements tied to a particular content.
std::string content_for_
The internal ID used for this content.
std::vector< achievement > achievements_
The achievements associated to this content.
Represents a single achievement and its data.
std::vector< sub_achievement > sub_achievements_
The list of distinct sub-achievements for this achievement.
Represents a distinct sub-achievement within another achievement.
t_string description_
The description of the sub-achievement to be shown in its tooltip.
std::string icon_completed_
The icon of the sub-achievement to show on the UI when completed.
std::string icon_
The icon of the sub-achievement to show on the UI when not completed.
bool achieved_
Whether the sub-achievement has been completed.