2018-07-31 13:20:42 +02:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "core/hle/ipc_helpers.h"
|
|
|
|
#include "core/hle/kernel/hle_ipc.h"
|
|
|
|
#include "core/hle/service/fgm/fgm.h"
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
#include "core/hle/service/sm/sm.h"
|
|
|
|
|
|
|
|
namespace Service::FGM {
|
|
|
|
|
|
|
|
class IRequest final : public ServiceFramework<IRequest> {
|
|
|
|
public:
|
2020-11-26 21:19:08 +01:00
|
|
|
explicit IRequest(Core::System& system_) : ServiceFramework{system_, "IRequest"} {
|
2018-07-31 13:20:42 +02:00
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, nullptr, "Initialize"},
|
|
|
|
{1, nullptr, "Set"},
|
|
|
|
{2, nullptr, "Get"},
|
|
|
|
{3, nullptr, "Cancel"},
|
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class FGM final : public ServiceFramework<FGM> {
|
|
|
|
public:
|
2020-11-26 21:19:08 +01:00
|
|
|
explicit FGM(Core::System& system_, const char* name) : ServiceFramework{system_, name} {
|
2018-07-31 13:20:42 +02:00
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, &FGM::Initialize, "Initialize"},
|
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
void Initialize(Kernel::HLERequestContext& ctx) {
|
2018-11-26 07:06:13 +01:00
|
|
|
LOG_DEBUG(Service_FGM, "called");
|
|
|
|
|
2018-07-31 13:20:42 +02:00
|
|
|
IPC::ResponseBuilder rb{ctx, 2, 0, 1};
|
2021-05-21 07:05:04 +02:00
|
|
|
rb.Push(ResultSuccess);
|
2020-11-26 21:19:08 +01:00
|
|
|
rb.PushIpcInterface<IRequest>(system);
|
2018-07-31 13:20:42 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class FGM_DBG final : public ServiceFramework<FGM_DBG> {
|
|
|
|
public:
|
2020-11-26 21:19:08 +01:00
|
|
|
explicit FGM_DBG(Core::System& system_) : ServiceFramework{system_, "fgm:dbg"} {
|
2018-07-31 13:20:42 +02:00
|
|
|
// clang-format off
|
|
|
|
static const FunctionInfo functions[] = {
|
|
|
|
{0, nullptr, "Initialize"},
|
|
|
|
{1, nullptr, "Read"},
|
|
|
|
{2, nullptr, "Cancel"},
|
|
|
|
};
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
RegisterHandlers(functions);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-11-26 21:19:08 +01:00
|
|
|
void InstallInterfaces(SM::ServiceManager& sm, Core::System& system) {
|
|
|
|
std::make_shared<FGM>(system, "fgm")->InstallAsService(sm);
|
|
|
|
std::make_shared<FGM>(system, "fgm:0")->InstallAsService(sm);
|
|
|
|
std::make_shared<FGM>(system, "fgm:9")->InstallAsService(sm);
|
|
|
|
std::make_shared<FGM_DBG>(system)->InstallAsService(sm);
|
2018-07-31 13:20:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Service::FGM
|