summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/glue/manager.h
blob: 561ebf4e061355a65c5de9b680057bd4eaa5a9cf (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
37
38
39
40
41
42
43
44
45
46
// Copyright 2019 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include "core/file_sys/control_metadata.h"
#include "core/file_sys/romfs_factory.h"
#include "core/hle/result.h"

namespace Service::Glue {

struct ApplicationLaunchProperty {
    u64 title_id;
    u32 version;
    FileSys::StorageId base_game_storage_id;
    FileSys::StorageId update_storage_id;
    INSERT_PADDING_BYTES(0x2);
};
static_assert(sizeof(ApplicationLaunchProperty) == 0x10,
              "ApplicationLaunchProperty has incorrect size.");

class ARPManager {
public:
    ARPManager();
    ~ARPManager();

    ResultVal<ApplicationLaunchProperty> GetLaunchProperty(u64 title_id) const;
    ResultVal<std::vector<u8>> GetControlProperty(u64 title_id) const;

    ResultCode Register(u64 title_id, ApplicationLaunchProperty launch, std::vector<u8> control);

    ResultCode Unregister(u64 title_id);

    void ResetAll();

private:
    struct MapEntry {
        ApplicationLaunchProperty launch;
        std::vector<u8> control;
    };

    std::map<u64, MapEntry> entries;
};

} // namespace Service::Glue