aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Am/IApplicationFunctions.cs
blob: 1934798b2dc9491ed00c8695c58da6902031f62b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
using Ryujinx.Common.Logging;
using Ryujinx.HLE.HOS.Ipc;
using System.Collections.Generic;

namespace Ryujinx.HLE.HOS.Services.Am
{
    class IApplicationFunctions : IpcService
    {
        private Dictionary<int, ServiceProcessRequest> m_Commands;

        public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;

        public IApplicationFunctions()
        {
            m_Commands = new Dictionary<int, ServiceProcessRequest>()
            {
                { 1,  PopLaunchParameter          },
                { 20, EnsureSaveData              },
                { 21, GetDesiredLanguage          },
                { 22, SetTerminateResult          },
                { 23, GetDisplayVersion           },
                { 40, NotifyRunning               },
                { 50, GetPseudoDeviceId           },
                { 66, InitializeGamePlayRecording },
                { 67, SetGamePlayRecordingState   }
            };
        }

        public long PopLaunchParameter(ServiceCtx Context)
        {
            //Only the first 0x18 bytes of the Data seems to be actually used.
            MakeObject(Context, new IStorage(StorageHelper.MakeLaunchParams()));

            return 0;
        }

        public long EnsureSaveData(ServiceCtx Context)
        {
            long UIdLow  = Context.RequestData.ReadInt64();
            long UIdHigh = Context.RequestData.ReadInt64();

            Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");

            Context.ResponseData.Write(0L);

            return 0;
        }

        public long GetDesiredLanguage(ServiceCtx Context)
        {
            Context.ResponseData.Write(Context.Device.System.State.DesiredLanguageCode);

            return 0;
        }

        public long SetTerminateResult(ServiceCtx Context)
        {
            int ErrorCode = Context.RequestData.ReadInt32();

            string Result = GetFormattedErrorCode(ErrorCode);

            Logger.PrintInfo(LogClass.ServiceAm, $"Result = 0x{ErrorCode:x8} ({Result}).");

            return 0;
        }

        private string GetFormattedErrorCode(int ErrorCode)
        {
            int Module      = (ErrorCode >> 0) & 0x1ff;
            int Description = (ErrorCode >> 9) & 0x1fff;

            return $"{(2000 + Module):d4}-{Description:d4}";
        }

        public long GetDisplayVersion(ServiceCtx Context)
        {
            //FIXME: Need to check correct version on a switch.
            Context.ResponseData.Write(1L);
            Context.ResponseData.Write(0L);

            return 0;
        }

        public long NotifyRunning(ServiceCtx Context)
        {
            Context.ResponseData.Write(1);

            return 0;
        }

        public long GetPseudoDeviceId(ServiceCtx Context)
        {
            Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");

            Context.ResponseData.Write(0L);
            Context.ResponseData.Write(0L);

            return 0;
        }

        public long InitializeGamePlayRecording(ServiceCtx Context)
        {
            Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");

            return 0;
        }

        public long SetGamePlayRecordingState(ServiceCtx Context)
        {
            int State = Context.RequestData.ReadInt32();

            Logger.PrintStub(LogClass.ServiceAm, "Stubbed.");

            return 0;
        }
    }
}