wesnoth/src/about.cpp
Martin Hrubý (hrubymar10) 674fda85b7 Migrate links to https if available - Fwd c18537edc0678f40a209797d72dfaba3e5e88545
(cherry-picked from commit bc4d22dc72e79c3d6a3364ac896e473afd298246)
2018-10-07 03:23:36 +00:00

151 lines
3.3 KiB
C++

/*
Copyright (C) 2003 - 2018 by David White <dave@whitevine.net>
Part of the Battle for Wesnoth Project https://www.wesnoth.org/
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY.
See the COPYING file for more details.
*/
#include "about.hpp"
#include "config.hpp"
#include "gettext.hpp"
#include "serialization/string_utils.hpp"
#include <map>
/**
* @namespace about
* Display credits %about all contributors.
*/
namespace about
{
namespace
{
credits_data parsed_credits_data;
std::map<std::string, std::vector<std::string>> images_campaigns;
std::vector<std::string> images_general;
void gather_images(const config& from, std::vector<std::string>& to)
{
const auto& im = utils::parenthetical_split(from["images"], ',');
if(!im.empty()) {
to.insert(to.end(), im.begin(), im.end());
}
}
} // end anon namespace
credits_group::credits_group(const config& cfg, bool is_campaign_credits)
: sections()
, id()
, header()
{
if(is_campaign_credits) {
id = cfg["id"].str();
header = cfg["name"].t_str();
}
sections.reserve(cfg.child_count("about"));
for(const config& about : cfg.child_range("about")) {
if(!about.has_child("entry")) {
continue;
}
sections.emplace_back(about);
if(is_campaign_credits) {
gather_images(about, images_campaigns[id]);
} else {
gather_images(about, images_general);
}
}
if(cfg["sort"].to_bool(false)) {
std::sort(sections.begin(), sections.end());
}
}
credits_group::about_group::about_group(const config& cfg)
: names()
, title(cfg["title"].t_str())
{
names.reserve(cfg.child_count("entry"));
for(const config& entry : cfg.child_range("entry")) {
names.push_back(entry["name"].str());
}
}
bool credits_group::about_group::operator<(const about_group& o) const
{
return translation::compare(title.str(), o.title.str()) < 0;
}
const credits_data& get_credits_data()
{
return parsed_credits_data;
}
std::vector<std::string> get_background_images(const std::string& campaign)
{
if(!campaign.empty() && !images_campaigns[campaign].empty()){
return images_campaigns[campaign];
}
return images_general;
}
void set_about(const config& cfg)
{
parsed_credits_data.clear();
// TODO: should we reserve space in parsed_credits_data here?
images_campaigns.clear();
images_general.clear();
//
// Parse all [credits_group] tags
//
for(const config& group : cfg.child_range("credits_group")) {
if(group.has_child("about")) {
parsed_credits_data.emplace_back(group, false);
// Not in the credits_group since we don't want to inadvertently
// pick up images from campaigns.
gather_images(group, images_general);
}
}
//
// Parse all toplevel [about] tags.
//
config misc;
for(const config& about : cfg.child_range("about")) {
misc.add_child("about", about);
}
if(!misc.empty()) {
parsed_credits_data.emplace_back(misc, false);
}
//
// Parse all campaign [about] tags.
//
for(const config& campaign : cfg.child_range("campaign")) {
if(campaign.has_child("about")) {
parsed_credits_data.emplace_back(campaign, true);
}
}
}
} // end namespace about