diff options
author | David <25727384+ogniK5377@users.noreply.github.com> | 2018-08-03 17:02:55 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-08-03 17:02:55 +0200 |
commit | c1d54f4aeaada515f88b633b8cf0901ee4cb6853 (patch) | |
tree | e320222f18419b07c22617f06980bc0b767e3db7 /src/core/hle/service/acc/acc.cpp | |
parent | Merge pull request #895 from lioncash/sink (diff) | |
download | yuzu-c1d54f4aeaada515f88b633b8cf0901ee4cb6853.tar yuzu-c1d54f4aeaada515f88b633b8cf0901ee4cb6853.tar.gz yuzu-c1d54f4aeaada515f88b633b8cf0901ee4cb6853.tar.bz2 yuzu-c1d54f4aeaada515f88b633b8cf0901ee4cb6853.tar.lz yuzu-c1d54f4aeaada515f88b633b8cf0901ee4cb6853.tar.xz yuzu-c1d54f4aeaada515f88b633b8cf0901ee4cb6853.tar.zst yuzu-c1d54f4aeaada515f88b633b8cf0901ee4cb6853.zip |
Diffstat (limited to 'src/core/hle/service/acc/acc.cpp')
-rw-r--r-- | src/core/hle/service/acc/acc.cpp | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp index 0b158e015..6d15b46ed 100644 --- a/src/core/hle/service/acc/acc.cpp +++ b/src/core/hle/service/acc/acc.cpp @@ -10,6 +10,7 @@ #include "core/hle/service/acc/acc_su.h" #include "core/hle/service/acc/acc_u0.h" #include "core/hle/service/acc/acc_u1.h" +#include "core/settings.h" namespace Service::Account { @@ -31,13 +32,14 @@ struct ProfileBase { }; static_assert(sizeof(ProfileBase) == 0x38, "ProfileBase structure has incorrect size"); +// TODO(ogniK): Generate a real user id based on username, md5(username) maybe? static constexpr u128 DEFAULT_USER_ID{1ull, 0ull}; class IProfile final : public ServiceFramework<IProfile> { public: explicit IProfile(u128 user_id) : ServiceFramework("IProfile"), user_id(user_id) { static const FunctionInfo functions[] = { - {0, nullptr, "Get"}, + {0, &IProfile::Get, "Get"}, {1, &IProfile::GetBase, "GetBase"}, {10, nullptr, "GetImageSize"}, {11, nullptr, "LoadImage"}, @@ -46,14 +48,36 @@ public: } private: + void Get(Kernel::HLERequestContext& ctx) { + LOG_WARNING(Service_ACC, "(STUBBED) called"); + ProfileBase profile_base{}; + profile_base.user_id = user_id; + if (Settings::values.username.size() > profile_base.username.size()) { + std::copy_n(Settings::values.username.begin(), profile_base.username.size(), + profile_base.username.begin()); + } else { + std::copy(Settings::values.username.begin(), Settings::values.username.end(), + profile_base.username.begin()); + } + + IPC::ResponseBuilder rb{ctx, 16}; + rb.Push(RESULT_SUCCESS); + rb.PushRaw(profile_base); + } + void GetBase(Kernel::HLERequestContext& ctx) { LOG_WARNING(Service_ACC, "(STUBBED) called"); // TODO(Subv): Retrieve this information from somewhere. ProfileBase profile_base{}; profile_base.user_id = user_id; - profile_base.username = {'y', 'u', 'z', 'u'}; - + if (Settings::values.username.size() > profile_base.username.size()) { + std::copy_n(Settings::values.username.begin(), profile_base.username.size(), + profile_base.username.begin()); + } else { + std::copy(Settings::values.username.begin(), Settings::values.username.end(), + profile_base.username.begin()); + } IPC::ResponseBuilder rb{ctx, 16}; rb.Push(RESULT_SUCCESS); rb.PushRaw(profile_base); |