Make titlebar and about dialog fancy for cmake build.
Windows needs fixing.
This commit is contained in:
parent
95fd6e925c
commit
e8fe15c3f7
|
@ -49,10 +49,18 @@ endfunction(enable_precompiled_headers)
|
||||||
# for revision info
|
# for revision info
|
||||||
include(FindGit OPTIONAL)
|
include(FindGit OPTIONAL)
|
||||||
if(GIT_FOUND AND NOT DOLPHIN_WC_REVISION)
|
if(GIT_FOUND AND NOT DOLPHIN_WC_REVISION)
|
||||||
# defines DOLPHIN_WC_REVISION
|
# defines DOLPHIN_WC_REVISION
|
||||||
EXECUTE_PROCESS(COMMAND ${GIT_EXECUTABLE} rev-parse HEAD
|
EXECUTE_PROCESS(COMMAND ${GIT_EXECUTABLE} rev-parse HEAD
|
||||||
OUTPUT_VARIABLE DOLPHIN_WC_REVISION
|
OUTPUT_VARIABLE DOLPHIN_WC_REVISION
|
||||||
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||||
|
# defines DOLPHIN_WC_DESCRIBE
|
||||||
|
EXECUTE_PROCESS(COMMAND ${GIT_EXECUTABLE} describe --always
|
||||||
|
OUTPUT_VARIABLE DOLPHIN_WC_DESCRIBE
|
||||||
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||||
|
# defines DOLPHIN_WC_BRANCH
|
||||||
|
EXECUTE_PROCESS(COMMAND ${GIT_EXECUTABLE} rev-parse --abbrev-ref HEAD
|
||||||
|
OUTPUT_VARIABLE DOLPHIN_WC_BRANCH
|
||||||
|
OUTPUT_STRIP_TRAILING_WHITESPACE)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Various compile flags
|
# Various compile flags
|
||||||
|
@ -409,8 +417,19 @@ endif(NOT DISABLE_WX)
|
||||||
########################################
|
########################################
|
||||||
# Pre-build events: Define configuration variables and write svnrev header
|
# Pre-build events: Define configuration variables and write svnrev header
|
||||||
#
|
#
|
||||||
file(WRITE ${PROJECT_BINARY_DIR}/Source/Core/Common/Src/svnrev.h
|
if(SCM_BRANCH_STR EQUAL "master")
|
||||||
"#define SVN_REV_STR \"" ${DOLPHIN_WC_REVISION} "-" ${CMAKE_BUILD_TYPE} "\"\n")
|
set(DOLPHIN_WC_IS_MASTER "1")
|
||||||
|
else()
|
||||||
|
set(DOLPHIN_WC_IS_MASTER "0")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
file(WRITE ${PROJECT_BINARY_DIR}/Source/Core/Common/Src/scmrev.h
|
||||||
|
"#define SCM_REV_STR \"" ${DOLPHIN_WC_REVISION} "\"\n"
|
||||||
|
"#define SCM_DESC_STR \"" ${DOLPHIN_WC_DESCRIBE} "\"\n"
|
||||||
|
"#define SCM_BRANCH_STR \"" ${DOLPHIN_WC_BRANCH} "\"\n"
|
||||||
|
"#define SCM_IS_MASTER " ${DOLPHIN_WC_IS_MASTER} "\n"
|
||||||
|
# "#define BUILD_TYPE_STR \"" ${CMAKE_BUILD_TYPE} "\"\n"
|
||||||
|
)
|
||||||
include_directories("${PROJECT_BINARY_DIR}/Source/Core/Common/Src")
|
include_directories("${PROJECT_BINARY_DIR}/Source/Core/Common/Src")
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
// SVN version number
|
// SVN version number
|
||||||
extern const char *svn_rev_str;
|
extern const char *scm_rev_str;
|
||||||
extern const char *netplay_dolphin_ver;
|
extern const char *netplay_dolphin_ver;
|
||||||
|
|
||||||
// Force enable logging in the right modes. For some reason, something had changed
|
// Force enable logging in the right modes. For some reason, something had changed
|
||||||
|
|
|
@ -16,15 +16,21 @@
|
||||||
// http://code.google.com/p/dolphin-emu/
|
// http://code.google.com/p/dolphin-emu/
|
||||||
|
|
||||||
#include "Common.h"
|
#include "Common.h"
|
||||||
#include "svnrev.h"
|
#include "scmrev.h"
|
||||||
|
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
const char *svn_rev_str = "Dolphin Debug r" SVN_REV_STR;
|
#define BUILD_TYPE_STR "Debug "
|
||||||
#elif defined DEBUGFAST
|
#elif defined DEBUGFAST
|
||||||
const char *svn_rev_str = "Dolphin Debugfast r" SVN_REV_STR;
|
#define BUILD_TYPE_STR "DebugFast "
|
||||||
#else
|
#else
|
||||||
const char *svn_rev_str = "Dolphin r" SVN_REV_STR;
|
#define BUILD_TYPE_STR ""
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
const char *scm_rev_str = "Dolphin "
|
||||||
|
#if !SCM_IS_MASTER
|
||||||
|
"[" SCM_BRANCH_STR "] "
|
||||||
|
#endif
|
||||||
|
BUILD_TYPE_STR SCM_DESC_STR;
|
||||||
|
|
||||||
#ifdef _M_X64
|
#ifdef _M_X64
|
||||||
#define NP_ARCH "x64"
|
#define NP_ARCH "x64"
|
||||||
|
@ -33,9 +39,9 @@ const char *svn_rev_str = "Dolphin r" SVN_REV_STR;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
const char *netplay_dolphin_ver = SVN_REV_STR " W" NP_ARCH;
|
const char *netplay_dolphin_ver = SCM_DESC_STR " W" NP_ARCH;
|
||||||
#elif __APPLE__
|
#elif __APPLE__
|
||||||
const char *netplay_dolphin_ver = SVN_REV_STR " M" NP_ARCH;
|
const char *netplay_dolphin_ver = SCM_DESC_STR " M" NP_ARCH;
|
||||||
#else
|
#else
|
||||||
const char *netplay_dolphin_ver = SVN_REV_STR " L" NP_ARCH;
|
const char *netplay_dolphin_ver = SCM_DESC_STR " L" NP_ARCH;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -608,7 +608,7 @@ void VideoThrottle()
|
||||||
// This is our final "frame counter" string
|
// This is our final "frame counter" string
|
||||||
std::string SMessage = StringFromFormat("%s | %s",
|
std::string SMessage = StringFromFormat("%s | %s",
|
||||||
SSettings.c_str(), SFPS.c_str());
|
SSettings.c_str(), SFPS.c_str());
|
||||||
std::string TMessage = StringFromFormat("%s | ", svn_rev_str) +
|
std::string TMessage = StringFromFormat("%s | ", scm_rev_str) +
|
||||||
SMessage;
|
SMessage;
|
||||||
|
|
||||||
// Show message
|
// Show message
|
||||||
|
@ -617,7 +617,7 @@ void VideoThrottle()
|
||||||
if (_CoreParameter.bRenderToMain &&
|
if (_CoreParameter.bRenderToMain &&
|
||||||
SConfig::GetInstance().m_InterfaceStatusbar) {
|
SConfig::GetInstance().m_InterfaceStatusbar) {
|
||||||
Host_UpdateStatusBar(SMessage.c_str());
|
Host_UpdateStatusBar(SMessage.c_str());
|
||||||
Host_UpdateTitle(svn_rev_str);
|
Host_UpdateTitle(scm_rev_str);
|
||||||
} else
|
} else
|
||||||
Host_UpdateTitle(TMessage.c_str());
|
Host_UpdateTitle(TMessage.c_str());
|
||||||
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
#include "Common.h"
|
#include "Common.h"
|
||||||
#include "AboutDolphin.h"
|
#include "AboutDolphin.h"
|
||||||
#include "../resources/dolphin_logo.cpp"
|
#include "../resources/dolphin_logo.cpp"
|
||||||
|
#include "scmrev.h"
|
||||||
|
|
||||||
AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
|
AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
|
||||||
const wxString &title, const wxPoint &position,
|
const wxString &title, const wxPoint &position,
|
||||||
|
@ -29,9 +30,13 @@ AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
|
||||||
wxStaticBitmap* const sbDolphinLogo = new wxStaticBitmap(this, wxID_ANY,
|
wxStaticBitmap* const sbDolphinLogo = new wxStaticBitmap(this, wxID_ANY,
|
||||||
wxBitmap(iDolphinLogo));
|
wxBitmap(iDolphinLogo));
|
||||||
|
|
||||||
std::string Text = std::string(svn_rev_str) + "\n"
|
std::string Text = "Dolphin " SCM_DESC_STR "\n"
|
||||||
"Copyright (c) 2003-2011+ Dolphin Team\n"
|
"Copyright (c) 2003-2011+ Dolphin Team\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
"Branch: " SCM_BRANCH_STR "\n"
|
||||||
|
"Revision: " SCM_REV_STR "\n"
|
||||||
|
"Date: " __DATE__ " @ " __TIME__ "\n"
|
||||||
|
"\n"
|
||||||
"Dolphin is a Gamecube/Wii emulator, which was\n"
|
"Dolphin is a Gamecube/Wii emulator, which was\n"
|
||||||
"originally written by F|RES and ector.\n"
|
"originally written by F|RES and ector.\n"
|
||||||
"Today Dolphin is an open source project with many\n"
|
"Today Dolphin is an open source project with many\n"
|
||||||
|
|
|
@ -1073,7 +1073,7 @@ void CFrame::DoStop()
|
||||||
X11Utils::InhibitScreensaver(X11Utils::XDisplayFromHandle(GetHandle()),
|
X11Utils::InhibitScreensaver(X11Utils::XDisplayFromHandle(GetHandle()),
|
||||||
X11Utils::XWindowFromHandle(GetHandle()), false);
|
X11Utils::XWindowFromHandle(GetHandle()), false);
|
||||||
#endif
|
#endif
|
||||||
m_RenderFrame->SetTitle(wxString::FromAscii(svn_rev_str));
|
m_RenderFrame->SetTitle(wxString::FromAscii(scm_rev_str));
|
||||||
|
|
||||||
// Destroy the renderer frame when not rendering to main
|
// Destroy the renderer frame when not rendering to main
|
||||||
m_RenderParent->Disconnect(wxID_ANY, wxEVT_SIZE,
|
m_RenderParent->Disconnect(wxID_ANY, wxEVT_SIZE,
|
||||||
|
|
|
@ -274,7 +274,7 @@ bool DolphinApp::OnInit()
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
main_frame = new CFrame((wxFrame*)NULL, wxID_ANY,
|
main_frame = new CFrame((wxFrame*)NULL, wxID_ANY,
|
||||||
wxString::FromAscii(svn_rev_str),
|
wxString::FromAscii(scm_rev_str),
|
||||||
wxPoint(x, y), wxSize(w, h),
|
wxPoint(x, y), wxSize(w, h),
|
||||||
UseDebugger, BatchMode, UseLogger);
|
UseDebugger, BatchMode, UseLogger);
|
||||||
SetTopWindow(main_frame);
|
SetTopWindow(main_frame);
|
||||||
|
|
|
@ -294,13 +294,13 @@ int main(int argc, char* argv[])
|
||||||
help = 1;
|
help = 1;
|
||||||
break;
|
break;
|
||||||
case 'v':
|
case 'v':
|
||||||
fprintf(stderr, "%s\n", svn_rev_str);
|
fprintf(stderr, "%s\n", scm_rev_str);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (help == 1 || argc == optind) {
|
if (help == 1 || argc == optind) {
|
||||||
fprintf(stderr, "%s\n\n", svn_rev_str);
|
fprintf(stderr, "%s\n\n", scm_rev_str);
|
||||||
fprintf(stderr, "A multi-platform Gamecube/Wii emulator\n\n");
|
fprintf(stderr, "A multi-platform Gamecube/Wii emulator\n\n");
|
||||||
fprintf(stderr, "Usage: %s [-e <file>] [-h] [-v]\n", argv[0]);
|
fprintf(stderr, "Usage: %s [-e <file>] [-h] [-v]\n", argv[0]);
|
||||||
fprintf(stderr, " -e, --exec Load the specified file\n");
|
fprintf(stderr, " -e, --exec Load the specified file\n");
|
||||||
|
|
|
@ -103,7 +103,7 @@ void TexDecoder_OpenCL_Initialize()
|
||||||
char dolphin_rev[HEADER_SIZE];
|
char dolphin_rev[HEADER_SIZE];
|
||||||
|
|
||||||
filename = File::GetUserPath(D_OPENCL_IDX) + "kernel.bin";
|
filename = File::GetUserPath(D_OPENCL_IDX) + "kernel.bin";
|
||||||
snprintf(dolphin_rev, HEADER_SIZE, "%-31s", svn_rev_str);
|
snprintf(dolphin_rev, HEADER_SIZE, "%-31s", scm_rev_str);
|
||||||
|
|
||||||
{
|
{
|
||||||
File::IOFile input(filename, "rb");
|
File::IOFile input(filename, "rb");
|
||||||
|
|
|
@ -69,7 +69,7 @@ unsigned int VideoBackend::PeekMessages()
|
||||||
void VideoBackend::UpdateFPSDisplay(const char *text)
|
void VideoBackend::UpdateFPSDisplay(const char *text)
|
||||||
{
|
{
|
||||||
char temp[512];
|
char temp[512];
|
||||||
sprintf_s(temp, sizeof temp, "%s | DX11 | %s", svn_rev_str, text);
|
sprintf_s(temp, sizeof temp, "%s | DX11 | %s", scm_rev_str, text);
|
||||||
SetWindowTextA(EmuWindow::GetWnd(), temp);
|
SetWindowTextA(EmuWindow::GetWnd(), temp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -77,7 +77,7 @@ unsigned int VideoBackend::PeekMessages()
|
||||||
void VideoBackend::UpdateFPSDisplay(const char *text)
|
void VideoBackend::UpdateFPSDisplay(const char *text)
|
||||||
{
|
{
|
||||||
TCHAR temp[512];
|
TCHAR temp[512];
|
||||||
swprintf_s(temp, sizeof(temp)/sizeof(TCHAR), _T("%hs | DX9 | %hs"), svn_rev_str, text);
|
swprintf_s(temp, sizeof(temp)/sizeof(TCHAR), _T("%hs | DX9 | %hs"), scm_rev_str, text);
|
||||||
SetWindowText(EmuWindow::GetWnd(), temp);
|
SetWindowText(EmuWindow::GetWnd(), temp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -108,7 +108,7 @@ unsigned int VideoBackend::PeekMessages()
|
||||||
void VideoBackend::UpdateFPSDisplay(const char *text)
|
void VideoBackend::UpdateFPSDisplay(const char *text)
|
||||||
{
|
{
|
||||||
char temp[100];
|
char temp[100];
|
||||||
snprintf(temp, sizeof temp, "%s | OpenGL | %s", svn_rev_str, text);
|
snprintf(temp, sizeof temp, "%s | OpenGL | %s", scm_rev_str, text);
|
||||||
OpenGL_SetWindowText(temp);
|
OpenGL_SetWindowText(temp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -265,7 +265,7 @@ unsigned int VideoSoftware::PeekMessages()
|
||||||
void VideoSoftware::UpdateFPSDisplay(const char *text)
|
void VideoSoftware::UpdateFPSDisplay(const char *text)
|
||||||
{
|
{
|
||||||
char temp[100];
|
char temp[100];
|
||||||
snprintf(temp, sizeof temp, "%s | Software | %s", svn_rev_str, text);
|
snprintf(temp, sizeof temp, "%s | Software | %s", scm_rev_str, text);
|
||||||
OpenGL_SetWindowText(temp);
|
OpenGL_SetWindowText(temp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue