2015-11-27 08:33:07 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-11-27 08:33:07 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-07-13 19:58:26 +00:00
|
|
|
#include <atomic>
|
2015-11-27 08:33:07 +00:00
|
|
|
|
2018-05-28 01:48:04 +00:00
|
|
|
#include <QObject>
|
|
|
|
|
2015-11-27 08:33:07 +00:00
|
|
|
// Singleton that talks to the Core via the interface defined in Core/Host.h.
|
|
|
|
// Because Host_* calls might come from different threads than the MainWindow,
|
|
|
|
// the Host class communicates with it via signals/slots only.
|
|
|
|
|
|
|
|
// Many of the Host_* functions are ignored, and some shouldn't exist.
|
|
|
|
class Host final : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2020-04-14 22:12:35 +00:00
|
|
|
~Host();
|
|
|
|
|
2015-11-27 08:33:07 +00:00
|
|
|
static Host* GetInstance();
|
|
|
|
|
|
|
|
bool GetRenderFocus();
|
2021-05-09 10:28:04 +00:00
|
|
|
bool GetRenderFullFocus();
|
2015-11-27 08:33:07 +00:00
|
|
|
bool GetRenderFullscreen();
|
2021-07-04 11:23:30 +00:00
|
|
|
bool GetGBAFocus();
|
2024-05-26 23:50:12 +00:00
|
|
|
bool GetTASInputFocus() const;
|
2015-11-27 08:33:07 +00:00
|
|
|
|
2021-05-09 10:28:04 +00:00
|
|
|
void SetMainWindowHandle(void* handle);
|
2015-11-27 08:33:07 +00:00
|
|
|
void SetRenderHandle(void* handle);
|
|
|
|
void SetRenderFocus(bool focus);
|
2021-05-09 10:28:04 +00:00
|
|
|
void SetRenderFullFocus(bool focus);
|
2015-11-27 08:33:07 +00:00
|
|
|
void SetRenderFullscreen(bool fullscreen);
|
2024-05-26 23:50:12 +00:00
|
|
|
void SetTASInputFocus(bool focus);
|
2018-01-26 06:23:24 +00:00
|
|
|
void ResizeSurface(int new_width, int new_height);
|
2015-11-27 08:33:07 +00:00
|
|
|
|
|
|
|
signals:
|
2016-01-01 10:29:39 +00:00
|
|
|
void RequestTitle(const QString& title);
|
2015-11-27 08:33:07 +00:00
|
|
|
void RequestStop();
|
|
|
|
void RequestRenderSize(int w, int h);
|
2018-05-05 22:17:06 +00:00
|
|
|
void UpdateDisasmDialog();
|
2024-03-17 06:05:56 +00:00
|
|
|
void PPCSymbolsChanged();
|
2024-09-21 01:37:39 +00:00
|
|
|
void PPCBreakpointsChanged();
|
2015-11-27 08:33:07 +00:00
|
|
|
|
|
|
|
private:
|
2017-07-13 19:58:26 +00:00
|
|
|
Host();
|
2015-11-27 08:33:07 +00:00
|
|
|
|
2018-05-03 12:16:21 +00:00
|
|
|
std::atomic<void*> m_render_handle{nullptr};
|
2021-05-09 10:28:04 +00:00
|
|
|
std::atomic<void*> m_main_window_handle{nullptr};
|
|
|
|
std::atomic<bool> m_render_to_main{false};
|
2018-05-03 12:16:21 +00:00
|
|
|
std::atomic<bool> m_render_focus{false};
|
2021-05-09 10:28:04 +00:00
|
|
|
std::atomic<bool> m_render_full_focus{false};
|
2018-05-03 12:16:21 +00:00
|
|
|
std::atomic<bool> m_render_fullscreen{false};
|
2024-05-26 23:50:12 +00:00
|
|
|
std::atomic<bool> m_tas_input_focus{false};
|
2015-11-27 08:33:07 +00:00
|
|
|
};
|