mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 18:53:28 +01:00
Added rpcs3 version object
Removed _PRGVER_ macros
This commit is contained in:
parent
079411eee8
commit
b52e885cde
65
Utilities/version.cpp
Normal file
65
Utilities/version.cpp
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
#include "stdafx.h"
|
||||||
|
#include "version.h"
|
||||||
|
|
||||||
|
namespace utils
|
||||||
|
{
|
||||||
|
std::string to_string(version_type type)
|
||||||
|
{
|
||||||
|
switch (type)
|
||||||
|
{
|
||||||
|
case version_type::pre_alpha: return "Pre-Alpha";
|
||||||
|
case version_type::alpha: return "Alpha";
|
||||||
|
case version_type::beta: return "Beta";
|
||||||
|
case version_type::release_candidate: return "RC";
|
||||||
|
case version_type::release: return "Release";
|
||||||
|
}
|
||||||
|
|
||||||
|
throw;
|
||||||
|
}
|
||||||
|
|
||||||
|
version::version(std::uint8_t hi, std::uint8_t mid, std::uint8_t lo)
|
||||||
|
: m_hi(hi)
|
||||||
|
, m_mid(mid)
|
||||||
|
, m_lo(lo)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
version& version::type(version_type type, std::uint8_t type_index)
|
||||||
|
{
|
||||||
|
m_type = type;
|
||||||
|
m_type_index = type_index;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::uint16_t version::to_hex() const
|
||||||
|
{
|
||||||
|
return (m_hi << 24) | (m_mid << 16) | (m_lo << 8) | ((std::uint8_t(m_type) & 0xf) << 4) | (m_type_index & 0xf);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string version::to_string() const
|
||||||
|
{
|
||||||
|
std::string version = std::to_string(hi()) + "." + std::to_string(mid());
|
||||||
|
|
||||||
|
if (lo())
|
||||||
|
{
|
||||||
|
version += "." + std::to_string(lo());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (type() != version_type::release)
|
||||||
|
{
|
||||||
|
if (!postfix().empty())
|
||||||
|
{
|
||||||
|
version += "-" + postfix();
|
||||||
|
}
|
||||||
|
|
||||||
|
version += " " + utils::to_string(type());
|
||||||
|
|
||||||
|
if (type_index() > 1)
|
||||||
|
{
|
||||||
|
version += " " + std::to_string(type_index());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
}
|
71
Utilities/version.h
Normal file
71
Utilities/version.h
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
#pragma once
|
||||||
|
#include <string>
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
|
namespace utils
|
||||||
|
{
|
||||||
|
enum class version_type : std::uint8_t
|
||||||
|
{
|
||||||
|
pre_alpha,
|
||||||
|
alpha,
|
||||||
|
beta,
|
||||||
|
release_candidate,
|
||||||
|
release
|
||||||
|
};
|
||||||
|
|
||||||
|
std::string to_string(version_type type);
|
||||||
|
|
||||||
|
class version
|
||||||
|
{
|
||||||
|
std::uint8_t m_hi;
|
||||||
|
std::uint8_t m_mid;
|
||||||
|
std::uint8_t m_lo;
|
||||||
|
version_type m_type = version_type::release;
|
||||||
|
std::uint8_t m_type_index = 1;
|
||||||
|
std::string m_postfix;
|
||||||
|
|
||||||
|
public:
|
||||||
|
version(std::uint8_t hi, std::uint8_t mid, std::uint8_t lo = 0);
|
||||||
|
|
||||||
|
version& type(version_type type, std::uint8_t type_index = 1);
|
||||||
|
|
||||||
|
std::uint8_t hi() const
|
||||||
|
{
|
||||||
|
return m_hi;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::uint8_t mid() const
|
||||||
|
{
|
||||||
|
return m_mid;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::uint8_t lo() const
|
||||||
|
{
|
||||||
|
return m_lo;
|
||||||
|
}
|
||||||
|
|
||||||
|
version_type type() const
|
||||||
|
{
|
||||||
|
return m_type;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string postfix() const
|
||||||
|
{
|
||||||
|
return m_postfix;
|
||||||
|
}
|
||||||
|
|
||||||
|
version& postfix(const std::string& value)
|
||||||
|
{
|
||||||
|
m_postfix = value;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::uint8_t type_index() const
|
||||||
|
{
|
||||||
|
return m_type_index;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::uint16_t to_hex() const;
|
||||||
|
std::string to_string() const;
|
||||||
|
};
|
||||||
|
}
|
@ -1,4 +1,5 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
#include "rpcs3_version.h"
|
||||||
|
|
||||||
class AboutDialog : public wxDialog
|
class AboutDialog : public wxDialog
|
||||||
{
|
{
|
||||||
@ -30,7 +31,7 @@ public:
|
|||||||
t_descr->SetForegroundColour(wxColor(255, 255, 255));
|
t_descr->SetForegroundColour(wxColor(255, 255, 255));
|
||||||
t_descr->SetPosition(wxPoint(12, 50));
|
t_descr->SetPosition(wxPoint(12, 50));
|
||||||
|
|
||||||
wxStaticText* t_version = new wxStaticText(this, wxID_ANY, wxString::Format(_PRGNAME_ " Version: " _PRGVER_ "-" RPCS3_GIT_VERSION));
|
wxStaticText* t_version = new wxStaticText(this, wxID_ANY, std::string(_PRGNAME_ " Version: ") + rpcs3::version.to_string());
|
||||||
t_version->SetBackgroundColour(wxColor(100, 100, 100));
|
t_version->SetBackgroundColour(wxColor(100, 100, 100));
|
||||||
t_version->SetForegroundColour(wxColor(200, 200, 200));
|
t_version->SetForegroundColour(wxColor(200, 200, 200));
|
||||||
t_version->SetPosition(wxPoint(12, 66));
|
t_version->SetPosition(wxPoint(12, 66));
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
#include "stdafx_gui.h"
|
#include "stdafx_gui.h"
|
||||||
#include "rpcs3.h"
|
#include "rpcs3.h"
|
||||||
#include "MainFrame.h"
|
#include "MainFrame.h"
|
||||||
#include "git-version.h"
|
#include "rpcs3_version.h"
|
||||||
|
|
||||||
#include "Emu/Memory/Memory.h"
|
#include "Emu/Memory/Memory.h"
|
||||||
#include "Emu/System.h"
|
#include "Emu/System.h"
|
||||||
@ -69,7 +69,7 @@ MainFrame::MainFrame()
|
|||||||
, m_sys_menu_opened(false)
|
, m_sys_menu_opened(false)
|
||||||
{
|
{
|
||||||
|
|
||||||
SetLabel(_PRGNAME_ " v" _PRGVER_ "-" RPCS3_GIT_VERSION);
|
SetLabel(std::string(_PRGNAME_ " v") + rpcs3::version.to_string());
|
||||||
|
|
||||||
wxMenuBar* menubar = new wxMenuBar();
|
wxMenuBar* menubar = new wxMenuBar();
|
||||||
|
|
||||||
@ -158,7 +158,7 @@ MainFrame::MainFrame()
|
|||||||
wxGetApp().Bind(wxEVT_KEY_DOWN, &MainFrame::OnKeyDown, this);
|
wxGetApp().Bind(wxEVT_KEY_DOWN, &MainFrame::OnKeyDown, this);
|
||||||
wxGetApp().Bind(wxEVT_DBG_COMMAND, &MainFrame::UpdateUI, this);
|
wxGetApp().Bind(wxEVT_DBG_COMMAND, &MainFrame::UpdateUI, this);
|
||||||
|
|
||||||
LOG_NOTICE(GENERAL, "%s", _PRGNAME_ " v" _PRGVER_ "-" RPCS3_GIT_VERSION);
|
LOG_NOTICE(GENERAL, "%s", (std::string(_PRGNAME_ " v") + rpcs3::version.to_string()).c_str());
|
||||||
LOG_NOTICE(GENERAL, "");
|
LOG_NOTICE(GENERAL, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,6 +84,7 @@
|
|||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\Utilities\Thread.cpp" />
|
<ClCompile Include="..\Utilities\Thread.cpp" />
|
||||||
|
<ClCompile Include="..\Utilities\version.cpp" />
|
||||||
<ClCompile Include="..\Utilities\VirtualMemory.cpp" />
|
<ClCompile Include="..\Utilities\VirtualMemory.cpp" />
|
||||||
<ClCompile Include="Emu\PSP2\ARMv7Module.cpp" />
|
<ClCompile Include="Emu\PSP2\ARMv7Module.cpp" />
|
||||||
<ClCompile Include="Emu\Cell\lv2\lv2.cpp" />
|
<ClCompile Include="Emu\Cell\lv2\lv2.cpp" />
|
||||||
@ -348,6 +349,7 @@
|
|||||||
<ClCompile Include="Loader\PSF.cpp" />
|
<ClCompile Include="Loader\PSF.cpp" />
|
||||||
<ClCompile Include="Loader\TROPUSR.cpp" />
|
<ClCompile Include="Loader\TROPUSR.cpp" />
|
||||||
<ClCompile Include="Loader\TRP.cpp" />
|
<ClCompile Include="Loader\TRP.cpp" />
|
||||||
|
<ClCompile Include="rpcs3_version.cpp" />
|
||||||
<ClCompile Include="stb_image.cpp" />
|
<ClCompile Include="stb_image.cpp" />
|
||||||
<ClCompile Include="stdafx.cpp">
|
<ClCompile Include="stdafx.cpp">
|
||||||
<PrecompiledHeader>Create</PrecompiledHeader>
|
<PrecompiledHeader>Create</PrecompiledHeader>
|
||||||
@ -379,6 +381,7 @@
|
|||||||
<ClInclude Include="..\Utilities\Thread.h" />
|
<ClInclude Include="..\Utilities\Thread.h" />
|
||||||
<ClInclude Include="..\Utilities\Timer.h" />
|
<ClInclude Include="..\Utilities\Timer.h" />
|
||||||
<ClInclude Include="..\Utilities\types.h" />
|
<ClInclude Include="..\Utilities\types.h" />
|
||||||
|
<ClInclude Include="..\Utilities\version.h" />
|
||||||
<ClInclude Include="..\Utilities\VirtualMemory.h" />
|
<ClInclude Include="..\Utilities\VirtualMemory.h" />
|
||||||
<ClInclude Include="Crypto\aes.h" />
|
<ClInclude Include="Crypto\aes.h" />
|
||||||
<ClInclude Include="Crypto\ec.h" />
|
<ClInclude Include="Crypto\ec.h" />
|
||||||
@ -609,6 +612,7 @@
|
|||||||
<ClInclude Include="Loader\TROPUSR.h" />
|
<ClInclude Include="Loader\TROPUSR.h" />
|
||||||
<ClInclude Include="Loader\TRP.h" />
|
<ClInclude Include="Loader\TRP.h" />
|
||||||
<ClInclude Include="restore_new.h" />
|
<ClInclude Include="restore_new.h" />
|
||||||
|
<ClInclude Include="rpcs3_version.h" />
|
||||||
<ClInclude Include="stdafx.h" />
|
<ClInclude Include="stdafx.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
10
rpcs3/rpcs3_version.cpp
Normal file
10
rpcs3/rpcs3_version.cpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#include "stdafx.h"
|
||||||
|
#include "rpcs3_version.h"
|
||||||
|
#include "git-version.h"
|
||||||
|
|
||||||
|
namespace rpcs3
|
||||||
|
{
|
||||||
|
const utils::version version = utils::version{ 0, 0, 1 }
|
||||||
|
.type(utils::version_type::pre_alpha)
|
||||||
|
.postfix(RPCS3_GIT_VERSION);
|
||||||
|
}
|
9
rpcs3/rpcs3_version.h
Normal file
9
rpcs3/rpcs3_version.h
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#pragma once
|
||||||
|
#include <string>
|
||||||
|
#include <cstdint>
|
||||||
|
#include <Utilities/version.h>
|
||||||
|
|
||||||
|
namespace rpcs3
|
||||||
|
{
|
||||||
|
extern const utils::version version;
|
||||||
|
}
|
@ -42,7 +42,6 @@ using namespace std::literals;
|
|||||||
#define EXCEPTION(format_str, ...) fmt::exception("%s(): " format_str HERE, __FUNCTION__, ##__VA_ARGS__)
|
#define EXCEPTION(format_str, ...) fmt::exception("%s(): " format_str HERE, __FUNCTION__, ##__VA_ARGS__)
|
||||||
|
|
||||||
#define _PRGNAME_ "RPCS3"
|
#define _PRGNAME_ "RPCS3"
|
||||||
#define _PRGVER_ "0.0.0.9"
|
|
||||||
|
|
||||||
#include "Utilities/types.h"
|
#include "Utilities/types.h"
|
||||||
#include "Utilities/Macro.h"
|
#include "Utilities/Macro.h"
|
||||||
|
Loading…
Reference in New Issue
Block a user