8
8
using System ;
9
9
using System . Collections . Generic ;
10
10
using System . IO ;
11
- using static OsuRTDataProvider . Listen . OsuListenerManager ;
12
11
13
12
namespace OsuDataDistributeRestful . Api
14
13
{
@@ -46,30 +45,29 @@ public object GetGameMode()
46
45
return new { gameMode = mode , gameModeText = mode . ToString ( ) } ;
47
46
}
48
47
49
-
50
48
[ Route ( "/isTournetMode" ) ]
51
- public object GetTourneyMode ( )
49
+ public object GetTourneyMode ( )
52
50
=> new { value = ortdp . TourneyListenerManagers != null } ;
53
51
54
52
[ Route ( "/tournetModeListenCount" ) ]
55
- public object GetTournetModeListenCount ( )
53
+ public object GetTournetModeListenCount ( )
56
54
=> new { count = ortdp . TourneyListenerManagersCount } ;
57
55
58
56
#region Beatmap
59
57
60
58
[ Route ( "/beatmap/info" ) ]
61
- public object GetBeatmapInfo ( ) =>
59
+ public object GetBeatmapInfo ( ) =>
62
60
MakeBeatmap ( ortdp . ListenerManager . GetCurrentData ( ProvideDataMask . Beatmap ) . Beatmap ) ;
63
61
64
62
[ Route ( "/beatmap" ) ]
65
63
public object GetBeatmap ( )
66
64
{
67
65
var beatmap = ortdp . ListenerManager . GetCurrentData ( ProvideDataMask . Beatmap ) . Beatmap ;
68
66
69
- if ( File . Exists ( beatmap . FilenameFull ) )
67
+ if ( File . Exists ( beatmap . FilenameFull ) )
70
68
return new ActionResult ( File . OpenRead ( beatmap . FilenameFull ) ) { ContentType = "text/plain; charset=utf-8" } ;
71
69
72
- return new ActionResult ( new { code = 404 , message = "no found beatmap file" } ) ;
70
+ return new ActionResult ( new { code = 404 , message = "no found beatmap file" } ) ;
73
71
}
74
72
75
73
[ Route ( "/beatmap/audio" ) ]
@@ -89,7 +87,7 @@ public ActionResult GetAudioFile()
89
87
} ;
90
88
}
91
89
92
- return new ActionResult ( new { code = 404 } , 200 ) ;
90
+ return new ActionResult ( new { code = 404 } , 200 ) ;
93
91
}
94
92
95
93
[ Route ( "/beatmap/background" ) ]
@@ -134,7 +132,7 @@ public ActionResult GetVideoFile()
134
132
return new ActionResult ( new { code = 404 } , 200 ) ;
135
133
}
136
134
137
- #endregion
135
+ #endregion Beatmap
138
136
139
137
#region Playing
140
138
@@ -150,7 +148,7 @@ public object GetPlayingInfo(int id)
150
148
}
151
149
152
150
[ Route ( "/playing/info" ) ]
153
- public object GetPlayingInfo ( ) =>
151
+ public object GetPlayingInfo ( ) =>
154
152
MakeProvideDatas (
155
153
ProvideDataMask . Score |
156
154
ProvideDataMask . HealthPoint |
@@ -178,17 +176,18 @@ public object GetPlayingMods()
178
176
public object GetPlayingTime ( )
179
177
=> new { time = ortdp . ListenerManager . GetCurrentData ( ProvideDataMask . Time ) . Time } ;
180
178
181
- #endregion
179
+ #endregion Playing
182
180
183
181
#region tools
184
- private object MakeProvideDatas ( ProvideDataMask mask , Func < ProvideData , object > selector )
182
+
183
+ private object MakeProvideDatas ( ProvideDataMask mask , Func < ProvideData , object > selector )
185
184
{
186
185
bool isTourney = ortdp . TourneyListenerManagersCount != 0 ;
187
186
188
187
var ret = new
189
188
{
190
189
tourneyMode = isTourney ,
191
- count = isTourney ? ortdp . TourneyListenerManagersCount : 1 ,
190
+ count = isTourney ? ortdp . TourneyListenerManagersCount : 1 ,
192
191
list = new List < object > ( )
193
192
} ;
194
193
@@ -256,25 +255,26 @@ private object MakeBeatmap(Beatmap beatmap)
256
255
folder = Path . GetFileName ( beatmap . Folder ) ,
257
256
filename = beatmap . Filename ,
258
257
audioFilename = beatmap . AudioFilename ,
259
- backroundFilename = beatmap . BackgroundFilename ,
260
- videoFilename = beatmap . VideoFilename
258
+ backroundFilename = beatmap . BackgroundFilename ,
259
+ videoFilename = beatmap . VideoFilename
261
260
} ;
262
261
}
263
262
264
263
private string GetContentType ( string fileExtention )
265
264
{
266
265
switch ( fileExtention . ToLower ( ) )
267
266
{
268
- case ".jpg" : case ".jpeg" : return "image/jpeg" ;
269
- case ".png" : return "image/png" ;
270
- case ".ogg" : return "audio/ogg" ;
267
+ case ".jpg" : case ".jpeg" : return "image/jpeg" ;
268
+ case ".png" : return "image/png" ;
269
+ case ".ogg" : return "audio/ogg" ;
271
270
272
- case ".mp4" : return "video/mp4" ;
273
- case ".avi" : return "video/x-msvideo" ;
271
+ case ".mp4" : return "video/mp4" ;
272
+ case ".avi" : return "video/x-msvideo" ;
274
273
default :
275
274
return "application/octet-stream" ;
276
275
}
277
276
}
278
- #endregion
277
+
278
+ #endregion tools
279
279
}
280
280
}
0 commit comments