mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
Some checks failed
Generate Translation Template / Generate Translation Template (push) Has been cancelled
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (/rpcs3/.ci/build-linux-aarch64.sh, gcc, rpcs3/rpcs3-ci-jammy-aarch64:1.6, ubuntu-24.04-arm) (push) Has been cancelled
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (/rpcs3/.ci/build-linux.sh, gcc, rpcs3/rpcs3-ci-jammy:1.6, ubuntu-24.04) (push) Has been cancelled
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (a1d35836e8d45bfc6f63c26f0a3e5d46ef622fe1, rpcs3/rpcs3-binaries-linux-arm64, /rpcs3/.ci/build-linux-aarch64.sh, clang, rpcs3/rpcs3-ci-jammy-aarch64:1.6, ubuntu-24.04-arm) (push) Has been cancelled
Build RPCS3 / RPCS3 Linux ${{ matrix.os }} ${{ matrix.compiler }} (d812f1254a1157c80fd402f94446310560f54e5f, rpcs3/rpcs3-binaries-linux, /rpcs3/.ci/build-linux.sh, clang, rpcs3/rpcs3-ci-jammy:1.6, ubuntu-24.04) (push) Has been cancelled
Build RPCS3 / RPCS3 Mac ${{ matrix.name }} (51ae32f468089a8169aaf1567de355ff4a3e0842, rpcs3/rpcs3-binaries-mac, .ci/build-mac.sh, Intel) (push) Has been cancelled
Build RPCS3 / RPCS3 Mac ${{ matrix.name }} (8e21bdbc40711a3fccd18fbf17b742348b0f4281, rpcs3/rpcs3-binaries-mac-arm64, .ci/build-mac-arm64.sh, Apple Silicon) (push) Has been cancelled
Build RPCS3 / RPCS3 Windows (push) Has been cancelled
Build RPCS3 / RPCS3 Windows Clang (win64, clang, clang64) (push) Has been cancelled
Build RPCS3 / RPCS3 FreeBSD (push) Has been cancelled
74 lines
1.9 KiB
C++
74 lines
1.9 KiB
C++
#include "stdafx.h"
|
|
#include "rpcs3_version.h"
|
|
#include "git-version.h"
|
|
#include "Utilities/StrUtil.h"
|
|
|
|
namespace rpcs3
|
|
{
|
|
std::string_view get_branch()
|
|
{
|
|
return RPCS3_GIT_BRANCH;
|
|
}
|
|
|
|
std::string_view get_full_branch()
|
|
{
|
|
return RPCS3_GIT_FULL_BRANCH;
|
|
}
|
|
|
|
std::pair<std::string, std::string> get_commit_and_hash()
|
|
{
|
|
const auto commit_and_hash = fmt::split(RPCS3_GIT_VERSION, {"-"});
|
|
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()
|
|
{
|
|
static constexpr utils::version version{ 0, 0, 38, utils::version_type::alpha, 1, RPCS3_GIT_VERSION };
|
|
return version;
|
|
}
|
|
|
|
std::string get_version_and_branch()
|
|
{
|
|
// Add branch and commit hash to version on frame unless it's master.
|
|
if (rpcs3::get_branch() != "master"sv && rpcs3::get_branch() != "HEAD"sv)
|
|
{
|
|
return get_verbose_version();
|
|
}
|
|
|
|
// 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('-');
|
|
version = version.substr(0, last_minus);
|
|
|
|
return version;
|
|
}
|
|
|
|
std::string get_verbose_version()
|
|
{
|
|
std::string version = fmt::format("%s | %s", rpcs3::get_version().to_string(), get_branch());
|
|
if (is_local_build())
|
|
{
|
|
fmt::append(version, " | local_build");
|
|
}
|
|
return version;
|
|
}
|
|
|
|
bool is_release_build()
|
|
{
|
|
static constexpr bool is_release_build = std::string_view(RPCS3_GIT_FULL_BRANCH) == "RPCS3/rpcs3/master"sv;
|
|
return is_release_build;
|
|
}
|
|
|
|
bool is_local_build()
|
|
{
|
|
static constexpr bool is_local_build = std::string_view(RPCS3_GIT_FULL_BRANCH) == "local_build"sv;
|
|
return is_local_build;
|
|
}
|
|
}
|