OpenTTD Source  14.0-beta1
survey.h
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 <http://www.gnu.org/licenses/>.
6  */
7 
10 #ifndef SURVEY_H
11 #define SURVEY_H
12 
13 #include "3rdparty/nlohmann/json.hpp"
14 
15 std::string SurveyMemoryToText(uint64_t memory);
16 
17 void SurveyCompanies(nlohmann::json &survey);
18 void SurveyCompiler(nlohmann::json &survey);
19 void SurveyConfiguration(nlohmann::json &survey);
20 void SurveyFont(nlohmann::json &survey);
21 void SurveyGameScript(nlohmann::json &survey);
22 void SurveyGrfs(nlohmann::json &survey);
23 void SurveyLibraries(nlohmann::json &survey);
24 void SurveyPlugins(nlohmann::json &survey);
25 void SurveyOpenTTD(nlohmann::json &survey);
26 void SurveySettings(nlohmann::json &survey, bool skip_if_default);
27 void SurveyTimers(nlohmann::json &survey);
28 
29 /* Defined in os/<os>/survey_<os>.cpp. */
30 void SurveyOS(nlohmann::json &json);
31 
32 #endif /* SURVEY_H */
SurveyGameScript
void SurveyGameScript(nlohmann::json &survey)
Convert game-script information to JSON.
Definition: survey.cpp:374
SurveyGrfs
void SurveyGrfs(nlohmann::json &survey)
Convert GRF information to JSON.
Definition: survey.cpp:347
SurveyPlugins
void SurveyPlugins(nlohmann::json &survey)
Convert plugin information to JSON.
Definition: survey.cpp:456
SurveyCompiler
void SurveyCompiler(nlohmann::json &survey)
Convert compiler information to JSON.
Definition: survey.cpp:178
SurveyCompanies
void SurveyCompanies(nlohmann::json &survey)
Convert company information to JSON.
Definition: survey.cpp:299
SurveyOpenTTD
void SurveyOpenTTD(nlohmann::json &survey)
Convert generic OpenTTD information to JSON.
Definition: survey.cpp:206
SurveyFont
void SurveyFont(nlohmann::json &survey)
Convert font information to JSON.
Definition: survey.cpp:286
SurveyMemoryToText
std::string SurveyMemoryToText(uint64_t memory)
Change the bytes of memory into a textual version rounded up to the biggest unit.
Definition: survey.cpp:479
SurveyConfiguration
void SurveyConfiguration(nlohmann::json &survey)
Convert generic game information to JSON.
Definition: survey.cpp:243
SurveySettings
void SurveySettings(nlohmann::json &survey, bool skip_if_default)
Convert settings to JSON.
Definition: survey.cpp:160
SurveyLibraries
void SurveyLibraries(nlohmann::json &survey)
Convert compiled libraries information to JSON.
Definition: survey.cpp:386
SurveyTimers
void SurveyTimers(nlohmann::json &survey)
Convert timer information to JSON.
Definition: survey.cpp:330