mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-12 19:19:03 +00:00
IOS/USB: Emulate Wii Speak (OpenAL)
Credits to @degasus and shuffle2 (godisgovernment): https://github.com/degasus/dolphin/tree/wiispeak
This commit is contained in:
parent
c9bdda63dc
commit
451e36defc
17 changed files with 828 additions and 0 deletions
27
Source/Core/DolphinQt/EmulatedUSB/WiiSpeakWindow.h
Normal file
27
Source/Core/DolphinQt/EmulatedUSB/WiiSpeakWindow.h
Normal file
|
@ -0,0 +1,27 @@
|
|||
// Copyright 2025 Dolphin Emulator Project
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
#include "Core/Core.h"
|
||||
|
||||
class QCheckBox;
|
||||
class QComboBox;
|
||||
|
||||
class WiiSpeakWindow : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit WiiSpeakWindow(QWidget* parent = nullptr);
|
||||
~WiiSpeakWindow() override;
|
||||
|
||||
private:
|
||||
void CreateMainWindow();
|
||||
void OnEmulationStateChanged(Core::State state);
|
||||
void EmulateWiiSpeak(bool emulate);
|
||||
|
||||
QCheckBox* m_checkbox;
|
||||
QComboBox* m_combobox_microphones;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue