2018-12-17 21:33:36 -08:00
|
|
|
using Ryujinx.HLE.HOS.Kernel.Threading;
|
2019-09-18 17:45:11 -07:00
|
|
|
using Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.SystemAppletProxy;
|
2018-03-19 11:58:46 -07:00
|
|
|
using System.Collections.Concurrent;
|
|
|
|
|
2018-08-16 16:47:36 -07:00
|
|
|
namespace Ryujinx.HLE.HOS.SystemState
|
2018-03-19 11:58:46 -07:00
|
|
|
{
|
2018-09-18 16:36:43 -07:00
|
|
|
class AppletStateMgr
|
2018-03-19 11:58:46 -07:00
|
|
|
{
|
2021-06-21 09:41:37 -07:00
|
|
|
public ConcurrentQueue<AppletMessage> Messages { get; }
|
2018-03-19 11:58:46 -07:00
|
|
|
|
|
|
|
public FocusState FocusState { get; private set; }
|
|
|
|
|
2020-12-01 15:23:43 -08:00
|
|
|
public KEvent MessageEvent { get; }
|
|
|
|
|
|
|
|
public IdDictionary AppletResourceUserIds { get; }
|
2018-03-19 11:58:46 -07:00
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
public AppletStateMgr(Horizon system)
|
2018-03-19 11:58:46 -07:00
|
|
|
{
|
2021-06-21 09:41:37 -07:00
|
|
|
Messages = new ConcurrentQueue<AppletMessage>();
|
2020-05-03 20:41:29 -07:00
|
|
|
MessageEvent = new KEvent(system.KernelContext);
|
2020-12-01 15:23:43 -08:00
|
|
|
|
|
|
|
AppletResourceUserIds = new IdDictionary();
|
2018-03-19 11:58:46 -07:00
|
|
|
}
|
|
|
|
|
2018-12-06 03:16:24 -08:00
|
|
|
public void SetFocus(bool isFocused)
|
2018-03-19 11:58:46 -07:00
|
|
|
{
|
2020-12-15 16:41:42 -08:00
|
|
|
FocusState = isFocused ? FocusState.InFocus : FocusState.OutOfFocus;
|
2018-03-19 11:58:46 -07:00
|
|
|
|
2021-06-21 09:41:37 -07:00
|
|
|
Messages.Enqueue(AppletMessage.FocusStateChanged);
|
|
|
|
|
|
|
|
if (isFocused)
|
|
|
|
{
|
|
|
|
Messages.Enqueue(AppletMessage.ChangeIntoForeground);
|
|
|
|
}
|
|
|
|
|
2018-09-23 11:11:46 -07:00
|
|
|
MessageEvent.ReadableEvent.Signal();
|
2018-03-19 11:58:46 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|