mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:08:39 +00:00
4ad3936afd
* refactoring result codes - Add a main enum who can handle some orphalin result codes and the default `ResultCode.Success` one. - Add sub-enum by services when it's needed. - Remove some empty line. - Recast all service calls to ResultCode. - Remove some unneeded static declaration. - Delete unused `NvHelper` class. * NvResult is back * Fix
72 lines
1.9 KiB
C#
72 lines
1.9 KiB
C#
using Ryujinx.Common.Logging;
|
|
using Ryujinx.HLE.HOS.Ipc;
|
|
using Ryujinx.HLE.HOS.Kernel.Common;
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
using System;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Am
|
|
{
|
|
class ILibraryAppletAccessor : IpcService
|
|
{
|
|
private KEvent _stateChangedEvent;
|
|
|
|
public ILibraryAppletAccessor(Horizon system)
|
|
{
|
|
_stateChangedEvent = new KEvent(system);
|
|
}
|
|
|
|
[Command(0)]
|
|
// GetAppletStateChangedEvent() -> handle<copy>
|
|
public ResultCode GetAppletStateChangedEvent(ServiceCtx context)
|
|
{
|
|
_stateChangedEvent.ReadableEvent.Signal();
|
|
|
|
if (context.Process.HandleTable.GenerateHandle(_stateChangedEvent.ReadableEvent, out int handle) != KernelResult.Success)
|
|
{
|
|
throw new InvalidOperationException("Out of handles!");
|
|
}
|
|
|
|
context.Response.HandleDesc = IpcHandleDesc.MakeCopy(handle);
|
|
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(10)]
|
|
// Start()
|
|
public ResultCode Start(ServiceCtx context)
|
|
{
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(30)]
|
|
// GetResult()
|
|
public ResultCode GetResult(ServiceCtx context)
|
|
{
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(100)]
|
|
// PushInData(object<nn::am::service::IStorage>)
|
|
public ResultCode PushInData(ServiceCtx context)
|
|
{
|
|
Logger.PrintStub(LogClass.ServiceAm);
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
|
|
[Command(101)]
|
|
// PopOutData() -> object<nn::am::service::IStorage>
|
|
public ResultCode PopOutData(ServiceCtx context)
|
|
{
|
|
MakeObject(context, new IStorage(StorageHelper.MakeLaunchParams()));
|
|
|
|
return ResultCode.Success;
|
|
}
|
|
}
|
|
} |