2026-08-18 18:11:33 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-08-01 16:24:03 -04:00
|
|
|
|
|
|
|
|
#include "core/hle/service/caps/caps.h"
|
2020-03-31 19:16:36 -04:00
|
|
|
#include "core/hle/service/caps/caps_a.h"
|
|
|
|
|
#include "core/hle/service/caps/caps_c.h"
|
2023-10-03 20:05:02 -06:00
|
|
|
#include "core/hle/service/caps/caps_manager.h"
|
2020-03-31 19:16:36 -04:00
|
|
|
#include "core/hle/service/caps/caps_sc.h"
|
|
|
|
|
#include "core/hle/service/caps/caps_ss.h"
|
|
|
|
|
#include "core/hle/service/caps/caps_su.h"
|
|
|
|
|
#include "core/hle/service/caps/caps_u.h"
|
2023-02-18 16:26:48 -05:00
|
|
|
#include "core/hle/service/server_manager.h"
|
2018-08-01 16:24:03 -04:00
|
|
|
#include "core/hle/service/service.h"
|
2026-08-18 18:11:33 +02:00
|
|
|
#include "frontend_common/firmware_manager.h"
|
2018-08-01 16:24:03 -04:00
|
|
|
|
|
|
|
|
namespace Service::Capture {
|
|
|
|
|
|
2026-08-18 18:11:33 +02:00
|
|
|
class IDecoderControlService final : public ServiceFramework<IDecoderControlService> {
|
|
|
|
|
public:
|
|
|
|
|
explicit IDecoderControlService(Core::System& system_) : ServiceFramework{system_, "grc:d"} {
|
|
|
|
|
// clang-format off
|
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
|
{3001, nullptr, "DecodeJpeg"},
|
|
|
|
|
{4001, nullptr, "ShrinkJpeg"},
|
|
|
|
|
{4002, nullptr, "ShrinkJpegEx"},
|
|
|
|
|
};
|
|
|
|
|
// clang-format on
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2023-02-18 16:26:48 -05:00
|
|
|
void LoopProcess(Core::System& system) {
|
|
|
|
|
auto server_manager = std::make_unique<ServerManager>(system);
|
2023-10-11 18:41:56 -06:00
|
|
|
auto album_manager = std::make_shared<AlbumManager>(system);
|
2023-10-03 20:05:02 -06:00
|
|
|
|
2026-08-18 18:11:33 +02:00
|
|
|
server_manager->RegisterNamedService("caps:a", std::make_shared<IAlbumAccessorService>(system, album_manager));
|
|
|
|
|
server_manager->RegisterNamedService("caps:c", std::make_shared<IAlbumControlService>(system, album_manager));
|
|
|
|
|
server_manager->RegisterNamedService("caps:u", std::make_shared<IAlbumApplicationService>(system, album_manager));
|
|
|
|
|
server_manager->RegisterNamedService("caps:ss", std::make_shared<IScreenShotService>(system, album_manager));
|
|
|
|
|
server_manager->RegisterNamedService("caps:sc", std::make_shared<IScreenShotControlService>(system));
|
|
|
|
|
server_manager->RegisterNamedService("caps:su", std::make_shared<IScreenShotApplicationService>(system, album_manager));
|
|
|
|
|
// +4.0.0
|
|
|
|
|
if (FirmwareManager::GetFirmwareVersion(system).first.major >= 4) {
|
|
|
|
|
server_manager->RegisterNamedService("caps:dc", std::make_shared<IDecoderControlService>(system));
|
|
|
|
|
}
|
2023-02-18 16:26:48 -05:00
|
|
|
ServerManager::RunServer(std::move(server_manager));
|
2018-08-01 16:24:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Service::Capture
|