aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Olsc
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /src/Ryujinx.HLE/HOS/Services/Olsc
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Olsc')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs90
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForSystemService.cs8
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Olsc/ResultCode.cs13
3 files changed, 111 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs b/src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs
new file mode 100644
index 00000000..89fe0c3a
--- /dev/null
+++ b/src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForApplication.cs
@@ -0,0 +1,90 @@
+using Ryujinx.Common;
+using Ryujinx.Common.Logging;
+using Ryujinx.HLE.HOS.Services.Account.Acc;
+using System.Collections.Generic;
+
+namespace Ryujinx.HLE.HOS.Services.Olsc
+{
+ [Service("olsc:u")] // 10.0.0+
+ class IOlscServiceForApplication : IpcService
+ {
+ private bool _initialized;
+ private Dictionary<UserId, bool> _saveDataBackupSettingDatabase;
+
+ public IOlscServiceForApplication(ServiceCtx context) { }
+
+ [CommandCmif(0)]
+ // Initialize(pid)
+ public ResultCode Initialize(ServiceCtx context)
+ {
+ // NOTE: Service call arp:r GetApplicationInstanceUnregistrationNotifier with the pid and initialize some internal struct.
+ // Since we will not support online savedata backup, it's fine to stub it for now.
+
+ _saveDataBackupSettingDatabase = new Dictionary<UserId, bool>();
+
+ _initialized = true;
+
+ Logger.Stub?.PrintStub(LogClass.ServiceOlsc);
+
+ return ResultCode.Success;
+ }
+
+ [CommandCmif(13)]
+ // GetSaveDataBackupSetting(nn::account::Uid) -> u8
+ public ResultCode GetSaveDataBackupSetting(ServiceCtx context)
+ {
+ UserId userId = context.RequestData.ReadStruct<UserId>();
+
+ if (!_initialized)
+ {
+ return ResultCode.NotInitialized;
+ }
+
+ if (userId.IsNull)
+ {
+ return ResultCode.NullArgument;
+ }
+
+ if (_saveDataBackupSettingDatabase.TryGetValue(userId, out bool enabled) && enabled)
+ {
+ context.ResponseData.Write((byte)1); // TODO: Determine value.
+ }
+ else
+ {
+ context.ResponseData.Write((byte)2); // TODO: Determine value.
+ }
+
+ // NOTE: Since we will not support online savedata backup, it's fine to stub it for now.
+
+ Logger.Stub?.PrintStub(LogClass.ServiceOlsc, new { userId });
+
+ return ResultCode.Success;
+ }
+
+ [CommandCmif(14)]
+ // SetSaveDataBackupSettingEnabled(nn::account::Uid, bool)
+ public ResultCode SetSaveDataBackupSettingEnabled(ServiceCtx context)
+ {
+ bool saveDataBackupSettingEnabled = context.RequestData.ReadUInt64() != 0;
+ UserId userId = context.RequestData.ReadStruct<UserId>();
+
+ if (!_initialized)
+ {
+ return ResultCode.NotInitialized;
+ }
+
+ if (userId.IsNull)
+ {
+ return ResultCode.NullArgument;
+ }
+
+ _saveDataBackupSettingDatabase[userId] = saveDataBackupSettingEnabled;
+
+ // NOTE: Since we will not support online savedata backup, it's fine to stub it for now.
+
+ Logger.Stub?.PrintStub(LogClass.ServiceOlsc, new { userId, saveDataBackupSettingEnabled });
+
+ return ResultCode.Success;
+ }
+ }
+} \ No newline at end of file
diff --git a/src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForSystemService.cs b/src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForSystemService.cs
new file mode 100644
index 00000000..52f74da9
--- /dev/null
+++ b/src/Ryujinx.HLE/HOS/Services/Olsc/IOlscServiceForSystemService.cs
@@ -0,0 +1,8 @@
+namespace Ryujinx.HLE.HOS.Services.Olsc
+{
+ [Service("olsc:s")] // 4.0.0+
+ class IOlscServiceForSystemService : IpcService
+ {
+ public IOlscServiceForSystemService(ServiceCtx context) { }
+ }
+} \ No newline at end of file
diff --git a/src/Ryujinx.HLE/HOS/Services/Olsc/ResultCode.cs b/src/Ryujinx.HLE/HOS/Services/Olsc/ResultCode.cs
new file mode 100644
index 00000000..141d1ae9
--- /dev/null
+++ b/src/Ryujinx.HLE/HOS/Services/Olsc/ResultCode.cs
@@ -0,0 +1,13 @@
+namespace Ryujinx.HLE.HOS.Services.Olsc
+{
+ enum ResultCode
+ {
+ ModuleId = 179,
+ ErrorCodeShift = 9,
+
+ Success = 0,
+
+ NullArgument = (100 << ErrorCodeShift) | ModuleId,
+ NotInitialized = (101 << ErrorCodeShift) | ModuleId
+ }
+}