68 lines
2.3 KiB
C#
68 lines
2.3 KiB
C#
using MareSynchronos.Services.Mediator;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace MareSynchronos.Interop.Ipc;
|
|
|
|
public sealed partial class IpcManager : DisposableMediatorSubscriberBase
|
|
{
|
|
public IpcManager(ILogger<IpcManager> logger, MareMediator mediator,
|
|
IpcCallerPenumbra penumbraIpc, IpcCallerGlamourer glamourerIpc, IpcCallerCustomize customizeIpc, IpcCallerHeels heelsIpc,
|
|
IpcCallerHonorific honorificIpc, IpcCallerMoodles moodlesIpc, IpcCallerPetNames ipcCallerPetNames, IpcCallerBrio ipcCallerBrio) : base(logger, mediator)
|
|
{
|
|
CustomizePlus = customizeIpc;
|
|
Heels = heelsIpc;
|
|
Glamourer = glamourerIpc;
|
|
Penumbra = penumbraIpc;
|
|
Honorific = honorificIpc;
|
|
Moodles = moodlesIpc;
|
|
PetNames = ipcCallerPetNames;
|
|
Brio = ipcCallerBrio;
|
|
|
|
if (Initialized)
|
|
{
|
|
Mediator.Publish(new PenumbraInitializedMessage());
|
|
}
|
|
|
|
Mediator.Subscribe<DelayedFrameworkUpdateMessage>(this, (_) => PeriodicApiStateCheck());
|
|
|
|
try
|
|
{
|
|
PeriodicApiStateCheck();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
logger.LogWarning(ex, "Failed to check for some IPC, plugin not installed?");
|
|
}
|
|
}
|
|
|
|
public bool Initialized => Penumbra.APIAvailable && Glamourer.APIAvailable;
|
|
|
|
public IpcCallerCustomize CustomizePlus { get; init; }
|
|
public IpcCallerHonorific Honorific { get; init; }
|
|
public IpcCallerHeels Heels { get; init; }
|
|
public IpcCallerGlamourer Glamourer { get; }
|
|
public IpcCallerPenumbra Penumbra { get; }
|
|
public IpcCallerMoodles Moodles { get; }
|
|
public IpcCallerPetNames PetNames { get; }
|
|
|
|
public IpcCallerBrio Brio { get; }
|
|
|
|
private int _stateCheckCounter = -1;
|
|
|
|
private void PeriodicApiStateCheck()
|
|
{
|
|
// Stagger API checks
|
|
if (++_stateCheckCounter > 8)
|
|
_stateCheckCounter = 0;
|
|
int i = _stateCheckCounter;
|
|
if (i == 0) Penumbra.CheckAPI();
|
|
if (i == 1) Penumbra.CheckModDirectory();
|
|
if (i == 2) Glamourer.CheckAPI();
|
|
if (i == 3) Heels.CheckAPI();
|
|
if (i == 4) CustomizePlus.CheckAPI();
|
|
if (i == 5) Honorific.CheckAPI();
|
|
if (i == 6) Moodles.CheckAPI();
|
|
if (i == 7) PetNames.CheckAPI();
|
|
if (i == 8) Brio.CheckAPI();
|
|
}
|
|
} |