rpcs3/rpcs3/rpcs3_version.cpp

51 lines
1.4 KiB
C++
Raw Normal View History

2020-02-20 02:55:25 +00:00
#include "stdafx.h"
#include "rpcs3_version.h"
#include "git-version.h"
2019-09-11 07:55:43 +00:00
#include "Utilities/StrUtil.h"
namespace rpcs3
{
std::string_view get_branch()
{
return RPCS3_GIT_BRANCH;
}
2019-09-11 07:55:43 +00:00
std::pair<std::string, std::string> get_commit_and_hash()
{
2019-10-22 03:12:44 +00:00
const auto commit_and_hash = fmt::split(RPCS3_GIT_VERSION, {"-"});
2019-09-11 07:55:43 +00:00
if (commit_and_hash.size() != 2)
return std::make_pair("0", "00000000");
return std::make_pair(commit_and_hash[0], commit_and_hash[1]);
}
// TODO: Make this accessible from cmake and keep in sync with MACOSX_BUNDLE_BUNDLE_VERSION.
// Currently accessible by Windows and Linux build scripts, see implementations when doing MACOSX
const utils::version& get_version()
{
2020-02-29 20:21:14 +00:00
static constexpr utils::version version{ 0, 0, 9, utils::version_type::alpha, 1, RPCS3_GIT_VERSION };
return version;
}
2020-02-20 02:55:25 +00:00
std::string get_version_and_branch()
{
// Get version by substringing VersionNumber-buildnumber-commithash to get just the part before the dash
std::string version = rpcs3::get_version().to_string();
const auto last_minus = version.find_last_of('-');
// Add branch and commit hash to version on frame unless it's master.
if (rpcs3::get_branch() != "master"sv && rpcs3::get_branch() != "HEAD"sv)
{
version = version.substr(0, ~last_minus ? last_minus + 9 : last_minus);
version += '-';
version += rpcs3::get_branch();
}
else
{
version = version.substr(0, last_minus);
}
return version;
}
}