-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Events.cs
238 lines (185 loc) · 5.37 KB
/
Events.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
using System.Text.Json.Serialization;
namespace MatchZy;
public class MatchZyEvent
{
public MatchZyEvent(string eventName)
{
EventName = eventName;
}
[JsonPropertyName("event")]
public string EventName { get; }
}
public class MatchZyMatchEvent : MatchZyEvent
{
[JsonPropertyName("matchid")]
public required long MatchId { get; init; }
protected MatchZyMatchEvent(string eventName) : base(eventName)
{
}
}
public class MatchZyMatchTeamEvent : MatchZyMatchEvent
{
[JsonPropertyName("team")]
public required string Team { get; init; }
protected MatchZyMatchTeamEvent(string eventName) : base(eventName)
{
}
}
public class MatchZyMapEvent : MatchZyMatchEvent
{
[JsonPropertyName("map_number")]
public required int MapNumber { get; init; }
protected MatchZyMapEvent(string eventName) : base(eventName)
{
}
}
public class MatchZyMapTeamEvent : MatchZyMapEvent
{
[JsonPropertyName("team_int")]
public required int TeamNumber { get; init; }
protected MatchZyMapTeamEvent(string eventName) : base(eventName)
{
}
}
public class MatchZyRoundEvent : MatchZyMapEvent
{
[JsonPropertyName("round_number")]
public required int RoundNumber { get; init; }
protected MatchZyRoundEvent(string eventName) : base(eventName)
{
}
}
public class MatchZyTimedRoundEvent : MatchZyRoundEvent
{
[JsonPropertyName("round_time")]
public required int RoundTime { get; init; }
protected MatchZyTimedRoundEvent(string eventName) : base(eventName)
{
}
}
public class MatchZyPlayerRoundEvent : MatchZyRoundEvent
{
[JsonPropertyName("player")]
public required int Player { get; init; }
protected MatchZyPlayerRoundEvent(string eventName) : base(eventName)
{
}
}
public class MatchZyPlayerTimedRoundEvent : MatchZyTimedRoundEvent
{
[JsonPropertyName("player")]
public required int Player { get; init; }
protected MatchZyPlayerTimedRoundEvent(string eventName) : base(eventName)
{
}
}
public class MatchZyPlayerDisconnectedEvent : MatchZyMatchEvent
{
[JsonPropertyName("player")]
public required int Player { get; init; }
public MatchZyPlayerDisconnectedEvent() : base("player_disconnect")
{
}
}
public class MatchZySeriesStartedEvent : MatchZyMatchEvent
{
[JsonPropertyName("team1")]
public required MatchZyTeamWrapper Team1 { get; init; }
[JsonPropertyName("team2")]
public required MatchZyTeamWrapper Team2 { get; init; }
[JsonPropertyName("num_maps")]
public required int NumberOfMaps { get; init; }
public MatchZySeriesStartedEvent() : base("series_start")
{
}
}
public class MatchZySeriesResultEvent : MatchZyMatchEvent
{
[JsonPropertyName("time_until_restore")]
public required int TimeUntilRestore { get; init; }
[JsonPropertyName("winner")]
public required Winner Winner { get; init; }
[JsonPropertyName("team1_series_score")]
public required int Team1SeriesScore { get; init; }
[JsonPropertyName("team2_series_score")]
public required int Team2SeriesScore { get; init; }
public MatchZySeriesResultEvent() : base("series_end")
{
}
}
public class GoingLiveEvent : MatchZyMapEvent
{
public GoingLiveEvent() : base("going_live")
{
}
}
public class MatchZyRoundEndedEvent : MatchZyTimedRoundEvent
{
[JsonPropertyName("reason")]
public required int Reason { get; init; }
[JsonPropertyName("winner")]
public required Winner Winner { get; init; }
[JsonPropertyName("team1")]
public required MatchZyStatsTeam StatsTeam1 { get; init; }
[JsonPropertyName("team2")]
public required MatchZyStatsTeam StatsTeam2 { get; init; }
public MatchZyRoundEndedEvent() : base("round_end")
{
}
}
public class MapResultEvent : MatchZyMapEvent
{
[JsonPropertyName("winner")]
public required Winner Winner { get; init; }
[JsonPropertyName("team1")]
public required MatchZyStatsTeam StatsTeam1 { get; init; }
[JsonPropertyName("team2")]
public required MatchZyStatsTeam StatsTeam2 { get; init; }
public MapResultEvent() : base("map_result")
{
}
}
public class MatchZyMapSelectionEvent : MatchZyMatchTeamEvent
{
[JsonPropertyName("map_name")]
public required string MapName { get; init; }
protected MatchZyMapSelectionEvent(string eventName) : base(eventName)
{
}
}
public class MatchZyMapPickedEvent : MatchZyMapSelectionEvent
{
[JsonPropertyName("map_number")]
public required int MapNumber { get; init; }
public MatchZyMapPickedEvent() : base("map_picked")
{
}
}
public class MatchZyMapVetoedEvent : MatchZyMapSelectionEvent
{
public MatchZyMapVetoedEvent() : base("map_vetoed")
{
}
}
public class MatchZySidePickedEvent : MatchZyMapSelectionEvent
{
[JsonPropertyName("map_number")]
public required int MapNumber { get; init; }
[JsonPropertyName("side")]
public required string Side { get; init; }
public MatchZySidePickedEvent() : base("side_picked")
{
}
}
public class MatchZyDemoUploadedEvent : MatchZyMatchEvent
{
[JsonPropertyName("map_number")]
public required int MapNumber { get; init; }
[JsonPropertyName("filename")]
public required string FileName { get; init; }
[JsonPropertyName("success")]
public bool Success { get; set; }
public MatchZyDemoUploadedEvent() : base("demo_upload_ended")
{
}
}