summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/profile_manager.cpp
blob: 8e7d7194c499813654f002b1117b8e1c223d6608 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
#include "core/settings.h"
#include "profile_manager.h"

namespace Service::Account {
// TODO(ogniK): Get actual error codes
constexpr ResultCode ERROR_TOO_MANY_USERS(ErrorModule::Account, -1);
constexpr ResultCode ERROR_USER_ALREADY_EXISTS(ErrorModule::Account, -2);
constexpr ResultCode ERROR_ARGUMENT_IS_NULL(ErrorModule::Account, 20);

ProfileManager::ProfileManager() {
    auto user_uuid = UUID{1, 0};
    CreateNewUser(user_uuid, Settings::values.username);
    OpenUser(user_uuid);
}

size_t ProfileManager::AddToProfiles(const ProfileInfo& user) {
    if (user_count >= MAX_USERS) {
        return -1;
    }
    profiles[user_count] = std::move(user);
    return user_count++;
}

bool ProfileManager::RemoveProfileAtIdx(size_t index) {
    if (index >= MAX_USERS || index < 0 || index >= user_count)
        return false;
    profiles[index] = ProfileInfo{};
    if (index < user_count - 1)
        for (size_t i = index; i < user_count - 1; i++)
            profiles[i] = profiles[i + 1]; // Shift upper profiles down
    user_count--;
    return true;
}

ResultCode ProfileManager::AddUser(ProfileInfo user) {
    if (AddToProfiles(user) == -1) {
        return ERROR_TOO_MANY_USERS;
    }
    return RESULT_SUCCESS;
}

ResultCode ProfileManager::CreateNewUser(UUID uuid, std::array<u8, 0x20> username) {
    if (user_count == MAX_USERS)
        return ERROR_TOO_MANY_USERS;
    if (!uuid)
        return ERROR_ARGUMENT_IS_NULL;
    if (username[0] == 0x0)
        return ERROR_ARGUMENT_IS_NULL;
    for (unsigned i = 0; i < user_count; i++)
        if (uuid == profiles[i].user_uuid)
            return ERROR_USER_ALREADY_EXISTS;
    ProfileInfo prof_inf;
    prof_inf.user_uuid = std::move(uuid);
    prof_inf.username = std::move(username);
    prof_inf.data = std::array<u8, MAX_DATA>();
    prof_inf.creation_time = 0x0;
    prof_inf.is_open = false;
    return AddUser(prof_inf);
}

ResultCode ProfileManager::CreateNewUser(UUID uuid, std::string username) {
    std::array<u8, 0x20> username_output;
    if (username.size() > username_output.size())
        std::copy_n(username.begin(), username_output.size(), username_output.begin());
    else
        std::copy(username.begin(), username.end(), username_output.begin());
    return CreateNewUser(uuid, std::move(username_output));
}

size_t ProfileManager::GetUserIndex(UUID uuid) {
    if (!uuid)
        return -1;
    for (unsigned i = 0; i < user_count; i++)
        if (profiles[i].user_uuid == uuid)
            return i;
    return -1;
}

size_t ProfileManager::GetUserIndex(ProfileInfo user) {
    return GetUserIndex(user.user_uuid);
}

bool ProfileManager::GetProfileBase(size_t index, ProfileBase& profile) {
    if (index >= MAX_USERS) {
        profile.Invalidate();
        return false;
    }
    auto prof_info = profiles[index];
    profile.user_uuid = prof_info.user_uuid;
    profile.username = prof_info.username;
    profile.timestamp = prof_info.creation_time;
    return true;
}

bool ProfileManager::GetProfileBase(UUID uuid, ProfileBase& profile) {
    auto idx = GetUserIndex(uuid);
    return GetProfileBase(idx, profile);
}

bool ProfileManager::GetProfileBase(ProfileInfo user, ProfileBase& profile) {
    return GetProfileBase(user.user_uuid, profile);
}

size_t ProfileManager::GetUserCount() {
    return user_count;
}

bool ProfileManager::UserExists(UUID uuid) {
    return (GetUserIndex(uuid) != -1);
}

void ProfileManager::OpenUser(UUID uuid) {
    auto idx = GetUserIndex(uuid);
    if (idx == -1)
        return;
    profiles[idx].is_open = true;
    last_openned_user = uuid;
}

void ProfileManager::CloseUser(UUID uuid) {
    auto idx = GetUserIndex(uuid);
    if (idx == -1)
        return;
    profiles[idx].is_open = false;
}

std::array<UUID, MAX_USERS> ProfileManager::GetAllUsers() {
    std::array<UUID, MAX_USERS> output;
    for (unsigned i = 0; i < user_count; i++) {
        output[i] = profiles[i].user_uuid;
    }
    return output;
}

std::array<UUID, MAX_USERS> ProfileManager::GetOpenUsers() {
    std::array<UUID, MAX_USERS> output;
    unsigned user_idx = 0;
    for (unsigned i = 0; i < user_count; i++) {
        if (profiles[i].is_open) {
            output[i++] = profiles[i].user_uuid;
        }
    }
    return output;
}

const UUID& ProfileManager::GetLastOpennedUser() {
    return last_openned_user;
}

bool ProfileManager::GetProfileBaseAndData(size_t index, ProfileBase& profile,
                                           std::array<u8, MAX_DATA>& data) {
    if (GetProfileBase(index, profile)) {
        std::memcpy(data.data(), profiles[index].data.data(), MAX_DATA);
        return true;
    }
    return false;
}
bool ProfileManager::GetProfileBaseAndData(UUID uuid, ProfileBase& profile,
                                           std::array<u8, MAX_DATA>& data) {
    auto idx = GetUserIndex(uuid);
    return GetProfileBaseAndData(idx, profile, data);
}

bool ProfileManager::GetProfileBaseAndData(ProfileInfo user, ProfileBase& profile,
                                           std::array<u8, MAX_DATA>& data) {
    return GetProfileBaseAndData(user.user_uuid, profile, data);
}

bool ProfileManager::CanSystemRegisterUser() {
    return false; // TODO(ogniK): Games shouldn't have
                  // access to user registration, when we
    // emulate qlaunch. Update this to dynamically change.
}

}; // namespace Service::Account