49 lines
1.6 KiB
C#
49 lines
1.6 KiB
C#
using Ryujinx.Horizon.Ovln.Ipc;
|
|
using Ryujinx.Horizon.Sdk.Sf.Hipc;
|
|
using Ryujinx.Horizon.Sdk.Sm;
|
|
|
|
namespace Ryujinx.Horizon.Ovln
|
|
{
|
|
class OvlnIpcServer
|
|
{
|
|
private const int OvlnRcvMaxSessionsCount = 2;
|
|
private const int OvlnSndMaxSessionsCount = 20;
|
|
private const int TotalMaxSessionsCount = OvlnRcvMaxSessionsCount + OvlnSndMaxSessionsCount;
|
|
|
|
private const int PointerBufferSize = 0;
|
|
private const int MaxDomains = 21;
|
|
private const int MaxDomainObjects = 60;
|
|
private const int MaxPortsCount = 2;
|
|
|
|
private static readonly ManagerOptions _options = new(PointerBufferSize, MaxDomains, MaxDomainObjects, false);
|
|
|
|
private SmApi _sm;
|
|
private ServerManager _serverManager;
|
|
|
|
public void Initialize()
|
|
{
|
|
HeapAllocator allocator = new();
|
|
|
|
_sm = new SmApi();
|
|
_sm.Initialize().AbortOnFailure();
|
|
|
|
_serverManager = new ServerManager(allocator, _sm, MaxPortsCount, _options, TotalMaxSessionsCount);
|
|
|
|
#pragma warning disable IDE0055 // Disable formatting
|
|
_serverManager.RegisterObjectForServer(new ReceiverService(), ServiceName.Encode("ovln:rcv"), OvlnRcvMaxSessionsCount); // 8.0.0+
|
|
_serverManager.RegisterObjectForServer(new SenderService(), ServiceName.Encode("ovln:snd"), OvlnSndMaxSessionsCount); // 8.0.0+
|
|
#pragma warning restore IDE0055
|
|
}
|
|
|
|
public void ServiceRequests()
|
|
{
|
|
_serverManager.ServiceRequests();
|
|
}
|
|
|
|
public void Shutdown()
|
|
{
|
|
_serverManager.Dispose();
|
|
}
|
|
}
|
|
}
|