16 #define GETTEXT_DOMAIN "wesnoth-lib"
30 #include "addon/manager.hpp"
40 #include <SDL2/SDL_image.h>
41 #include <SDL2/SDL_mixer.h>
43 #include <boost/algorithm/string.hpp>
44 #include <boost/predef.h>
45 #include <boost/version.hpp>
48 #include <openssl/crypto.h>
49 #include <openssl/opensslv.h>
52 #include <curl/curl.h>
54 #include <pango/pangocairo.h>
59 #include <CoreFoundation/CoreFoundation.h>
67 struct version_table_manager
72 version_table_manager();
75 const version_table_manager versions;
77 std::string format_version(
unsigned a,
unsigned b,
unsigned c)
82 std::string format_version(
const SDL_version& v)
84 return formatter() <<
static_cast<unsigned>(v.major) <<
'.'
85 <<
static_cast<unsigned>(v.minor) <<
'.'
86 <<
static_cast<unsigned>(v.patch);
91 std::string format_openssl_patch_level(uint8_t
p)
94 ? std::string(1,
'a' +
static_cast<char>(
p) - 1)
95 :
"patch" + std::to_string(
p);
98 std::string format_openssl_version(
long v)
100 int major, minor, fix, patch, status;
101 std::ostringstream fmt;
111 minor = v & 0x0F00L >> 8;
112 fix = v & 0x00F0L >> 4;
115 fmt <<
"0." << minor <<
'.' << fix;
117 fmt << format_openssl_patch_level(patch);
126 major = (v & 0xF0000000L) >> 28;
127 minor = (v & 0x0FF00000L) >> 20;
128 fix = (v & 0x000FF000L) >> 12;
129 patch = (v & 0x00000FF0L) >> 4;
130 status = (v & 0x0000000FL);
132 if(v < 0x00905100L) {
144 const uint8_t is_final = (v & 0xF00L) >> 8;
145 status = is_final ? 0xF : 0;
147 }
else if(v < 0x00906000L) {
160 fmt << major <<
'.' << minor <<
'.' << fix;
163 fmt << format_openssl_patch_level(patch);
168 }
else if(status < 0xF) {
169 fmt <<
"-beta" << status;
178 version_table_manager::version_table_manager()
184 SDL_version sdl_version;
190 SDL_VERSION(&sdl_version);
193 SDL_GetVersion(&sdl_version);
202 SDL_IMAGE_VERSION(&sdl_version);
205 const SDL_version* sdl_rt_version = IMG_Linked_Version();
216 SDL_MIXER_VERSION(&sdl_version);
219 sdl_rt_version = Mix_Linked_Version();
238 compiled[
LIB_LUA] = LUA_VERSION_MAJOR
"." LUA_VERSION_MINOR
"." LUA_VERSION_RELEASE;
256 (LIBCURL_VERSION_NUM & 0xFF0000) >> 16,
257 (LIBCURL_VERSION_NUM & 0x00FF00) >> 8,
258 LIBCURL_VERSION_NUM & 0x0000FF);
259 curl_version_info_data *curl_ver = curl_version_info(CURLVERSION_NOW);
260 if(curl_ver && curl_ver->version) {
287 features.emplace_back(
N_(
"feature^Lua console completion"));
294 features.emplace_back(
N_(
"feature^D-Bus notifications back end"));
303 features.emplace_back(
N_(
"feature^Win32 notifications back end"));
309 features.emplace_back(
N_(
"feature^Cocoa notifications back end"));
314 const std::string empty_version =
"";
320 #if BOOST_ARCH_X86_64
322 #elif BOOST_ARCH_X86_32
324 #elif BOOST_ARCH_ARM && (defined(__arm64) || defined(_M_ARM64))
328 #elif BOOST_ARCH_IA64
332 #elif BOOST_ARCH_ALPHA
334 #elif BOOST_ARCH_MIPS
336 #elif BOOST_ARCH_SPARC
347 return _(
"cpu_architecture^<unknown>");
353 std::vector<optional_feature> res = versions.features;
355 for(std::size_t k = 0; k < res.size(); ++k) {
357 res[k].name =
_(res[k].name.c_str());
361 const auto caret_pos = res[k].name.find(
'^');
362 if(caret_pos != std::string::npos) {
363 res[k].name.erase(0, caret_pos + 1);
373 return empty_version;
376 return versions.compiled[lib];
382 return empty_version;
385 return versions.linked[lib];
391 return empty_version;
394 return versions.names[lib];
401 if(infofile.is_open()) {
402 std::getline(infofile,
info);
422 using list_entry = std::pair<std::string, std::string>;
423 using contents_list = std::vector<list_entry>;
425 list_formatter(
const std::string& heading,
const contents_list& contents = {},
const std::string& empty_placeholder =
"")
432 void insert(
const std::string&
label,
const std::string& value)
437 void set_placeholder(
const std::string& placeholder)
442 void stream_put(std::ostream& os)
const;
457 void list_formatter::stream_put(std::ostream& os)
const
466 auto label_length_comparator = [](
const list_entry&
a,
const list_entry&
b)
471 const auto longest_entry_label = std::max_element(
contents_.begin(),
contents_.end(), label_length_comparator);
472 const std::size_t min_length = longest_entry_label !=
contents_.end()
477 const std::size_t prev_width = os.width();
478 const std::ostream::fmtflags prev_flags = os.flags();
483 os << std::setw(min_length) << entry.first +
label_delimiter << entry.second <<
'\n';
486 os.width(prev_width);
487 os.flags(prev_flags);
493 std::ostream&
operator<<(std::ostream& os,
const list_formatter& fmt)
499 list_formatter library_versions_report_internal(
const std::string& heading =
"")
501 list_formatter fmt{heading};
505 if(versions.names[
n].empty()) {
509 std::string text = versions.compiled[
n];
510 if(!versions.linked[
n].empty()) {
511 text +=
" (runtime " + versions.linked[
n] +
")";
514 fmt.insert(versions.names[
n], text);
520 list_formatter optional_features_report_internal(
const std::string& heading =
"")
522 list_formatter fmt{heading};
526 for(
const auto& feature :
features) {
527 fmt.insert(feature.name, feature.enabled ?
"yes" :
"no");
533 inline std::string geometry_to_string(
point p)
535 return std::to_string(
p.x) +
'x' + std::to_string(
p.y);
538 template<
typename coordinateType>
539 inline std::string geometry_to_string(coordinateType horizontal, coordinateType vertical)
542 return formatter() << std::fixed << std::setprecision(2) << horizontal <<
'x' << vertical;
545 std::string format_sdl_driver_list(std::vector<std::string> drivers,
const std::string&
current_driver)
547 bool found_current_driver =
false;
549 for(
auto& drvname : drivers) {
551 found_current_driver =
true;
556 if(drivers.empty() || !found_current_driver) {
564 list_formatter video_settings_report_internal(
const std::string& heading =
"")
566 list_formatter fmt{heading};
568 std::string placeholder;
571 placeholder =
"Running in non-interactive mode.";
575 placeholder =
"Video not initialized yet.";
578 if(!placeholder.empty()) {
579 fmt.set_placeholder(placeholder);
587 std::string dpi_report;
589 dpi_report = dpi.first == 0.0f || dpi.second == 0.0f ?
591 geometry_to_string(dpi.first, dpi.second);
593 fmt.insert(
"SDL video drivers", format_sdl_driver_list(drivers,
current_driver));
598 fmt.insert(
"Screen dpi", dpi_report);
603 fmt.insert(
info.first,
info.second);
609 list_formatter sound_settings_report_internal(
const std::string& heading =
"")
611 list_formatter fmt{heading};
615 if(!driver_status.initialized) {
616 fmt.set_placeholder(
"Audio not initialized.");
623 static std::map<uint16_t, std::string> audio_format_names = {
625 { AUDIO_U8,
"unsigned 8 bit" },
626 { AUDIO_S8,
"signed 8 bit" },
628 { AUDIO_U16LSB,
"unsigned 16 bit little-endian" },
629 { AUDIO_U16MSB,
"unsigned 16 bit big-endian" },
630 { AUDIO_S16LSB,
"signed 16 bit little-endian" },
631 { AUDIO_S16MSB,
"signed 16 bit big-endian" },
633 { AUDIO_S32LSB,
"signed 32 bit little-endian" },
634 { AUDIO_S32MSB,
"signed 32 bit big-endian" },
635 { AUDIO_F32LSB,
"signed 32 bit floating point little-endian" },
636 { AUDIO_F32MSB,
"signed 32 bit floating point big-endian" },
639 auto fmt_names_it = audio_format_names.find(driver_status.format);
641 const std::string fmt_name = fmt_names_it != audio_format_names.end()
642 ? fmt_names_it->second
643 :
formatter() <<
"0x" << std::setfill(
'0') << std::setw(2*
sizeof(driver_status.format)) << std::hex << std::uppercase << driver_status.format;
645 fmt.insert(
"SDL audio drivers", format_sdl_driver_list(drivers,
current_driver));
646 fmt.insert(
"Number of channels", std::to_string(driver_status.channels));
647 fmt.insert(
"Output rate", std::to_string(driver_status.frequency) +
" Hz");
648 fmt.insert(
"Sample format", fmt_name);
649 fmt.insert(
"Sample size", std::to_string(driver_status.chunk_size) +
" bytes");
658 return formatter{} << library_versions_report_internal();
663 return formatter{} << optional_features_report_internal();
668 list_formatter::contents_list paths{
679 for(
auto& entry : paths) {
683 list_formatter::contents_list addons;
689 std::ostringstream o;
695 << list_formatter{
"Game paths", paths}
696 << library_versions_report_internal(
"Libraries")
697 << optional_features_report_internal(
"Features")
698 << video_settings_report_internal(
"Current video settings")
699 << sound_settings_report_internal(
"Current audio settings")
700 << list_formatter(
"Installed add-ons", addons,
"No add-ons installed.");
std::ostream & operator<<(std::ostream &s, const ai::attack_result &r)
std::map< std::string, std::string > installed_addons_and_versions()
Retrieves the ids and versions of all installed add-ons.
static const char heading_delimiter
std::vector< optional_feature > features
std::vector< std::string > compiled
std::vector< std::string > linked
std::vector< std::string > names
static const std::string label_delimiter
Platform identification and version information functions.
Declarations for File-IO.
Interfaces for manipulating version numbers of engine, add-ons, etc.
static std::string _(const char *str)
std::string label
What to show in the filter's drop-down list.
T end(const std::pair< T, T > &p)
T begin(const std::pair< T, T > &p)
std::string os_version()
Returns a string with the running OS name and version information.
std::string get_cache_dir()
std::string get_user_config_dir()
std::string get_user_data_dir()
std::string get_saves_dir()
std::string get_logs_dir()
std::string get_addons_dir()
std::string sanitize_path(const std::string &path)
Sanitizes a path to remove references to the user's name.
Game configuration data as global variables.
const std::string & library_name(LIBRARY_ID lib)
Retrieve the user-visible name for the given library.
std::string full_build_report()
Produce a bug report-style info dump.
std::string library_versions_report()
Produce a plain-text report of library versions suitable for stdout/stderr.
std::vector< optional_feature > optional_features_table(bool localize)
Retrieve the features table.
const std::string & library_runtime_version(LIBRARY_ID lib)
Retrieve the runtime version number of the given library.
const std::string & library_build_version(LIBRARY_ID lib)
Retrieve the build-time version number of the given library.
std::string build_arch()
Obtain the processor architecture for this build.
std::string optional_features_report()
Produce a plain-text report of features suitable for stdout/stderr.
const std::string revision
std::string dist_channel_id()
Return the distribution channel identifier, or "Default" if missing.
std::vector< std::string > enumerate_drivers()
std::string current_driver()
std::string & insert(std::string &str, const std::size_t pos, const std::string &insert)
Insert a UTF-8 string at the specified position.
std::size_t size(const std::string &str)
Length in characters of a UTF-8 string.
void trim(std::string_view &s)
std::string join(const T &v, const std::string &s=",")
Generates a new string joining container items in a list.
bool headless()
The game is running headless.
std::vector< std::pair< std::string, std::string > > renderer_report()
Provides diagnostic information about the current renderer for the build_info API.
point output_size()
Returns the size of the final render target.
point game_canvas_size()
The size of the game canvas, in drawing coordinates / game pixels.
bool has_window()
Whether the game has set up a window to render into.
std::vector< std::string > enumerate_drivers()
A list of available video drivers.
std::pair< float, float > get_dpi()
Retrieves the current game screen DPI for the build_info API.
point current_resolution()
The current window size in desktop coordinates.
int current_refresh_rate()
The refresh rate of the screen.
std::string current_driver()
The current video driver in use, or else "<not initialized>".
static driver_status query()
static map_location::DIRECTION n