2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2019-06-24 19:20:28 -04:00
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include "core/core.h"
|
|
|
|
#include "core/hle/service/glue/arp.h"
|
|
|
|
#include "core/hle/service/glue/bgtc.h"
|
2021-04-24 11:26:30 -04:00
|
|
|
#include "core/hle/service/glue/ectx.h"
|
2019-06-24 19:20:28 -04:00
|
|
|
#include "core/hle/service/glue/glue.h"
|
2021-12-05 23:55:23 -05:00
|
|
|
#include "core/hle/service/glue/notif.h"
|
2023-02-18 16:26:48 -05:00
|
|
|
#include "core/hle/service/server_manager.h"
|
2019-06-24 19:20:28 -04:00
|
|
|
|
|
|
|
namespace Service::Glue {
|
|
|
|
|
2023-02-18 16:26:48 -05:00
|
|
|
void LoopProcess(Core::System& system) {
|
|
|
|
auto server_manager = std::make_unique<ServerManager>(system);
|
|
|
|
|
2019-06-24 19:20:28 -04:00
|
|
|
// ARP
|
2023-02-18 16:26:48 -05:00
|
|
|
server_manager->RegisterNamedService("arp:r",
|
|
|
|
std::make_shared<ARP_R>(system, system.GetARPManager()));
|
|
|
|
server_manager->RegisterNamedService("arp:w",
|
|
|
|
std::make_shared<ARP_W>(system, system.GetARPManager()));
|
2019-06-24 19:20:28 -04:00
|
|
|
|
|
|
|
// BackGround Task Controller
|
2023-02-18 16:26:48 -05:00
|
|
|
server_manager->RegisterNamedService("bgtc:t", std::make_shared<BGTC_T>(system));
|
|
|
|
server_manager->RegisterNamedService("bgtc:sc", std::make_shared<BGTC_SC>(system));
|
2021-04-24 11:26:30 -04:00
|
|
|
|
|
|
|
// Error Context
|
2023-02-18 16:26:48 -05:00
|
|
|
server_manager->RegisterNamedService("ectx:aw", std::make_shared<ECTX_AW>(system));
|
2021-12-05 23:55:23 -05:00
|
|
|
|
|
|
|
// Notification Services for application
|
2023-02-18 16:26:48 -05:00
|
|
|
server_manager->RegisterNamedService("notif:a", std::make_shared<NOTIF_A>(system));
|
|
|
|
|
|
|
|
ServerManager::RunServer(std::move(server_manager));
|
2019-06-24 19:20:28 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Service::Glue
|