2019-10-17 08:17:44 +02:00
|
|
|
|
using LibHac;
|
2021-12-23 17:55:50 +01:00
|
|
|
|
using LibHac.Common;
|
2022-02-27 00:52:25 +01:00
|
|
|
|
using LibHac.Fs;
|
2019-10-17 08:17:44 +02:00
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Fs
|
|
|
|
|
{
|
2021-08-12 23:56:24 +02:00
|
|
|
|
class IDeviceOperator : DisposableIpcService
|
2019-10-17 08:17:44 +02:00
|
|
|
|
{
|
2021-12-23 17:55:50 +01:00
|
|
|
|
private SharedRef<LibHac.FsSrv.Sf.IDeviceOperator> _baseOperator;
|
2019-10-17 08:17:44 +02:00
|
|
|
|
|
2021-12-23 17:55:50 +01:00
|
|
|
|
public IDeviceOperator(ref SharedRef<LibHac.FsSrv.Sf.IDeviceOperator> baseOperator)
|
2019-10-17 08:17:44 +02:00
|
|
|
|
{
|
2021-12-23 17:55:50 +01:00
|
|
|
|
_baseOperator = SharedRef<LibHac.FsSrv.Sf.IDeviceOperator>.CreateMove(ref baseOperator);
|
2019-10-17 08:17:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(0)]
|
2020-03-03 15:07:06 +01:00
|
|
|
|
// IsSdCardInserted() -> b8 is_inserted
|
|
|
|
|
public ResultCode IsSdCardInserted(ServiceCtx context)
|
|
|
|
|
{
|
2021-12-23 17:55:50 +01:00
|
|
|
|
Result result = _baseOperator.Get.IsSdCardInserted(out bool isInserted);
|
2020-03-03 15:07:06 +01:00
|
|
|
|
|
|
|
|
|
context.ResponseData.Write(isInserted);
|
|
|
|
|
|
|
|
|
|
return (ResultCode)result.Value;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(200)]
|
2019-10-17 08:17:44 +02:00
|
|
|
|
// IsGameCardInserted() -> b8 is_inserted
|
|
|
|
|
public ResultCode IsGameCardInserted(ServiceCtx context)
|
|
|
|
|
{
|
2021-12-23 17:55:50 +01:00
|
|
|
|
Result result = _baseOperator.Get.IsGameCardInserted(out bool isInserted);
|
2019-10-17 08:17:44 +02:00
|
|
|
|
|
|
|
|
|
context.ResponseData.Write(isInserted);
|
|
|
|
|
|
|
|
|
|
return (ResultCode)result.Value;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
|
[CommandHipc(202)]
|
2019-10-17 08:17:44 +02:00
|
|
|
|
// GetGameCardHandle() -> u32 gamecard_handle
|
|
|
|
|
public ResultCode GetGameCardHandle(ServiceCtx context)
|
|
|
|
|
{
|
2021-12-23 17:55:50 +01:00
|
|
|
|
Result result = _baseOperator.Get.GetGameCardHandle(out GameCardHandle handle);
|
2019-10-17 08:17:44 +02:00
|
|
|
|
|
|
|
|
|
context.ResponseData.Write(handle.Value);
|
|
|
|
|
|
|
|
|
|
return (ResultCode)result.Value;
|
|
|
|
|
}
|
2021-08-12 23:56:24 +02:00
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
if (isDisposing)
|
|
|
|
|
{
|
2021-12-23 17:55:50 +01:00
|
|
|
|
_baseOperator.Destroy();
|
2021-08-12 23:56:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-10-17 08:17:44 +02:00
|
|
|
|
}
|
|
|
|
|
}
|