From 4225f35034630f5f9304880ca851de2e984cb9ef Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Fri, 17 May 2024 20:41:03 +0200 Subject: [PATCH] [util] Add version helper class Useful to decode, store and compare human-readable driver versions. --- src/util/util_version.h | 48 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/util/util_version.h diff --git a/src/util/util_version.h b/src/util/util_version.h new file mode 100644 index 00000000..995d8b94 --- /dev/null +++ b/src/util/util_version.h @@ -0,0 +1,48 @@ +#pragma once + +#include + +#include "../vulkan/vulkan_loader.h" + +#include "util_string.h" + +namespace dxvk { + + /** + * \brief Decoded driver version + */ + class Version { + + public: + + Version() = default; + + Version(uint32_t major, uint32_t minor, uint32_t patch) + : m_raw((uint64_t(major) << 48) | (uint64_t(minor) << 24) | uint64_t(patch)) { } + + uint32_t major() const { return uint32_t(m_raw >> 48); } + uint32_t minor() const { return uint32_t(m_raw >> 24) & 0xffffffu; } + uint32_t patch() const { return uint32_t(m_raw) & 0xffffffu; } + + bool operator == (const Version& other) const { return m_raw == other.m_raw; } + bool operator != (const Version& other) const { return m_raw != other.m_raw; } + bool operator >= (const Version& other) const { return m_raw >= other.m_raw; } + bool operator <= (const Version& other) const { return m_raw <= other.m_raw; } + bool operator > (const Version& other) const { return m_raw > other.m_raw; } + bool operator < (const Version& other) const { return m_raw < other.m_raw; } + + std::string toString() const { + return str::format(major(), ".", minor(), ".", patch()); + } + + explicit operator bool () const { + return m_raw != 0; + } + + private: + + uint64_t m_raw = 0; + + }; + +}