dolphin/Source/Core/DolphinQt/Host.cpp

159 lines
3.5 KiB
C++
Raw Normal View History

2015-11-27 08:33:07 +00:00
// Copyright 2015 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
2018-07-06 22:40:15 +00:00
#include "DolphinQt/Host.h"
2018-01-20 20:00:28 +00:00
#include <QAbstractEventDispatcher>
#include <QApplication>
2018-03-24 01:13:56 +00:00
#include <QProgressDialog>
2015-11-27 08:33:07 +00:00
#include "Common/Common.h"
2018-05-28 01:48:04 +00:00
2018-01-20 20:00:28 +00:00
#include "Core/ConfigManager.h"
2018-02-14 22:25:01 +00:00
#include "Core/Core.h"
#include "Core/Debugger/PPCDebugInterface.h"
2015-11-27 08:33:07 +00:00
#include "Core/Host.h"
2018-02-14 22:25:01 +00:00
#include "Core/PowerPC/PowerPC.h"
2018-05-28 01:48:04 +00:00
2018-07-06 22:40:15 +00:00
#include "DolphinQt/QtUtils/QueueOnObject.h"
#include "DolphinQt/Settings.h"
2018-05-28 01:48:04 +00:00
2018-01-20 20:00:28 +00:00
#include "VideoCommon/RenderBase.h"
2018-05-03 12:16:21 +00:00
#include "VideoCommon/VideoConfig.h"
2015-11-27 08:33:07 +00:00
2017-07-13 19:58:26 +00:00
Host::Host() = default;
2015-11-27 08:33:07 +00:00
Host* Host::GetInstance()
{
2017-07-13 19:58:26 +00:00
static Host* s_instance = new Host();
return s_instance;
2015-11-27 08:33:07 +00:00
}
void* Host::GetRenderHandle()
{
return m_render_handle;
2015-11-27 08:33:07 +00:00
}
void Host::SetRenderHandle(void* handle)
{
m_render_handle = handle;
2015-11-27 08:33:07 +00:00
}
bool Host::GetRenderFocus()
{
return m_render_focus;
2015-11-27 08:33:07 +00:00
}
void Host::SetRenderFocus(bool focus)
{
m_render_focus = focus;
2018-05-03 12:16:21 +00:00
if (g_renderer && m_render_fullscreen && g_ActiveConfig.ExclusiveFullscreenEnabled())
Core::RunAsCPUThread([focus] {
if (!SConfig::GetInstance().bRenderToMain)
g_renderer->SetFullscreen(focus);
});
2015-11-27 08:33:07 +00:00
}
bool Host::GetRenderFullscreen()
{
return m_render_fullscreen;
2015-11-27 08:33:07 +00:00
}
void Host::SetRenderFullscreen(bool fullscreen)
{
m_render_fullscreen = fullscreen;
2018-05-03 12:16:21 +00:00
if (g_renderer && g_renderer->IsFullscreen() != fullscreen &&
g_ActiveConfig.ExclusiveFullscreenEnabled())
Core::RunAsCPUThread([fullscreen] { g_renderer->SetFullscreen(fullscreen); });
2015-11-27 08:33:07 +00:00
}
void Host::ResizeSurface(int new_width, int new_height)
2018-01-20 20:00:28 +00:00
{
if (g_renderer)
g_renderer->ResizeSurface(new_width, new_height);
2018-01-20 20:00:28 +00:00
}
void Host_Message(HostMessageID id)
2015-11-27 08:33:07 +00:00
{
if (id == HostMessageID::WMUserStop)
{
emit Host::GetInstance()->RequestStop();
}
else if (id == HostMessageID::WMUserJobDispatch)
{
// Just poke the main thread to get it to wake up, job dispatch
// will happen automatically before it goes back to sleep again.
QAbstractEventDispatcher::instance(qApp->thread())->wakeUp();
}
2015-11-27 08:33:07 +00:00
}
void Host_UpdateTitle(const std::string& title)
{
emit Host::GetInstance()->RequestTitle(QString::fromStdString(title));
2015-11-27 08:33:07 +00:00
}
void* Host_GetRenderHandle()
{
return Host::GetInstance()->GetRenderHandle();
2015-11-27 08:33:07 +00:00
}
bool Host_RendererHasFocus()
{
return Host::GetInstance()->GetRenderFocus();
2015-11-27 08:33:07 +00:00
}
bool Host_RendererIsFullscreen()
{
return Host::GetInstance()->GetRenderFullscreen();
2015-11-27 08:33:07 +00:00
}
2018-02-14 22:25:01 +00:00
void Host_YieldToUI()
{
qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
}
2018-02-14 22:25:01 +00:00
void Host_UpdateDisasmDialog()
{
QueueOnObject(QApplication::instance(), [] { emit Host::GetInstance()->UpdateDisasmDialog(); });
2018-02-14 22:25:01 +00:00
}
void Host_UpdateProgressDialog(const char* caption, int position, int total)
{
2018-03-24 01:13:56 +00:00
emit Host::GetInstance()->UpdateProgressDialog(QString::fromUtf8(caption), position, total);
}
2015-11-27 08:33:07 +00:00
void Host::RequestNotifyMapLoaded()
{
QueueOnObject(QApplication::instance(), [this] { emit NotifyMapLoaded(); });
}
void Host_NotifyMapLoaded()
{
Host::GetInstance()->RequestNotifyMapLoaded();
}
2015-11-27 08:33:07 +00:00
// We ignore these, and their purpose should be questioned individually.
// In particular, RequestRenderWindowSize, RequestFullscreen, and
// UpdateMainFrame should almost certainly be removed.
void Host_UpdateMainFrame()
{
}
void Host_RequestRenderWindowSize(int w, int h)
{
emit Host::GetInstance()->RequestRenderSize(w, h);
}
bool Host_UINeedsControllerState()
{
return Settings::Instance().IsControllerStateNeeded();
}
void Host_ShowVideoConfig(void* parent, const std::string& backend_name)
{
}
void Host_RefreshDSPDebuggerWindow()
{
}