OpenTTD Source 20260311-master-g511d3794ce
survey.cpp
Go to the documentation of this file.
1/*
2 * This file is part of OpenTTD.
3 * OpenTTD 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, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <https://www.gnu.org/licenses/old-licenses/gpl-2.0>.
6 */
7
9
10#include "stdafx.h"
11
12#include "survey.h"
13
14#include "settings_table.h"
15#include "network/network.h"
16#include "rev.h"
17#include "settings_type.h"
21#include "3rdparty/fmt/ranges.h"
22
23#include "currency.h"
24#include "fontcache.h"
25#include "language.h"
26
27#include "ai/ai_info.hpp"
28#include "game/game.hpp"
29#include "game/game_info.hpp"
30
34
35#include "base_media_base.h"
36#include "base_media_graphics.h"
37#include "base_media_music.h"
38#include "base_media_sounds.h"
39#include "blitter/factory.hpp"
40
41#include "social_integration.h"
42
43#ifdef WITH_ALLEGRO
44# include <allegro.h>
45#endif /* WITH_ALLEGRO */
46#ifdef WITH_FONTCONFIG
47# include <fontconfig/fontconfig.h>
48#endif /* WITH_FONTCONFIG */
49#ifdef WITH_PNG
50 /* pngconf.h, included by png.h doesn't like something in the
51 * freetype headers. As such it's not alphabetically sorted. */
52# include <png.h>
53#endif /* WITH_PNG */
54#ifdef WITH_FREETYPE
55# include <ft2build.h>
56# include FT_FREETYPE_H
57#endif /* WITH_FREETYPE */
58#ifdef WITH_HARFBUZZ
59# include <hb.h>
60#endif /* WITH_HARFBUZZ */
61#ifdef WITH_ICU_I18N
62# include <unicode/uversion.h>
63#endif /* WITH_ICU_I18N */
64#ifdef WITH_LIBLZMA
65# include <lzma.h>
66#endif
67#ifdef WITH_LZO
68#include <lzo/lzo1x.h>
69#endif
70#ifdef WITH_SDL2
71#include <SDL.h>
72#endif /* WITH_SDL2 */
73#ifdef WITH_ZLIB
74# include <zlib.h>
75#endif
76#ifdef WITH_CURL
77# include <curl/curl.h>
78#endif
79
80#include "safeguards.h"
81
83 {GRFStatus::GCS_UNKNOWN, "unknown"},
84 {GRFStatus::GCS_DISABLED, "disabled"},
85 {GRFStatus::GCS_NOT_FOUND, "not found"},
86 {GRFStatus::GCS_INITIALISED, "initialised"},
87 {GRFStatus::GCS_ACTIVATED, "activated"},
88})
89
98})
99
100
102static const std::string _vehicle_type_to_string[] = {
103 "train",
104 "roadveh",
105 "ship",
106 "aircraft",
107};
108
121{
122 static const SettingTable _generic_setting_tables[] = {
123 _difficulty_settings,
124 _economy_settings,
125 _game_settings,
126 _gui_settings,
127 _linkgraph_settings,
128 _locale_settings,
129 _multimedia_settings,
130 _network_settings,
131 _news_display_settings,
132 _pathfinding_settings,
133 _script_settings,
134 _world_settings,
135 };
136 return _generic_setting_tables;
137}
138
147static void SurveySettingsTable(nlohmann::json &survey, const SettingTable &table, void *object, bool skip_if_default)
148{
149 for (auto &desc : table) {
150 const SettingDesc *sd = GetSettingDesc(desc);
151 /* Skip any old settings we no longer save/load. */
153
154 const auto &name = sd->GetName();
155 if (skip_if_default && sd->IsDefaultValue(object)) continue;
156 survey[name] = sd->FormatValue(object);
157 }
158}
159
166void SurveySettings(nlohmann::json &survey, bool skip_if_default)
167{
168 SurveySettingsTable(survey, _misc_settings, nullptr, skip_if_default);
169#if defined(_WIN32) && !defined(DEDICATED)
170 SurveySettingsTable(survey, _win32_settings, nullptr, skip_if_default);
171#endif
172 for (auto &table : GenericSettingTables()) {
173 SurveySettingsTable(survey, table, &_settings_game, skip_if_default);
174 }
175 SurveySettingsTable(survey, _currency_settings, &GetCustomCurrency(), skip_if_default);
176 SurveySettingsTable(survey, _company_settings, &_settings_client.company, skip_if_default);
177}
178
184void SurveyCompiler(nlohmann::json &survey)
185{
186#if defined(_MSC_VER)
187 survey["name"] = "MSVC";
188 survey["version"] = _MSC_VER;
189#elif defined(__ICC) && defined(__GNUC__)
190 survey["name"] = "ICC";
191 survey["version"] = __ICC;
192# if defined(__GNUC__)
193 survey["extra"] = fmt::format("GCC {}.{}.{} mode", __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__);
194# endif
195#elif defined(__GNUC__)
196 survey["name"] = "GCC";
197 survey["version"] = fmt::format("{}.{}.{}", __GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__);
198#else
199 survey["name"] = "unknown";
200#endif
201
202#if defined(__VERSION__)
203 survey["extra"] = __VERSION__;
204#endif
205}
206
212void SurveyOpenTTD(nlohmann::json &survey)
213{
214 survey["version"]["revision"] = std::string(_openttd_revision);
215 survey["version"]["modified"] = _openttd_revision_modified;
216 survey["version"]["tagged"] = _openttd_revision_tagged;
217 survey["version"]["hash"] = std::string(_openttd_revision_hash);
218 survey["version"]["newgrf"] = fmt::format("{:X}", _openttd_newgrf_version);
219 survey["version"]["content"] = std::string(_openttd_content_version);
220 survey["build_date"] = std::string(_openttd_build_date);
221 survey["bits"] =
222#ifdef POINTER_IS_64BIT
223 64
224#else
225 32
226#endif
227 ;
228 if constexpr (std::endian::native == std::endian::little) survey["endian"] = "little";
229 if constexpr (std::endian::native == std::endian::big) survey["endian"] = "big";
230 survey["dedicated_build"] =
231#ifdef DEDICATED
232 "yes"
233#else
234 "no"
235#endif
236 ;
237}
238
244void SurveyGameSession(nlohmann::json &survey)
245{
246 survey["id"] = _game_session_stats.savegame_id;
247 survey["seconds"] = std::chrono::duration_cast<std::chrono::seconds>(std::chrono::steady_clock::now() - _game_session_stats.start_time).count();
248 if (_game_session_stats.savegame_size.has_value()) {
249 survey["savegame_size"] = _game_session_stats.savegame_size.value();
250 }
251}
252
258void SurveyConfiguration(nlohmann::json &survey)
259{
260 survey["network"] = _networking ? (_network_server ? "server" : "client") : "no";
261 if (_current_language != nullptr) {
262 survey["language"]["filename"] = FS2OTTD(_current_language->file.filename().native());
263 survey["language"]["name"] = _current_language->name;
264 survey["language"]["isocode"] = _current_language->isocode;
265 }
266 if (BlitterFactory::GetCurrentBlitter() != nullptr) {
267 survey["blitter"] = BlitterFactory::GetCurrentBlitter()->GetName();
268 }
269 if (MusicDriver::GetInstance() != nullptr) {
270 survey["music_driver"] = MusicDriver::GetInstance()->GetName();
271 }
272 if (SoundDriver::GetInstance() != nullptr) {
273 survey["sound_driver"] = SoundDriver::GetInstance()->GetName();
274 }
275 if (VideoDriver::GetInstance() != nullptr) {
276 survey["video_driver"] = VideoDriver::GetInstance()->GetName();
277 survey["video_info"] = VideoDriver::GetInstance()->GetInfoString();
278 }
279 if (BaseGraphics::GetUsedSet() != nullptr) {
280 survey["graphics_set"] = fmt::format("{}.{}", BaseGraphics::GetUsedSet()->name, fmt::join(BaseGraphics::GetUsedSet()->version, "."));
281 const GRFConfig *extra_cfg = BaseGraphics::GetUsedSet()->GetExtraConfig();
282 if (extra_cfg != nullptr && !extra_cfg->param.empty()) {
283 survey["graphics_set_parameters"] = std::span<const uint32_t>(extra_cfg->param);
284 } else {
285 survey["graphics_set_parameters"] = std::span<const uint32_t>();
286 }
287 }
288 if (BaseMusic::GetUsedSet() != nullptr) {
289 survey["music_set"] = fmt::format("{}.{}", BaseMusic::GetUsedSet()->name, fmt::join(BaseMusic::GetUsedSet()->version, "."));
290 }
291 if (BaseSounds::GetUsedSet() != nullptr) {
292 survey["sound_set"] = fmt::format("{}.{}", BaseSounds::GetUsedSet()->name, fmt::join(BaseSounds::GetUsedSet()->version, "."));
293 }
294}
295
301void SurveyFont(nlohmann::json &survey)
302{
303 survey["small"] = FontCache::Get(FS_SMALL)->GetFontName();
304 survey["medium"] = FontCache::Get(FS_NORMAL)->GetFontName();
305 survey["large"] = FontCache::Get(FS_LARGE)->GetFontName();
306 survey["mono"] = FontCache::Get(FS_MONO)->GetFontName();
307}
308
314void SurveyCompanies(nlohmann::json &survey)
315{
316 for (const Company *c : Company::Iterate()) {
317 auto &company = survey[fmt::format("{}", c->index.base())];
318 if (c->ai_info == nullptr) {
319 company["type"] = "human";
320 } else {
321 company["type"] = "ai";
322 company["script"] = fmt::format("{}.{}", c->ai_info->GetName(), c->ai_info->GetVersion());
323 }
324
325 for (VehicleType type = VEH_BEGIN; type < VEH_COMPANY_END; type++) {
326 uint amount = c->group_all[type].num_vehicle;
327 company["vehicles"][_vehicle_type_to_string[type]] = amount;
328 }
329
330 company["infrastructure"]["road"] = c->infrastructure.GetRoadTotal();
331 company["infrastructure"]["tram"] = c->infrastructure.GetTramTotal();
332 company["infrastructure"]["rail"] = c->infrastructure.GetRailTotal();
333 company["infrastructure"]["signal"] = c->infrastructure.signal;
334 company["infrastructure"]["water"] = c->infrastructure.water;
335 company["infrastructure"]["station"] = c->infrastructure.station;
336 company["infrastructure"]["airport"] = c->infrastructure.airport;
337 }
338}
339
345void SurveyTimers(nlohmann::json &survey)
346{
347 survey["ticks"] = TimerGameTick::counter;
348
349 TimerGameEconomy::YearMonthDay economy_ymd = TimerGameEconomy::ConvertDateToYMD(TimerGameEconomy::date);
350 survey["economy"] = fmt::format("{:04}-{:02}-{:02} ({})", economy_ymd.year, economy_ymd.month + 1, economy_ymd.day, TimerGameEconomy::date_fract);
351
352 TimerGameCalendar::YearMonthDay ymd = TimerGameCalendar::ConvertDateToYMD(TimerGameCalendar::date);
353 survey["calendar"] = fmt::format("{:04}-{:02}-{:02} ({})", ymd.year, ymd.month + 1, ymd.day, TimerGameCalendar::date_fract);
354}
355
361void SurveyGrfs(nlohmann::json &survey)
362{
363 for (const auto &c : _grfconfig) {
364 auto grfid = fmt::format("{:08x}", std::byteswap(c->ident.grfid));
365 auto &grf = survey[std::move(grfid)];
366
367 grf["md5sum"] = FormatArrayAsHex(c->ident.md5sum);
368 grf["status"] = c->status;
369
370 if ((c->palette & GRFP_GRF_MASK) == GRFP_GRF_UNSET) grf["palette"] = "unset";
371 if ((c->palette & GRFP_GRF_MASK) == GRFP_GRF_DOS) grf["palette"] = "dos";
372 if ((c->palette & GRFP_GRF_MASK) == GRFP_GRF_WINDOWS) grf["palette"] = "windows";
373 if ((c->palette & GRFP_GRF_MASK) == GRFP_GRF_ANY) grf["palette"] = "any";
374
375 if ((c->palette & GRFP_BLT_MASK) == GRFP_BLT_UNSET) grf["blitter"] = "unset";
376 if ((c->palette & GRFP_BLT_MASK) == GRFP_BLT_32BPP) grf["blitter"] = "32bpp";
377
378 grf["is_static"] = c->flags.Test(GRFConfigFlag::Static);
379 grf["parameters"] = std::span<const uint32_t>(c->param);
380 }
381}
382
388void SurveyGameScript(nlohmann::json &survey)
389{
390 if (Game::GetInfo() == nullptr) return;
391
392 survey = fmt::format("{}.{}", Game::GetInfo()->GetName(), Game::GetInfo()->GetVersion());
393}
394
400void SurveyLibraries(nlohmann::json &survey)
401{
402#ifdef WITH_ALLEGRO
403 survey["allegro"] = std::string(allegro_id);
404#endif /* WITH_ALLEGRO */
405
406#ifdef WITH_FONTCONFIG
407 int version = FcGetVersion();
408 survey["fontconfig"] = fmt::format("{}.{}.{}", version / 10000, (version / 100) % 100, version % 100);
409#endif /* WITH_FONTCONFIG */
410
411#ifdef WITH_FREETYPE
412 FT_Library library;
413 int major, minor, patch;
414 FT_Init_FreeType(&library);
415 FT_Library_Version(library, &major, &minor, &patch);
416 FT_Done_FreeType(library);
417 survey["freetype"] = fmt::format("{}.{}.{}", major, minor, patch);
418#endif /* WITH_FREETYPE */
419
420#if defined(WITH_HARFBUZZ)
421 survey["harfbuzz"] = hb_version_string();
422#endif /* WITH_HARFBUZZ */
423
424#if defined(WITH_ICU_I18N)
425 /* 4 times 0-255, separated by dots (.) and a trailing '\0' */
426 char buf[4 * 3 + 3 + 1];
427 UVersionInfo ver;
428 u_getVersion(ver);
429 u_versionToString(ver, buf);
430 survey["icu_i18n"] = buf;
431#endif /* WITH_ICU_I18N */
432
433#ifdef WITH_LIBLZMA
434 survey["lzma"] = lzma_version_string();
435#endif
436
437#ifdef WITH_LZO
438 survey["lzo"] = lzo_version_string();
439#endif
440
441#ifdef WITH_PNG
442 survey["png"] = png_get_libpng_ver(nullptr);
443#endif /* WITH_PNG */
444
445#ifdef WITH_SDL2
446 SDL_version sdl2_v;
447 SDL_GetVersion(&sdl2_v);
448 survey["sdl2"] = fmt::format("{}.{}.{}", sdl2_v.major, sdl2_v.minor, sdl2_v.patch);
449#endif
450
451#ifdef WITH_ZLIB
452 survey["zlib"] = zlibVersion();
453#endif
454
455#ifdef WITH_CURL
456 auto *curl_v = curl_version_info(CURLVERSION_NOW);
457 survey["curl"] = curl_v->version;
458 survey["curl_ssl"] = curl_v->ssl_version == nullptr ? "none" : curl_v->ssl_version;
459#endif
460}
461
467void SurveyPlugins(nlohmann::json &survey)
468{
470
471 for (auto &plugin : _plugins) {
472 auto &platform = survey[plugin->social_platform];
473 platform.push_back({
474 {"name", plugin->name},
475 {"version", plugin->version},
476 {"basepath", plugin->basepath},
477 {"state", plugin->state},
478 });
479 }
480}
481
490std::string SurveyMemoryToText(uint64_t memory)
491{
492 memory = memory / 1024; // KiB
493 memory = CeilDiv(memory, 1024); // MiB
494
495 /* Anything above 512 MiB we represent in GiB. */
496 if (memory > 512) {
497 return fmt::format("{} GiB", CeilDiv(memory, 1024));
498 }
499
500 /* Anything above 64 MiB we represent in a multiplier of 128 MiB. */
501 if (memory > 64) {
502 return fmt::format("{} MiB", Ceil(memory, 128));
503 }
504
505 /* Anything else in a multiplier of 4 MiB. */
506 return fmt::format("{} MiB", Ceil(memory, 4));
507}
AIInfo keeps track of all information of an AI, like Author, Description, ...
Generic functions for replacing base data (graphics, sounds).
Generic functions for replacing base graphics data.
Generic functions for replacing base music data.
Generic functions for replacing base sounds data.
constexpr enable_if_t< is_integral_v< T >, T > byteswap(T x) noexcept
Custom implementation of std::byteswap; remove once we build with C++23.
static const GraphicsSet * GetUsedSet()
static Blitter * GetCurrentBlitter()
Get the current active blitter (always set by calling SelectBlitter).
Definition factory.hpp:139
virtual std::string_view GetName()=0
Get the name of the blitter, the same as the Factory-instance returns.
virtual std::string_view GetName() const =0
Get the name of this driver.
virtual std::string GetFontName()=0
Get the name of this font.
static FontCache * Get(FontSize fs)
Get the font cache of a given font size.
Definition fontcache.h:131
static class GameInfo * GetInfo()
Get the current GameInfo.
Definition game.hpp:73
static MusicDriver * GetInstance()
Get the currently active instance of the music driver.
@ PLATFORM_NOT_RUNNING
The plugin failed to initialize because the Social Platform is not running.
@ UNSUPPORTED_API
The plugin does not support the current API version.
@ RUNNING
The plugin is successfully loaded and running.
@ FAILED
The plugin failed to initialize.
@ DUPLICATE
Another plugin of the same Social Platform is already loaded.
@ INVALID_SIGNATURE
The signature of the plugin is invalid.
@ UNLOADED
The plugin is unloaded upon request.
static std::vector< SocialIntegrationPlugin * > GetPlugins()
Get the list of loaded social integration plugins.
static SoundDriver * GetInstance()
Get the currently active instance of the sound driver.
static YearMonthDay ConvertDateToYMD(Date date)
Converts a Date to a Year, Month & Day.
static Date date
Current date in days (day counter).
static DateFract date_fract
Fractional part of the day.
static Date date
Current date in days (day counter).
static DateFract date_fract
Fractional part of the day.
static YearMonthDay ConvertDateToYMD(Date date)
Converts a Date to a Year, Month & Day.
static TickCounter counter
Monotonic counter, in ticks, since start of game.
virtual std::string_view GetInfoString() const
Get some information about the selected driver/backend to be shown to the user.
static VideoDriver * GetInstance()
Get the currently active instance of the video driver.
Functions to handle different currencies.
CurrencySpec & GetCustomCurrency()
Get the custom currency.
Definition currency.h:110
Factory to 'query' all available blitters.
Functions to read fonts from files and cache them.
Base functions for all Games.
GameInfo keeps track of all information of an Game, like Author, Description, ...
GameSessionStats _game_session_stats
Statistics about the current session.
Definition gfx.cpp:52
@ FS_MONO
Index of the monospaced font in the font tables.
Definition gfx_type.h:252
@ FS_SMALL
Index of the small font in the font tables.
Definition gfx_type.h:250
@ FS_NORMAL
Index of the normal font in the font tables.
Definition gfx_type.h:249
@ FS_LARGE
Index of the large font in the font tables.
Definition gfx_type.h:251
Information about languages and their files.
const LanguageMetadata * _current_language
The currently loaded language.
Definition strings.cpp:54
constexpr uint CeilDiv(uint a, uint b)
Computes ceil(a / b) for non-negative a and b.
constexpr uint Ceil(uint a, uint b)
Computes ceil(a / b) * b for non-negative a and b.
Base for all music playback.
bool _networking
are we in networking mode?
Definition network.cpp:67
bool _network_server
network-server is active
Definition network.cpp:68
Basic functions/variables used all over the place.
NLOHMANN_JSON_SERIALIZE_ENUM(NetworkSurveyHandler::Reason, { {NetworkSurveyHandler::Reason::Preview, "preview"}, {NetworkSurveyHandler::Reason::Leave, "leave"}, {NetworkSurveyHandler::Reason::Exit, "exit"}, {NetworkSurveyHandler::Reason::Crash, "crash"}, }) NetworkSurveyHandler _survey
Mapping to a string representation of the Reason enumeration.
GRFConfigList _grfconfig
First item in list of current GRF set up.
GRFStatus
Status of GRF.
@ GCS_INITIALISED
GRF file has been initialised.
@ GCS_DISABLED
GRF file is disabled.
@ GCS_NOT_FOUND
GRF file was not found in the local cache.
@ GCS_UNKNOWN
The status of this grf file is unknown.
@ GCS_ACTIVATED
GRF file has been activated.
@ Static
GRF file is used statically (can be used in any MP game).
@ GRFP_GRF_UNSET
The NewGRF provided no information.
@ GRFP_BLT_UNSET
The NewGRF provided no information or doesn't care about a 32 bpp blitter.
@ GRFP_GRF_WINDOWS
The NewGRF says the Windows palette can be used.
@ GRFP_GRF_DOS
The NewGRF says the DOS palette can be used.
@ GRFP_GRF_ANY
The NewGRF says any palette can be used.
@ GRFP_BLT_MASK
Bitmask to only get the blitter information.
@ GRFP_BLT_32BPP
The NewGRF prefers a 32 bpp blitter.
@ GRFP_GRF_MASK
Bitmask to get only the NewGRF supplied information.
Declaration of OTTD revision dependent variables.
A number of safeguards to prevent using unsafe methods.
bool SlIsObjectCurrentlyValid(SaveLoadVersion version_from, SaveLoadVersion version_to)
Checks if some version from/to combination falls within the range of the active savegame version.
Definition saveload.h:1329
GameSettings _settings_game
Game settings of a running game or the scenario editor.
Definition settings.cpp:61
ClientSettings _settings_client
The current settings for this game.
Definition settings.cpp:60
static constexpr const SettingDesc * GetSettingDesc(const SettingVariant &desc)
Helper to convert the type of the iterated settings description to a pointer to it.
Definition of the configuration tables of the settings.
Types related to global configuration settings.
static std::vector< std::unique_ptr< InternalSocialIntegrationPlugin > > _plugins
List of loaded plugins.
Interface definitions for game to report/respond to social integration.
Base for all sound drivers.
Definition of base types and functions in a cross-platform compatible way.
std::string FormatArrayAsHex(std::span< const uint8_t > data)
Format a byte array into a continuous hex string.
Definition string.cpp:77
Information about GRF, used in the game and (part of it) in savegames.
std::vector< uint32_t > param
GRF parameters.
static Pool::IterateWrapper< Company > Iterate(size_t from=0)
SaveLoadVersion version_to
Save/load the variable before this savegame version.
Definition saveload.h:762
SaveLoadVersion version_from
Save/load the variable starting from this savegame version.
Definition saveload.h:761
Properties of config file settings.
constexpr const std::string & GetName() const
Get the name of this setting.
virtual std::string FormatValue(const void *object) const =0
Format the value of the setting associated with this object.
virtual bool IsDefaultValue(void *object) const =0
Check whether the value is the same as the default value.
SaveLoad save
Internal structure (going to savegame, parts to config).
void SurveySettings(nlohmann::json &survey, bool skip_if_default)
Convert settings to JSON.
Definition survey.cpp:166
void SurveyPlugins(nlohmann::json &survey)
Convert plugin information to JSON.
Definition survey.cpp:467
void SurveyTimers(nlohmann::json &survey)
Convert timer information to JSON.
Definition survey.cpp:345
static void SurveySettingsTable(nlohmann::json &survey, const SettingTable &table, void *object, bool skip_if_default)
Convert a settings table to JSON.
Definition survey.cpp:147
void SurveyGameSession(nlohmann::json &survey)
Convert game session information to JSON.
Definition survey.cpp:244
std::string SurveyMemoryToText(uint64_t memory)
Change the bytes of memory into a textual version rounded up to the biggest unit.
Definition survey.cpp:490
void SurveyGameScript(nlohmann::json &survey)
Convert game-script information to JSON.
Definition survey.cpp:388
void SurveyConfiguration(nlohmann::json &survey)
Convert generic game information to JSON.
Definition survey.cpp:258
void SurveyOpenTTD(nlohmann::json &survey)
Convert generic OpenTTD information to JSON.
Definition survey.cpp:212
void SurveyFont(nlohmann::json &survey)
Convert font information to JSON.
Definition survey.cpp:301
void SurveyCompanies(nlohmann::json &survey)
Convert company information to JSON.
Definition survey.cpp:314
static auto & GenericSettingTables()
List of all the generic setting tables.
Definition survey.cpp:120
void SurveyCompiler(nlohmann::json &survey)
Convert compiler information to JSON.
Definition survey.cpp:184
void SurveyLibraries(nlohmann::json &survey)
Convert compiled libraries information to JSON.
Definition survey.cpp:400
static const std::string _vehicle_type_to_string[]
Lookup table to convert a VehicleType to a string.
Definition survey.cpp:102
void SurveyGrfs(nlohmann::json &survey)
Convert GRF information to JSON.
Definition survey.cpp:361
Functions to survey the current game / system, for crashlog and network-survey.
Definition of the game-calendar-timer.
Definition of the game-economy-timer.
Definition of the tick-based game-timer.
VehicleType
Available vehicle types.
@ VEH_COMPANY_END
Last company-ownable type.
Base of all video drivers.
std::string FS2OTTD(std::wstring_view name)
Convert to OpenTTD's encoding from a wide string.
Definition win32.cpp:352