chore: make yuzu REUSE compliant
[REUSE] is a specification that aims at making file copyright
information consistent, so that it can be both human and machine
readable. It basically requires that all files have a header containing
copyright and licensing information. When this isn't possible, like
when dealing with binary assets, generated files or embedded third-party
dependencies, it is permitted to insert copyright information in the
`.reuse/dep5` file.
Oh, and it also requires that all the licenses used in the project are
present in the `LICENSES` folder, that's why the diff is so huge.
This can be done automatically with `reuse download --all`.
The `reuse` tool also contains a handy subcommand that analyzes the
project and tells whether or not the project is (still) compliant,
`reuse lint`.
Following REUSE has a few advantages over the current approach:
- Copyright information is easy to access for users / downstream
- Files like `dist/license.md` do not need to exist anymore, as
`.reuse/dep5` is used instead
- `reuse lint` makes it easy to ensure that copyright information of
files like binary assets / images is always accurate and up to date
To add copyright information of files that didn't have it I looked up
who committed what and when, for each file. As yuzu contributors do not
have to sign a CLA or similar I couldn't assume that copyright ownership
was of the "yuzu Emulator Project", so I used the name and/or email of
the commit author instead.
[REUSE]: https://reuse.software
Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
2022-05-14 19:06:02 -05:00
|
|
|
// SPDX-FileCopyrightText: 2014 Citra Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2015-01-04 11:36:57 -06:00
|
|
|
|
2016-12-11 05:53:18 -06:00
|
|
|
#pragma once
|
|
|
|
|
2015-05-16 12:56:00 -05:00
|
|
|
#include <condition_variable>
|
2023-05-02 15:54:19 -05:00
|
|
|
#include <cstddef>
|
2020-08-28 23:44:27 -05:00
|
|
|
#include <memory>
|
2015-05-16 12:56:00 -05:00
|
|
|
#include <mutex>
|
2023-05-02 15:54:19 -05:00
|
|
|
#include <utility>
|
|
|
|
#include <vector>
|
2020-03-24 23:57:36 -05:00
|
|
|
|
2023-05-02 15:54:19 -05:00
|
|
|
#include <QByteArray>
|
2018-08-31 01:16:16 -05:00
|
|
|
#include <QImage>
|
2023-05-02 15:54:19 -05:00
|
|
|
#include <QObject>
|
|
|
|
#include <QPoint>
|
|
|
|
#include <QString>
|
2022-05-12 09:03:37 -05:00
|
|
|
#include <QStringList>
|
2015-09-10 23:23:00 -05:00
|
|
|
#include <QThread>
|
2019-01-11 22:06:34 -06:00
|
|
|
#include <QWidget>
|
2023-05-02 15:54:19 -05:00
|
|
|
#include <qglobal.h>
|
|
|
|
#include <qnamespace.h>
|
|
|
|
#include <qobjectdefs.h>
|
2020-03-24 23:57:36 -05:00
|
|
|
|
2023-05-02 15:54:19 -05:00
|
|
|
#include "common/common_types.h"
|
2023-05-01 19:29:13 -05:00
|
|
|
#include "common/logging/log.h"
|
2022-11-21 10:31:18 -06:00
|
|
|
#include "common/polyfill_thread.h"
|
2020-01-21 13:40:53 -06:00
|
|
|
#include "common/thread.h"
|
2016-12-23 07:37:40 -06:00
|
|
|
#include "core/frontend/emu_window.h"
|
2014-03-31 21:26:50 -05:00
|
|
|
|
2020-03-24 21:58:49 -05:00
|
|
|
class GMainWindow;
|
2022-06-18 23:34:28 -05:00
|
|
|
class QCamera;
|
|
|
|
class QCameraImageCapture;
|
2023-05-02 15:54:19 -05:00
|
|
|
class QCloseEvent;
|
|
|
|
class QFocusEvent;
|
2014-03-31 21:26:50 -05:00
|
|
|
class QKeyEvent;
|
2023-05-02 15:54:19 -05:00
|
|
|
class QMouseEvent;
|
|
|
|
class QObject;
|
|
|
|
class QResizeEvent;
|
|
|
|
class QShowEvent;
|
|
|
|
class QTimer;
|
|
|
|
class QTouchEvent;
|
|
|
|
class QWheelEvent;
|
2014-03-31 21:26:50 -05:00
|
|
|
|
2021-10-14 17:16:45 -05:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
} // namespace Core
|
|
|
|
|
2020-08-27 14:16:47 -05:00
|
|
|
namespace InputCommon {
|
|
|
|
class InputSubsystem;
|
2021-02-23 20:39:02 -06:00
|
|
|
enum class MouseButton;
|
2021-09-20 19:39:08 -05:00
|
|
|
} // namespace InputCommon
|
2021-02-23 20:39:02 -06:00
|
|
|
|
2021-11-21 22:37:50 -06:00
|
|
|
namespace InputCommon::TasInput {
|
|
|
|
enum class TasState;
|
|
|
|
} // namespace InputCommon::TasInput
|
|
|
|
|
2019-01-21 13:38:23 -06:00
|
|
|
namespace VideoCore {
|
|
|
|
enum class LoadCallbackStage;
|
2021-09-02 20:40:55 -05:00
|
|
|
} // namespace VideoCore
|
2019-01-21 13:38:23 -06:00
|
|
|
|
2019-05-29 01:05:06 -05:00
|
|
|
class EmuThread final : public QThread {
|
2014-03-31 21:26:50 -05:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2022-12-17 13:34:03 -06:00
|
|
|
explicit EmuThread(Core::System& system);
|
2019-05-29 01:05:06 -05:00
|
|
|
~EmuThread() override;
|
2014-03-31 21:26:50 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Start emulation (on new thread)
|
|
|
|
* @warning Only call when not running!
|
|
|
|
*/
|
2014-10-25 23:56:13 -05:00
|
|
|
void run() override;
|
2014-03-31 21:26:50 -05:00
|
|
|
|
|
|
|
/**
|
2022-12-17 13:34:03 -06:00
|
|
|
* Sets whether the emulation thread should run or not
|
|
|
|
* @param should_run Boolean value, set the emulation thread to running if true
|
2014-03-31 21:26:50 -05:00
|
|
|
*/
|
2022-12-17 13:34:03 -06:00
|
|
|
void SetRunning(bool should_run) {
|
|
|
|
// TODO: Prevent other threads from modifying the state until we finish.
|
|
|
|
{
|
|
|
|
// Notify the running thread to change state.
|
|
|
|
std::unique_lock run_lk{m_should_run_mutex};
|
|
|
|
m_should_run = should_run;
|
|
|
|
m_should_run_cv.notify_one();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait until paused, if pausing.
|
|
|
|
if (!should_run) {
|
2023-06-20 10:41:38 -05:00
|
|
|
m_stopped.Wait();
|
2020-02-24 20:04:12 -06:00
|
|
|
}
|
2015-05-16 12:56:00 -05:00
|
|
|
}
|
2014-03-31 21:26:50 -05:00
|
|
|
|
2014-04-03 20:24:07 -05:00
|
|
|
/**
|
2015-04-28 18:03:01 -05:00
|
|
|
* Check if the emulation thread is running or not
|
|
|
|
* @return True if the emulation thread is running, otherwise false
|
2015-04-16 22:31:14 -05:00
|
|
|
*/
|
2018-01-17 17:34:58 -06:00
|
|
|
bool IsRunning() const {
|
2023-06-20 10:41:38 -05:00
|
|
|
return m_should_run;
|
2016-09-17 19:38:01 -05:00
|
|
|
}
|
2015-04-16 22:31:14 -05:00
|
|
|
|
|
|
|
/**
|
2022-12-12 20:38:20 -06:00
|
|
|
* Requests for the emulation thread to immediately stop running
|
2015-04-16 22:31:14 -05:00
|
|
|
*/
|
2022-07-18 02:41:29 -05:00
|
|
|
void ForceStop() {
|
|
|
|
LOG_WARNING(Frontend, "Force stopping EmuThread");
|
2022-12-17 13:34:03 -06:00
|
|
|
m_stop_source.request_stop();
|
2018-01-17 17:34:58 -06:00
|
|
|
}
|
2014-03-31 21:26:50 -05:00
|
|
|
|
2023-01-10 11:46:01 -06:00
|
|
|
private:
|
|
|
|
void EmulationPaused(std::unique_lock<std::mutex>& lk);
|
|
|
|
void EmulationResumed(std::unique_lock<std::mutex>& lk);
|
|
|
|
|
2014-03-31 21:26:50 -05:00
|
|
|
private:
|
2022-12-17 13:34:03 -06:00
|
|
|
Core::System& m_system;
|
|
|
|
|
|
|
|
std::stop_source m_stop_source;
|
|
|
|
std::mutex m_should_run_mutex;
|
|
|
|
std::condition_variable_any m_should_run_cv;
|
2023-06-20 10:41:38 -05:00
|
|
|
Common::Event m_stopped;
|
2022-12-17 13:34:03 -06:00
|
|
|
bool m_should_run{true};
|
2014-03-31 21:26:50 -05:00
|
|
|
|
|
|
|
signals:
|
|
|
|
/**
|
2015-01-07 05:14:23 -06:00
|
|
|
* Emitted when the CPU has halted execution
|
2014-10-12 11:14:57 -05:00
|
|
|
*
|
2016-09-17 19:38:01 -05:00
|
|
|
* @warning When connecting to this signal from other threads, make sure to specify either
|
|
|
|
* Qt::QueuedConnection (invoke slot within the destination object's message thread) or even
|
|
|
|
* Qt::BlockingQueuedConnection (additionally block source thread until slot returns)
|
2014-03-31 21:26:50 -05:00
|
|
|
*/
|
2015-01-07 05:14:23 -06:00
|
|
|
void DebugModeEntered();
|
2015-05-25 13:34:09 -05:00
|
|
|
|
2015-01-07 05:14:23 -06:00
|
|
|
/**
|
|
|
|
* Emitted right before the CPU continues execution
|
|
|
|
*
|
2016-09-17 19:38:01 -05:00
|
|
|
* @warning When connecting to this signal from other threads, make sure to specify either
|
|
|
|
* Qt::QueuedConnection (invoke slot within the destination object's message thread) or even
|
|
|
|
* Qt::BlockingQueuedConnection (additionally block source thread until slot returns)
|
2015-01-07 05:14:23 -06:00
|
|
|
*/
|
|
|
|
void DebugModeLeft();
|
2017-03-08 15:28:30 -06:00
|
|
|
|
2019-01-21 13:38:23 -06:00
|
|
|
void LoadProgress(VideoCore::LoadCallbackStage stage, std::size_t value, std::size_t total);
|
2014-03-31 21:26:50 -05:00
|
|
|
};
|
|
|
|
|
2018-08-11 19:20:19 -05:00
|
|
|
class GRenderWindow : public QWidget, public Core::Frontend::EmuWindow {
|
2014-08-24 09:47:00 -05:00
|
|
|
Q_OBJECT
|
|
|
|
|
2014-03-31 21:26:50 -05:00
|
|
|
public:
|
2020-08-27 14:16:47 -05:00
|
|
|
explicit GRenderWindow(GMainWindow* parent, EmuThread* emu_thread_,
|
2021-09-02 20:40:55 -05:00
|
|
|
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem_,
|
|
|
|
Core::System& system_);
|
2018-08-06 12:12:32 -05:00
|
|
|
~GRenderWindow() override;
|
2014-03-31 21:26:50 -05:00
|
|
|
|
2020-02-17 14:53:21 -06:00
|
|
|
// EmuWindow implementation.
|
Overhaul EmuWindow::PollEvents to fix yuzu-cmd calling SDL_PollEvents off main thread
EmuWindow::PollEvents was called from the GPU thread (or the CPU thread
in sync-GPU mode) when swapping buffers. It had three implementations:
- In GRenderWindow, it didn't actually poll events, just set a flag and
emit a signal to indicate that a frame was displayed.
- In EmuWindow_SDL2_Hide, it did nothing.
- In EmuWindow_SDL2, it did call SDL_PollEvents, but this is wrong
because SDL_PollEvents is supposed to be called on the thread that set
up video - in this case, the main thread, which was sleeping in a
busyloop (regardless of whether sync-GPU was enabled). On macOS this
causes a crash.
To fix this:
- Rename EmuWindow::PollEvents to OnFrameDisplayed, and give it a
default implementation that does nothing.
- In EmuWindow_SDL2, do not override OnFrameDisplayed, but instead have
the main thread call SDL_WaitEvent in a loop.
2020-11-22 15:05:18 -06:00
|
|
|
void OnFrameDisplayed() override;
|
2020-01-21 13:40:53 -06:00
|
|
|
bool IsShown() const override;
|
2019-01-11 22:06:34 -06:00
|
|
|
std::unique_ptr<Core::Frontend::GraphicsContext> CreateSharedContext() const override;
|
2014-03-31 21:26:50 -05:00
|
|
|
|
|
|
|
void BackupGeometry();
|
|
|
|
void RestoreGeometry();
|
2022-05-26 18:57:35 -05:00
|
|
|
void restoreGeometry(const QByteArray& geometry_); // overridden
|
|
|
|
QByteArray saveGeometry(); // overridden
|
2014-03-31 21:26:50 -05:00
|
|
|
|
2020-02-17 14:53:21 -06:00
|
|
|
qreal windowPixelRatio() const;
|
2015-09-10 16:42:45 -05:00
|
|
|
|
2023-02-19 17:52:44 -06:00
|
|
|
std::pair<u32, u32> ScaleTouch(const QPointF& pos) const;
|
|
|
|
|
2015-09-05 05:29:44 -05:00
|
|
|
void closeEvent(QCloseEvent* event) override;
|
2020-02-17 14:53:21 -06:00
|
|
|
|
|
|
|
void resizeEvent(QResizeEvent* event) override;
|
|
|
|
|
2021-11-13 23:25:45 -06:00
|
|
|
/// Converts a Qt keybard key into NativeKeyboard key
|
|
|
|
static int QtKeyToSwitchKey(Qt::Key qt_keys);
|
|
|
|
|
|
|
|
/// Converts a Qt modifier keys into NativeKeyboard modifier keys
|
2021-11-19 10:56:52 -06:00
|
|
|
static int QtModifierToSwitchModifier(Qt::KeyboardModifiers qt_modifiers);
|
2021-11-13 23:25:45 -06:00
|
|
|
|
2020-02-17 14:53:21 -06:00
|
|
|
void keyPressEvent(QKeyEvent* event) override;
|
|
|
|
void keyReleaseEvent(QKeyEvent* event) override;
|
|
|
|
|
2021-02-23 20:39:02 -06:00
|
|
|
/// Converts a Qt mouse button into MouseInput mouse button
|
2021-09-20 19:39:08 -05:00
|
|
|
static InputCommon::MouseButton QtButtonToMouseButton(Qt::MouseButton button);
|
2021-02-23 20:39:02 -06:00
|
|
|
|
2020-02-17 14:53:21 -06:00
|
|
|
void mousePressEvent(QMouseEvent* event) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent* event) override;
|
|
|
|
void mouseReleaseEvent(QMouseEvent* event) override;
|
2021-11-14 14:09:29 -06:00
|
|
|
void wheelEvent(QWheelEvent* event) override;
|
2020-02-17 14:53:21 -06:00
|
|
|
|
2022-06-18 23:34:28 -05:00
|
|
|
void InitializeCamera();
|
|
|
|
void FinalizeCamera();
|
|
|
|
|
2018-10-01 14:42:49 -05:00
|
|
|
bool event(QEvent* event) override;
|
2017-03-17 14:41:25 -05:00
|
|
|
|
2020-02-17 14:53:21 -06:00
|
|
|
void focusOutEvent(QFocusEvent* event) override;
|
2014-10-12 11:14:57 -05:00
|
|
|
|
2020-01-21 13:40:53 -06:00
|
|
|
bool InitRenderTarget();
|
2016-08-29 20:28:58 -05:00
|
|
|
|
2020-02-17 14:53:21 -06:00
|
|
|
/// Destroy the previous run's child_widget which should also destroy the child_window
|
|
|
|
void ReleaseRenderTarget();
|
|
|
|
|
2020-11-16 23:33:38 -06:00
|
|
|
bool IsLoadingComplete() const;
|
|
|
|
|
2021-09-10 00:28:02 -05:00
|
|
|
void CaptureScreenshot(const QString& screenshot_path);
|
2018-08-31 01:16:16 -05:00
|
|
|
|
2020-11-24 17:18:29 -06:00
|
|
|
/**
|
|
|
|
* Instructs the window to re-launch the application using the specified program_index.
|
|
|
|
* @param program_index Specifies the index within the application of the program to launch.
|
|
|
|
*/
|
|
|
|
void ExecuteProgram(std::size_t program_index);
|
|
|
|
|
2021-09-25 22:18:14 -05:00
|
|
|
/// Instructs the window to exit the application.
|
|
|
|
void Exit();
|
|
|
|
|
2014-08-24 10:49:34 -05:00
|
|
|
public slots:
|
2022-05-26 18:57:35 -05:00
|
|
|
void OnEmulationStarting(EmuThread* emu_thread_);
|
2015-04-30 18:46:50 -05:00
|
|
|
void OnEmulationStopping();
|
2015-09-04 08:55:48 -05:00
|
|
|
void OnFramebufferSizeChanged();
|
2015-04-28 23:01:41 -05:00
|
|
|
|
2015-09-05 05:29:44 -05:00
|
|
|
signals:
|
|
|
|
/// Emitted when the window is closed
|
|
|
|
void Closed();
|
2019-01-17 01:01:00 -06:00
|
|
|
void FirstFrameDisplayed();
|
2020-11-24 17:18:29 -06:00
|
|
|
void ExecuteProgramSignal(std::size_t program_index);
|
2021-09-25 22:18:14 -05:00
|
|
|
void ExitSignal();
|
2020-12-30 13:41:14 -06:00
|
|
|
void MouseActivity();
|
2021-11-21 19:28:47 -06:00
|
|
|
void TasPlaybackStateChanged();
|
2015-09-05 05:29:44 -05:00
|
|
|
|
2014-03-31 21:26:50 -05:00
|
|
|
private:
|
2018-10-01 14:42:49 -05:00
|
|
|
void TouchBeginEvent(const QTouchEvent* event);
|
|
|
|
void TouchUpdateEvent(const QTouchEvent* event);
|
|
|
|
void TouchEndEvent();
|
|
|
|
|
2022-06-18 23:34:28 -05:00
|
|
|
void RequestCameraCapture();
|
|
|
|
void OnCameraCapture(int requestId, const QImage& img);
|
|
|
|
|
2019-05-29 01:02:36 -05:00
|
|
|
void OnMinimalClientAreaChangeRequest(std::pair<u32, u32> minimal_size) override;
|
2014-10-12 15:46:33 -05:00
|
|
|
|
2020-01-21 13:40:53 -06:00
|
|
|
bool InitializeOpenGL();
|
|
|
|
bool InitializeVulkan();
|
2022-11-27 19:37:37 -06:00
|
|
|
void InitializeNull();
|
2020-01-21 13:40:53 -06:00
|
|
|
bool LoadOpenGL();
|
|
|
|
QStringList GetUnsupportedGLExtensions() const;
|
2014-03-31 21:26:50 -05:00
|
|
|
|
2015-04-28 23:01:41 -05:00
|
|
|
EmuThread* emu_thread;
|
2020-08-28 23:44:27 -05:00
|
|
|
std::shared_ptr<InputCommon::InputSubsystem> input_subsystem;
|
2020-02-17 14:53:21 -06:00
|
|
|
|
2020-03-24 21:58:49 -05:00
|
|
|
// Main context that will be shared with all other contexts that are requested.
|
|
|
|
// If this is used in a shared context setting, then this should not be used directly, but
|
|
|
|
// should instead be shared from
|
|
|
|
std::shared_ptr<Core::Frontend::GraphicsContext> main_context;
|
2015-09-04 08:55:48 -05:00
|
|
|
|
2018-08-31 01:16:16 -05:00
|
|
|
/// Temporary storage of the screenshot taken
|
|
|
|
QImage screenshot_image;
|
|
|
|
|
2020-01-21 13:40:53 -06:00
|
|
|
QByteArray geometry;
|
2020-02-17 14:53:21 -06:00
|
|
|
|
|
|
|
QWidget* child_widget = nullptr;
|
|
|
|
|
2019-01-17 01:01:00 -06:00
|
|
|
bool first_frame = false;
|
2021-11-21 22:37:50 -06:00
|
|
|
InputCommon::TasInput::TasState last_tas_state;
|
2019-01-17 01:01:00 -06:00
|
|
|
|
2022-08-31 05:10:34 -05:00
|
|
|
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0)) && YUZU_USE_QT_MULTIMEDIA
|
2022-12-17 23:54:47 -06:00
|
|
|
bool is_virtual_camera;
|
|
|
|
int pending_camera_snapshots;
|
2022-12-15 21:50:36 -06:00
|
|
|
std::vector<u32> camera_data;
|
2022-12-17 23:54:47 -06:00
|
|
|
std::unique_ptr<QCamera> camera;
|
|
|
|
std::unique_ptr<QCameraImageCapture> camera_capture;
|
2022-06-18 23:34:28 -05:00
|
|
|
std::unique_ptr<QTimer> camera_timer;
|
2022-12-17 23:54:47 -06:00
|
|
|
#endif
|
2022-06-18 23:34:28 -05:00
|
|
|
|
2021-09-02 20:40:55 -05:00
|
|
|
Core::System& system;
|
|
|
|
|
2015-09-04 08:55:48 -05:00
|
|
|
protected:
|
|
|
|
void showEvent(QShowEvent* event) override;
|
2020-12-30 13:41:14 -06:00
|
|
|
bool eventFilter(QObject* object, QEvent* event) override;
|
2014-03-31 21:26:50 -05:00
|
|
|
};
|