-
Notifications
You must be signed in to change notification settings - Fork 1
/
ResultMessage.cs
254 lines (187 loc) · 5.25 KB
/
ResultMessage.cs
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
using System.Diagnostics;
using System.Text.Json;
using System.Text.Json.Serialization;
namespace ppsspp_api;
public class GameResultEventArgs : EventArgs
{
[JsonPropertyName("title")]
public string Title { get; set; }
[JsonPropertyName("id")]
public string Id { get; set; }
[JsonPropertyName("version")]
public string Version { get; set; }
}
[DebuggerDisplay($"{{{nameof(GetDebuggerDisplay)}(),nq}}")]
public record Endpoint(
[property: JsonPropertyName("ip")] string IpAddress,
[property: JsonPropertyName("p")] int Port,
[property: JsonPropertyName("t")] int Time
)
{
private string GetDebuggerDisplay()
{
return $"{IpAddress}:{Port} ({Time})";
}
}
public class ResultMessage : MessageEventArgs
{
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("version")]
public string Version { get; set; }
[JsonPropertyName("level")]
public Ppsspp.ErrorLevels Level { get; set; }
[JsonPropertyName("address")]
public uint? Address { get; set; }
[JsonPropertyName("size")]
public uint? Size { get; set; }
[JsonPropertyName("break")]
public bool? Break { get; set; }
[JsonPropertyName("enabled")]
public bool? Enabled { get; set; }
}
public class MessageEventArgs : EventArgs
{
[JsonPropertyName("event")]
public string Event { get; set; }
[JsonPropertyName("message")]
public string Message { get; set; }
[JsonPropertyName("ticket")]
public string Ticket { get; set; }
[JsonIgnore]
public JsonElement Data { get; set; }
}
public class MemoryReadResult : MessageEventArgs
{
[JsonPropertyName("base64")]
public string Base64 { get; set; }
[JsonIgnore]
public byte[] ByteArray => Convert.FromBase64String(Base64);
}
public class GameStatusResult : MessageEventArgs
{
[JsonPropertyName("game")]
public GameResultEventArgs? Game { get; set; }
[JsonPropertyName("paused")]
public bool Paused { get; set; }
}
public class VersionResult : MessageEventArgs
{
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("version")]
public string Version { get; set; }
}
public class HleFuncListResult : MessageEventArgs
{
[JsonPropertyName("functions")]
public Function[] Functions { get; set; }
}
public class Function
{
[JsonPropertyName("name")]
public string Name { get; set; }
[JsonPropertyName("address")]
public uint Address { get; set; }
[JsonPropertyName("size")]
public int Size { get; set; }
}
public class CpuSteppingResult : MessageEventArgs
{
[JsonPropertyName("pc")]
public int Pc { get; set; }
[JsonPropertyName("ticks")]
public ulong Ticks { get; set; }
[JsonPropertyName("reason")]
public string Reason { get; set; }
[JsonPropertyName("relatedAddress")]
public int RelatedAddress { get; set; }
}
public class CpuGetReg : MessageEventArgs
{
[JsonPropertyName("uintValue")]
public uint? UIntValue { get; set; }
[JsonPropertyName("category")]
public int Category { get; set; }
[JsonPropertyName("register")]
public int Register { get; set; }
[JsonPropertyName("floatValue")]
public string FloatValue { get; set; }
}
public class MemoryReadStringResult : MessageEventArgs
{
[JsonPropertyName("value")]
public string Value { get; set; }
}
public class CpuResumeResult : MessageEventArgs
{
}
public class InputAnalogResult : MessageEventArgs
{
[JsonPropertyName("stick")]
public string Stick { get; set; }
[JsonPropertyName("x")]
public int X { get; set; }
[JsonPropertyName("y")]
public int Y { get; set; }
}
public class InputButtonResult : MessageEventArgs
{
[JsonPropertyName("buttons")]
public Buttons Buttons { get; set; }
[JsonPropertyName("changed")]
public Buttons? Changed { get; set; }
}
public class Buttons
{
[JsonPropertyName("playpause")]
public bool PlayPause { get; set; }
[JsonPropertyName("forward")]
public bool Forward { get; set; }
[JsonPropertyName("vol_up")]
public bool VolumeUp { get; set; }
[JsonPropertyName("select")]
public bool Select { get; set; }
[JsonPropertyName("remote_hold")]
public bool RemoteHold { get; set; }
[JsonPropertyName("back")]
public bool Back { get; set; }
[JsonPropertyName("rtrigger")]
public bool RightTrigger { get; set; }
[JsonPropertyName("ltrigger")]
public bool LeftTrigger { get; set; }
[JsonPropertyName("memstick")]
public bool MemoryStick { get; set; }
[JsonPropertyName("triangle")]
public bool Triangle { get; set; }
[JsonPropertyName("screen")]
public bool Screen { get; set; }
[JsonPropertyName("circle")]
public bool Circle { get; set; }
[JsonPropertyName("start")]
public bool Start { get; set; }
[JsonPropertyName("disc")]
public bool Disc { get; set; }
[JsonPropertyName("right")]
public bool Right { get; set; }
[JsonPropertyName("hold")]
public bool Hold { get; set; }
[JsonPropertyName("left")]
public bool Left { get; set; }
[JsonPropertyName("home")]
public bool Home { get; set; }
[JsonPropertyName("vol_down")]
public bool VolumeDown { get; set; }
[JsonPropertyName("down")]
public bool Down { get; set; }
[JsonPropertyName("wlan")]
public bool Wlan { get; set; }
[JsonPropertyName("up")]
public bool Up { get; set; }
[JsonPropertyName("note")]
public bool Note { get; set; }
[JsonPropertyName("square")]
public bool Square { get; set; }
[JsonPropertyName("cross")]
public bool Cross { get; set; }
}