2018-03-30 03:06:51 +02:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-10-24 01:28:17 +02:00
|
|
|
#include <array>
|
|
|
|
#include <vector>
|
2021-01-31 10:38:57 +01:00
|
|
|
|
2021-09-29 05:42:50 +02:00
|
|
|
#include "core/hle/service/kernel_helpers.h"
|
2021-06-17 05:09:38 +02:00
|
|
|
#include "core/hle/service/mii/mii_manager.h"
|
2018-03-30 03:06:51 +02:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2021-01-31 10:38:57 +01:00
|
|
|
namespace Kernel {
|
|
|
|
class KEvent;
|
2021-06-17 05:09:38 +02:00
|
|
|
class KReadableEvent;
|
|
|
|
} // namespace Kernel
|
|
|
|
|
|
|
|
namespace Core::HID {
|
|
|
|
enum class NpadIdType : u32;
|
|
|
|
} // namespace Core::HID
|
2021-01-31 10:38:57 +01:00
|
|
|
|
2018-04-20 03:41:44 +02:00
|
|
|
namespace Service::NFP {
|
2018-03-30 03:06:51 +02:00
|
|
|
|
2021-06-16 08:03:56 +02:00
|
|
|
enum class ServiceType : u32 {
|
2021-06-17 05:09:38 +02:00
|
|
|
User,
|
|
|
|
Debug,
|
|
|
|
System,
|
2021-06-16 08:03:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class State : u32 {
|
2021-06-17 05:09:38 +02:00
|
|
|
NonInitialized,
|
|
|
|
Initialized,
|
2021-06-16 08:03:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class DeviceState : u32 {
|
2021-06-17 05:09:38 +02:00
|
|
|
Initialized,
|
|
|
|
SearchingForTag,
|
|
|
|
TagFound,
|
|
|
|
TagRemoved,
|
|
|
|
TagMounted,
|
|
|
|
Unaviable,
|
|
|
|
Finalized,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum class ModelType : u32 {
|
|
|
|
Amiibo,
|
2021-06-16 08:03:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class MountTarget : u32 {
|
2021-06-17 05:09:38 +02:00
|
|
|
Rom,
|
|
|
|
Ram,
|
|
|
|
All,
|
2021-06-16 08:03:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct TagInfo {
|
|
|
|
std::array<u8, 10> uuid;
|
|
|
|
u8 uuid_length;
|
|
|
|
INSERT_PADDING_BYTES(0x15);
|
2021-06-17 05:09:38 +02:00
|
|
|
u32 protocol;
|
|
|
|
u32 tag_type;
|
|
|
|
INSERT_PADDING_BYTES(0x30);
|
2021-06-16 08:03:56 +02:00
|
|
|
};
|
2021-06-17 05:09:38 +02:00
|
|
|
static_assert(sizeof(TagInfo) == 0x58, "TagInfo is an invalid size");
|
2021-06-16 08:03:56 +02:00
|
|
|
|
|
|
|
struct CommonInfo {
|
2021-06-17 05:09:38 +02:00
|
|
|
u16 last_write_year;
|
2021-06-16 08:03:56 +02:00
|
|
|
u8 last_write_month;
|
|
|
|
u8 last_write_day;
|
2021-06-17 05:09:38 +02:00
|
|
|
u16 write_counter;
|
|
|
|
u16 version;
|
|
|
|
u32 application_area_size;
|
2021-06-16 08:03:56 +02:00
|
|
|
INSERT_PADDING_BYTES(0x34);
|
|
|
|
};
|
|
|
|
static_assert(sizeof(CommonInfo) == 0x40, "CommonInfo is an invalid size");
|
|
|
|
|
|
|
|
struct ModelInfo {
|
2021-06-17 05:09:38 +02:00
|
|
|
u16 character_id;
|
|
|
|
u8 character_variant;
|
|
|
|
u8 figure_type;
|
|
|
|
u16 model_number;
|
|
|
|
u8 series;
|
|
|
|
INSERT_PADDING_BYTES(0x39);
|
2021-06-16 08:03:56 +02:00
|
|
|
};
|
|
|
|
static_assert(sizeof(ModelInfo) == 0x40, "ModelInfo is an invalid size");
|
|
|
|
|
|
|
|
struct RegisterInfo {
|
2021-06-17 05:09:38 +02:00
|
|
|
Service::Mii::MiiInfo mii_char_info;
|
|
|
|
u16 first_write_year;
|
2021-06-16 08:03:56 +02:00
|
|
|
u8 first_write_month;
|
|
|
|
u8 first_write_day;
|
|
|
|
std::array<u8, 11> amiibo_name;
|
2021-06-17 05:09:38 +02:00
|
|
|
u8 unknown;
|
|
|
|
INSERT_PADDING_BYTES(0x98);
|
|
|
|
};
|
|
|
|
static_assert(sizeof(RegisterInfo) == 0x100, "RegisterInfo is an invalid size");
|
|
|
|
|
|
|
|
class Module final {
|
|
|
|
public:
|
|
|
|
class Interface : public ServiceFramework<Interface> {
|
|
|
|
public:
|
|
|
|
explicit Interface(std::shared_ptr<Module> module_, Core::System& system_,
|
|
|
|
const char* name);
|
|
|
|
~Interface() override;
|
|
|
|
|
|
|
|
struct AmiiboFile {
|
|
|
|
std::array<u8, 10> uuid;
|
|
|
|
INSERT_PADDING_BYTES(0x4); // Compability container
|
|
|
|
INSERT_PADDING_BYTES(0x46);
|
|
|
|
ModelInfo model_info;
|
|
|
|
};
|
|
|
|
static_assert(sizeof(AmiiboFile) == 0x94, "AmiiboFile is an invalid size");
|
|
|
|
|
|
|
|
void CreateUserInterface(Kernel::HLERequestContext& ctx);
|
|
|
|
bool LoadAmiibo(const std::vector<u8>& buffer);
|
|
|
|
void CloseAmiibo();
|
|
|
|
|
|
|
|
void Initialize();
|
|
|
|
void Finalize();
|
|
|
|
|
|
|
|
ResultCode StartDetection();
|
|
|
|
ResultCode StopDetection();
|
|
|
|
ResultCode Mount();
|
|
|
|
ResultCode Unmount();
|
|
|
|
|
|
|
|
ResultCode GetTagInfo(TagInfo& tag_info) const;
|
|
|
|
ResultCode GetCommonInfo(CommonInfo& common_info) const;
|
|
|
|
ResultCode GetModelInfo(ModelInfo& model_info) const;
|
|
|
|
ResultCode GetRegisterInfo(RegisterInfo& register_info) const;
|
|
|
|
|
|
|
|
ResultCode OpenApplicationArea(u32 access_id);
|
|
|
|
ResultCode GetApplicationArea(std::vector<u8>& data) const;
|
|
|
|
ResultCode SetApplicationArea(const std::vector<u8>& data);
|
|
|
|
ResultCode CreateApplicationArea(u32 access_id, const std::vector<u8>& data);
|
|
|
|
|
|
|
|
u64 GetHandle() const;
|
|
|
|
DeviceState GetCurrentState() const;
|
|
|
|
Core::HID::NpadIdType GetNpadId() const;
|
|
|
|
|
|
|
|
Kernel::KReadableEvent& GetActivateEvent() const;
|
|
|
|
Kernel::KReadableEvent& GetDeactivateEvent() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::shared_ptr<Module> module;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Core::HID::NpadIdType npad_id;
|
|
|
|
|
|
|
|
DeviceState device_state{DeviceState::Unaviable};
|
|
|
|
KernelHelpers::ServiceContext service_context;
|
|
|
|
Kernel::KEvent* activate_event;
|
|
|
|
Kernel::KEvent* deactivate_event;
|
|
|
|
AmiiboFile amiibo{};
|
|
|
|
u16 write_counter{};
|
|
|
|
bool is_application_area_initialized{};
|
|
|
|
u32 application_area_id;
|
|
|
|
std::vector<u8> application_area_data;
|
|
|
|
};
|
2021-06-16 08:03:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class IUser final : public ServiceFramework<IUser> {
|
|
|
|
public:
|
|
|
|
explicit IUser(Module::Interface& nfp_interface_, Core::System& system_);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void Initialize(Kernel::HLERequestContext& ctx);
|
|
|
|
void Finalize(Kernel::HLERequestContext& ctx);
|
|
|
|
void ListDevices(Kernel::HLERequestContext& ctx);
|
|
|
|
void StartDetection(Kernel::HLERequestContext& ctx);
|
|
|
|
void StopDetection(Kernel::HLERequestContext& ctx);
|
|
|
|
void Mount(Kernel::HLERequestContext& ctx);
|
|
|
|
void Unmount(Kernel::HLERequestContext& ctx);
|
|
|
|
void OpenApplicationArea(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetApplicationArea(Kernel::HLERequestContext& ctx);
|
2021-06-17 05:09:38 +02:00
|
|
|
void SetApplicationArea(Kernel::HLERequestContext& ctx);
|
|
|
|
void CreateApplicationArea(Kernel::HLERequestContext& ctx);
|
2021-06-16 08:03:56 +02:00
|
|
|
void GetTagInfo(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetRegisterInfo(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetCommonInfo(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetModelInfo(Kernel::HLERequestContext& ctx);
|
|
|
|
void AttachActivateEvent(Kernel::HLERequestContext& ctx);
|
|
|
|
void AttachDeactivateEvent(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetState(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetDeviceState(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetNpadId(Kernel::HLERequestContext& ctx);
|
|
|
|
void GetApplicationAreaSize(Kernel::HLERequestContext& ctx);
|
|
|
|
void AttachAvailabilityChangeEvent(Kernel::HLERequestContext& ctx);
|
|
|
|
|
2021-06-17 05:09:38 +02:00
|
|
|
KernelHelpers::ServiceContext service_context;
|
2021-06-16 08:03:56 +02:00
|
|
|
|
2021-06-17 05:09:38 +02:00
|
|
|
// TODO(german77): We should have a vector of interfaces
|
|
|
|
Module::Interface& nfp_interface;
|
2021-09-29 05:42:50 +02:00
|
|
|
|
2021-06-17 05:09:38 +02:00
|
|
|
State state{State::NonInitialized};
|
|
|
|
Kernel::KEvent* availability_change_event;
|
2018-03-30 03:06:51 +02:00
|
|
|
};
|
|
|
|
|
2019-09-21 11:03:20 +02:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
|
2018-03-30 03:06:51 +02:00
|
|
|
|
2018-04-20 03:41:44 +02:00
|
|
|
} // namespace Service::NFP
|