/* * This file is part of OpenTTD. * 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. * 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. * 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 . */ /** @file survey_osx.cpp OSX implementation of OS-specific survey information. */ #include "../../stdafx.h" #include "../../core/format.hpp" #include "../../3rdparty/nlohmann/json.hpp" #include "macos.h" #include #include #include "../../safeguards.h" extern std::string SurveyMemoryToText(uint64_t memory); void SurveyOS(nlohmann::json &json) { int ver_maj, ver_min, ver_bug; GetMacOSVersion(&ver_maj, &ver_min, &ver_bug); const NXArchInfo *arch = NXGetLocalArchInfo(); json["os"] = "MacOS"; json["release"] = fmt::format("{}.{}.{}", ver_maj, ver_min, ver_bug); json["machine"] = arch != nullptr ? arch->description : "unknown"; json["min_ver"] = MAC_OS_X_VERSION_MIN_REQUIRED; json["max_ver"] = MAC_OS_X_VERSION_MAX_ALLOWED; json["memory"] = SurveyMemoryToText(MacOSGetPhysicalMemory()); json["hardware_concurrency"] = std::thread::hardware_concurrency(); }