summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/cabinet.h
blob: 1c68bf57d395a030b80fa4cf0a598c3ad2f49f3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

#pragma once

#include <functional>
#include "core/hle/service/nfp/nfp_types.h"

namespace Service::NFP {
class NfpDevice;
} // namespace Service::NFP

namespace Core::Frontend {

struct CabinetParameters {
    Service::NFP::TagInfo tag_info;
    Service::NFP::RegisterInfo register_info;
    Service::NFP::CabinetMode mode;
};

class CabinetApplet {
public:
    virtual ~CabinetApplet();
    virtual void ShowCabinetApplet(std::function<void(bool, const std::string&)> callback,
                                   const CabinetParameters& parameters,
                                   std::shared_ptr<Service::NFP::NfpDevice> nfp_device) const = 0;
};

class DefaultCabinetApplet final : public CabinetApplet {
public:
    void ShowCabinetApplet(std::function<void(bool, const std::string&)> callback,
                           const CabinetParameters& parameters,
                           std::shared_ptr<Service::NFP::NfpDevice> nfp_device) const override;
};

} // namespace Core::Frontend