2018-01-17 02:32:59 +00: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 06:44:42 +00:00
|
|
|
#include "core/hle/service/glue/manager.h"
|
2018-01-17 02:32:59 +00:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
namespace Service::Account {
|
2018-01-17 02:32:59 +00:00
|
|
|
|
2018-08-20 23:00:58 +00:00
|
|
|
class ProfileManager;
|
|
|
|
|
2018-04-10 07:18:52 +00:00
|
|
|
class Module final {
|
|
|
|
public:
|
|
|
|
class Interface : public ServiceFramework<Interface> {
|
|
|
|
public:
|
2018-08-11 03:17:06 +00:00
|
|
|
explicit Interface(std::shared_ptr<Module> module,
|
2019-06-16 10:18:35 +00:00
|
|
|
std::shared_ptr<ProfileManager> profile_manager, Core::System& system,
|
|
|
|
const char* name);
|
2018-08-20 23:00:58 +00:00
|
|
|
~Interface() override;
|
2018-04-10 07:18:52 +00:00
|
|
|
|
2018-08-08 02:39:12 +00:00
|
|
|
void GetUserCount(Kernel::HLERequestContext& ctx);
|
2018-04-10 07:18:52 +00: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 06:44:42 +00:00
|
|
|
void InitializeApplicationInfo(Kernel::HLERequestContext& ctx);
|
|
|
|
void InitializeApplicationInfoRestricted(Kernel::HLERequestContext& ctx);
|
2018-04-10 07:18:52 +00:00
|
|
|
void GetBaasAccountManagerForApplication(Kernel::HLERequestContext& ctx);
|
2018-08-11 00:33:11 +00:00
|
|
|
void IsUserRegistrationRequestPermitted(Kernel::HLERequestContext& ctx);
|
2018-11-07 00:45:01 +00:00
|
|
|
void TrySelectUserWithoutInteraction(Kernel::HLERequestContext& ctx);
|
2019-06-16 09:06:33 +00:00
|
|
|
void IsUserAccountSwitchLocked(Kernel::HLERequestContext& ctx);
|
2019-07-03 12:57:41 +00:00
|
|
|
void GetProfileEditor(Kernel::HLERequestContext& ctx);
|
2020-04-28 14:37:47 +00:00
|
|
|
void ListQualifiedUsers(Kernel::HLERequestContext& ctx);
|
2018-04-10 07:18:52 +00:00
|
|
|
|
2019-06-27 06:44:42 +00:00
|
|
|
private:
|
2020-04-29 10:38:07 +00:00
|
|
|
ResultCode InitializeApplicationInfoBase();
|
2019-06-27 06:44:42 +00: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 07:18:52 +00:00
|
|
|
protected:
|
|
|
|
std::shared_ptr<Module> module;
|
2018-08-11 03:17:06 +00:00
|
|
|
std::shared_ptr<ProfileManager> profile_manager;
|
2019-06-16 10:18:35 +00:00
|
|
|
Core::System& system;
|
2018-04-10 07:18:52 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-01-17 02:32:59 +00:00
|
|
|
/// Registers all ACC services with the specified service manager.
|
2019-06-16 22:17:26 +00:00
|
|
|
void InstallInterfaces(Core::System& system);
|
2018-01-17 02:32:59 +00:00
|
|
|
|
2018-04-20 01:41:44 +00:00
|
|
|
} // namespace Service::Account
|