2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2010-07-08 15:44:39 +00:00
|
|
|
|
2017-09-09 19:52:35 +00:00
|
|
|
#include "Common/Version.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2016-06-26 03:30:32 +00:00
|
|
|
#include "Common/scmrev.h"
|
2010-07-08 15:44:39 +00:00
|
|
|
|
2017-09-09 19:52:35 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
2024-04-24 11:09:43 +00:00
|
|
|
#define EMULATOR_NAME "Dolphin"
|
|
|
|
|
2010-07-08 15:44:39 +00:00
|
|
|
#ifdef _DEBUG
|
2011-08-21 21:30:19 +00:00
|
|
|
#define BUILD_TYPE_STR "Debug "
|
2010-07-08 15:44:39 +00:00
|
|
|
#elif defined DEBUGFAST
|
2011-08-21 21:30:19 +00:00
|
|
|
#define BUILD_TYPE_STR "DebugFast "
|
2010-07-08 15:44:39 +00:00
|
|
|
#else
|
2011-08-21 21:30:19 +00:00
|
|
|
#define BUILD_TYPE_STR ""
|
|
|
|
#endif
|
|
|
|
|
2022-01-13 23:04:22 +00:00
|
|
|
const std::string& GetScmRevStr()
|
|
|
|
{
|
2024-04-24 11:09:43 +00:00
|
|
|
static const std::string scm_rev_str = EMULATOR_NAME " "
|
2024-03-23 05:18:51 +00:00
|
|
|
// Note this macro can be empty if the master branch does not exist.
|
|
|
|
#if 1 - SCM_COMMITS_AHEAD_MASTER - 1 != 0
|
2024-04-24 11:09:43 +00:00
|
|
|
"[" SCM_BRANCH_STR "] "
|
2011-08-21 21:30:19 +00:00
|
|
|
#endif
|
2011-10-02 02:03:51 +00:00
|
|
|
|
|
|
|
#ifdef __INTEL_COMPILER
|
2022-01-13 23:04:22 +00:00
|
|
|
BUILD_TYPE_STR SCM_DESC_STR "-ICC";
|
2011-10-02 02:03:51 +00:00
|
|
|
#else
|
2022-01-13 23:04:22 +00:00
|
|
|
BUILD_TYPE_STR SCM_DESC_STR;
|
2011-10-02 02:03:51 +00:00
|
|
|
#endif
|
2022-01-13 23:04:22 +00:00
|
|
|
return scm_rev_str;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& GetScmRevGitStr()
|
|
|
|
{
|
|
|
|
static const std::string scm_rev_git_str = SCM_REV_STR;
|
|
|
|
return scm_rev_git_str;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& GetScmDescStr()
|
|
|
|
{
|
|
|
|
static const std::string scm_desc_str = SCM_DESC_STR;
|
|
|
|
return scm_desc_str;
|
|
|
|
}
|
|
|
|
|
|
|
|
const std::string& GetScmBranchStr()
|
|
|
|
{
|
|
|
|
static const std::string scm_branch_str = SCM_BRANCH_STR;
|
|
|
|
return scm_branch_str;
|
|
|
|
}
|
|
|
|
|
2024-04-24 11:09:43 +00:00
|
|
|
const std::string& GetUserAgentStr()
|
|
|
|
{
|
|
|
|
static const std::string user_agent_str = EMULATOR_NAME "/" SCM_DESC_STR;
|
|
|
|
return user_agent_str;
|
|
|
|
}
|
|
|
|
|
2022-01-13 23:04:22 +00:00
|
|
|
const std::string& GetScmDistributorStr()
|
|
|
|
{
|
|
|
|
static const std::string scm_distributor_str = SCM_DISTRIBUTOR_STR;
|
|
|
|
return scm_distributor_str;
|
|
|
|
}
|
2010-07-08 15:44:39 +00:00
|
|
|
|
2022-01-13 23:04:22 +00:00
|
|
|
const std::string& GetScmUpdateTrackStr()
|
|
|
|
{
|
|
|
|
static const std::string scm_update_track_str = SCM_UPDATE_TRACK_STR;
|
|
|
|
return scm_update_track_str;
|
|
|
|
}
|
2017-09-09 19:52:35 +00:00
|
|
|
|
2022-01-13 23:04:22 +00:00
|
|
|
const std::string& GetNetplayDolphinVer()
|
|
|
|
{
|
2010-07-08 15:44:39 +00:00
|
|
|
#ifdef _WIN32
|
2022-01-13 23:04:22 +00:00
|
|
|
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Win";
|
2010-07-08 15:44:39 +00:00
|
|
|
#elif __APPLE__
|
2022-01-13 23:04:22 +00:00
|
|
|
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Mac";
|
2010-07-08 15:44:39 +00:00
|
|
|
#else
|
2022-01-13 23:04:22 +00:00
|
|
|
static const std::string netplay_dolphin_ver = SCM_DESC_STR " Lin";
|
2010-07-08 15:44:39 +00:00
|
|
|
#endif
|
2022-01-13 23:04:22 +00:00
|
|
|
return netplay_dolphin_ver;
|
|
|
|
}
|
|
|
|
|
2024-03-23 05:18:51 +00:00
|
|
|
int GetScmCommitsAheadMaster()
|
|
|
|
{
|
|
|
|
// Note this macro can be empty if the master branch does not exist.
|
|
|
|
return SCM_COMMITS_AHEAD_MASTER + 0;
|
|
|
|
}
|
|
|
|
|
2017-09-09 19:52:35 +00:00
|
|
|
} // namespace Common
|