mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-27 09:43:51 +00:00
72 lines
1.6 KiB
C++
72 lines
1.6 KiB
C++
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
|
|
#include "audio_core/adsp/adsp.h"
|
|
#include "audio_core/audio_manager.h"
|
|
#include "audio_core/sink/sink.h"
|
|
|
|
namespace Core {
|
|
class System;
|
|
}
|
|
|
|
namespace AudioCore {
|
|
|
|
/// @brief Main audio class, stored inside the core, and holding the audio manager, all sinks, and the ADSP.
|
|
class AudioCore {
|
|
public:
|
|
explicit AudioCore(Core::System& system);
|
|
~AudioCore();
|
|
|
|
/**
|
|
* Shutdown the audio core.
|
|
*/
|
|
void Shutdown();
|
|
|
|
/**
|
|
* Get a reference to the audio manager.
|
|
*
|
|
* @return Ref to the audio manager.
|
|
*/
|
|
AudioManager& GetAudioManager();
|
|
|
|
/**
|
|
* Get the audio output sink currently in use.
|
|
*
|
|
* @return Ref to the sink.
|
|
*/
|
|
Sink::Sink& GetOutputSink();
|
|
|
|
/**
|
|
* Get the audio input sink currently in use.
|
|
*
|
|
* @return Ref to the sink.
|
|
*/
|
|
Sink::Sink& GetInputSink();
|
|
|
|
/// @brief Get the ADSP.
|
|
/// @return Ref to the ADSP.
|
|
ADSP::ADSP& ADSP();
|
|
|
|
private:
|
|
/// @brief Create the sinks on startup.
|
|
void CreateSinks();
|
|
|
|
/// Main audio manager for audio in/out
|
|
std::optional<AudioManager> audio_manager;
|
|
/// Sink used for audio renderer and audio out
|
|
std::unique_ptr<Sink::Sink> output_sink;
|
|
/// Sink used for audio input
|
|
std::unique_ptr<Sink::Sink> input_sink;
|
|
/// The ADSP in the sysmodule
|
|
std::optional<ADSP::ADSP> adsp;
|
|
};
|
|
|
|
} // namespace AudioCore
|