2018-01-17 03:32:59 +01:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2019-06-27 08:44:42 +02:00
|
|
|
#include "core/hle/service/glue/manager.h"
|
2018-01-17 03:32:59 +01:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-04-20 03:41:44 +02:00
|
|
|
namespace Service::Account {
|
2018-01-17 03:32:59 +01:00
|
|
|
|
2018-08-21 01:00:58 +02:00
|
|
|
class ProfileManager;
|
|
|
|
|
2018-04-10 09:18:52 +02:00
|
|
|
class Module final {
|
|
|
|
public:
|
|
|
|
class Interface : public ServiceFramework<Interface> {
|
|
|
|
public:
|
2018-08-11 05:17:06 +02:00
|
|
|
explicit Interface(std::shared_ptr<Module> module,
|
2019-06-16 12:18:35 +02:00
|
|
|
std::shared_ptr<ProfileManager> profile_manager, Core::System& system,
|
|
|
|
const char* name);
|
2018-08-21 01:00:58 +02:00
|
|
|
~Interface() override;
|
2018-04-10 09:18:52 +02:00
|
|
|
|
2018-08-08 04:39:12 +02:00
|
|
|
void GetUserCount(Kernel::HLERequestContext& ctx);
|
2018-04-10 09:18:52 +02:00
|
|
|
void GetUserExistence(Kernel::HLERequestContext& ctx);
|
|
|
|
void ListAllUsers(Kernel::HLERequestContext& ctx);
|
|
|
|
void ListOpenUsers(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetLastOpenedUser(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetProfile(Kernel::HLERequestContext& ctx);
|
2019-06-27 08:44:42 +02:00
|
|
|
void InitializeApplicationInfo(Kernel::HLERequestContext& ctx);
|
|
|
|
void InitializeApplicationInfoRestricted(Kernel::HLERequestContext& ctx);
|
2018-04-10 09:18:52 +02:00
|
|
|
void GetBaasAccountManagerForApplication(Kernel::HLERequestContext& ctx);
|
2018-08-11 02:33:11 +02:00
|
|
|
void IsUserRegistrationRequestPermitted(Kernel::HLERequestContext& ctx);
|
2018-11-07 01:45:01 +01:00
|
|
|
void TrySelectUserWithoutInteraction(Kernel::HLERequestContext& ctx);
|
2019-06-16 11:06:33 +02:00
|
|
|
void IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx);
|
2019-07-03 14:57:41 +02:00
|
|
|
void GetProfileEditor(Kernel::HLERequestContext& ctx);
|
2020-04-28 16:37:47 +02:00
|
|
|
void ListQualifiedUsers(Kernel::HLERequestContext& ctx);
|
2020-09-18 02:45:33 +02:00
|
|
|
void LoadOpenContext(Kernel::HLERequestContext& ctx);
|
2020-06-28 08:44:36 +02:00
|
|
|
void ListOpenContextStoredUsers(Kernel::HLERequestContext& ctx);
|
2018-04-10 09:18:52 +02:00
|
|
|
|
2019-06-27 08:44:42 +02:00
|
|
|
private:
|
2020-04-29 12:38:07 +02:00
|
|
|
ResultCode InitializeApplicationInfoBase();
|
2019-06-27 08:44:42 +02:00
|
|
|
|
|
|
|
enum class ApplicationType : u32_le {
|
|
|
|
GameCard = 0,
|
|
|
|
Digital = 1,
|
|
|
|
Unknown = 3,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ApplicationInfo {
|
|
|
|
Service::Glue::ApplicationLaunchProperty launch_property;
|
|
|
|
ApplicationType application_type;
|
|
|
|
|
|
|
|
constexpr explicit operator bool() const {
|
|
|
|
return launch_property.title_id != 0x0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ApplicationInfo application_info{};
|
|
|
|
|
2018-04-10 09:18:52 +02:00
|
|
|
protected:
|
|
|
|
std::shared_ptr<Module> module;
|
2018-08-11 05:17:06 +02:00
|
|
|
std::shared_ptr<ProfileManager> profile_manager;
|
2019-06-16 12:18:35 +02:00
|
|
|
Core::System& system;
|
2018-04-10 09:18:52 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-01-17 03:32:59 +01:00
|
|
|
/// Registers all ACC services with the specified service manager.
|
2019-06-17 00:17:26 +02:00
|
|
|
void InstallInterfaces(Core::System& system);
|
2018-01-17 03:32:59 +01:00
|
|
|
|
2018-04-20 03:41:44 +02:00
|
|
|
} // namespace Service::Account
|