aca1c37d4b
This PR add all known AppletMessage values for accuracy, nothing more. `MessageInfo` is renamed to the right `AppletMessage` name.
39 lines
No EOL
1.1 KiB
C#
39 lines
No EOL
1.1 KiB
C#
using Ryujinx.HLE.HOS.Kernel.Threading;
|
|
using Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy;
|
|
using System.Collections.Concurrent;
|
|
|
|
namespace Ryujinx.HLE.HOS.SystemState
|
|
{
|
|
class AppletStateMgr
|
|
{
|
|
public ConcurrentQueue<AppletMessage> Messages { get; }
|
|
|
|
public FocusState FocusState { get; private set; }
|
|
|
|
public KEvent MessageEvent { get; }
|
|
|
|
public IdDictionary AppletResourceUserIds { get; }
|
|
|
|
public AppletStateMgr(Horizon system)
|
|
{
|
|
Messages = new ConcurrentQueue<AppletMessage>();
|
|
MessageEvent = new KEvent(system.KernelContext);
|
|
|
|
AppletResourceUserIds = new IdDictionary();
|
|
}
|
|
|
|
public void SetFocus(bool isFocused)
|
|
{
|
|
FocusState = isFocused ? FocusState.InFocus : FocusState.OutOfFocus;
|
|
|
|
Messages.Enqueue(AppletMessage.FocusStateChanged);
|
|
|
|
if (isFocused)
|
|
{
|
|
Messages.Enqueue(AppletMessage.ChangeIntoForeground);
|
|
}
|
|
|
|
MessageEvent.ReadableEvent.Signal();
|
|
}
|
|
}
|
|
} |