Skip to content

Commit ce1f2d4

Browse files
committed
fix rtpp
1 parent 5c4daf1 commit ce1f2d4

File tree

4 files changed

+49
-33
lines changed

4 files changed

+49
-33
lines changed

Server/Api/RtppdApis.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,15 +83,15 @@ public object GetHitCount()
8383
};
8484
}
8585

86-
[Route("/beatmap/{id}")]
86+
[Route("/beatmapTuple/{id}")]
8787
public object GetBeatmap(int id)
8888
{
8989
RestfulDisplayer displayer = GetDisplayer(id);
9090

9191
return (displayer?.HitCountTuple) == null ? null : MakeTupleResult(displayer?.BeatmapTuple);
9292
}
9393

94-
[Route("/beatmap")]
94+
[Route("/beatmapTuple")]
9595
public object GetBeatmap()
9696
{
9797
List<RestfulDisplayer> displayers = EnumerateRestfulDisplayers();

html/js/rtppd/Formatter.js

+33-31
Original file line numberDiff line numberDiff line change
@@ -31,33 +31,33 @@ class Formatter
3131
for(let i=0;i<this.args.length;++i)
3232
{
3333
let expr=this.args[i].expr;
34-
let value=expr(
35-
tuple.rtpp,
36-
tuple.rtppAccuracy,
37-
tuple.rtppAim,
38-
tuple.rtppSpeed,
39-
tuple.maxpp,
40-
tuple.maxAccuracy,
41-
tuple.maxAim,
42-
tuple.maxSpeed,
43-
tuple.fcpp,
44-
tuple.fcppAccuracy,
45-
tuple.fcppAim,
46-
tuple.fcppSpeed,
47-
tuple.n300,
48-
tuple.n300g,
49-
tuple.n200,
50-
tuple.n150,
51-
tuple.n100,
52-
tuple.n50,
53-
tuple.n200,
54-
tuple.n300g,
55-
tuple.nmiss,
56-
tuple.rtmaxcombo,
57-
tuple.rtmaxcombo,
58-
tuple.maxcombo,
59-
tuple.maxcombo,
60-
tuple.fullcombo,
34+
let ret=expr(
35+
tuple.realTimePP,
36+
tuple.realTimeAccuracyPP,
37+
tuple.realTimeAimPP,
38+
tuple.realTimeSpeedPP,
39+
tuple.maxPP,
40+
tuple.maxAccuracyPP,
41+
tuple.maxAimPP,
42+
tuple.maxSpeedPP,
43+
tuple.fullComboPP,
44+
tuple.fullComboAccuracyPP,
45+
tuple.fullComboAimPP,
46+
tuple.fullComboSpeedPP,
47+
tuple.count300,
48+
tuple.countGeki,
49+
tuple.countKatu,
50+
tuple.count100,
51+
tuple.count100,
52+
tuple.count50,
53+
tuple.countKatu,
54+
tuple.countGeki,
55+
tuple.countMiss,
56+
tuple.currentMaxCombo,
57+
tuple.currentMaxCombo,
58+
tuple.playerMaxCombo,
59+
tuple.playerMaxCombo,
60+
tuple.fullCombo,
6161
tuple.combo,
6262
tuple.objectsCount,
6363
tuple.time,
@@ -83,11 +83,13 @@ class Formatter
8383
Math.ceil,
8484
Math.round,
8585
Math.sign,
86+
Math.trunc,
8687
(a,min,max)=>Math.max(Math.min(a,max),min),
8788
(a,b,t)=>(1-t)*a+t*b,
8889
(a,b)=>(a||0)+Math.random()*((b||1)-(a||0)),
8990
()=>new Date().getTime()
90-
).toFixed(digital);
91+
);
92+
let value = ret.toFixed(digital);
9193
formatted=formatted.replace("${"+this.args[i].exprStr+"}",value);
9294
}
9395

@@ -145,15 +147,15 @@ class Formatter
145147
"log",
146148
"log10",
147149
"floor",
148-
"ceiling",
150+
"ceil",
149151
"round",
150152
"sign",
151153
"truncate",
152154
"clamp",
153155
"lerp",
154156
"random",
155-
"getTime"
156-
`return ${expr}`
157+
"getTime",
158+
`return ${expr};`
157159
);
158160
}
159161
}

html/js/rtppd/RTPPD.js

+8
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,12 @@ class RTPPD {
3636
async getPlayingStatusList() {
3737
return await this._oddr.get(`api/rtppd/playingStatus`);
3838
}
39+
40+
async getBeatmapTupleAt(id = 0){
41+
return await this._oddr.get(`api/rtppd/beatmapTuple/${id}`);
42+
}
43+
44+
async getBeatmapTupleList(){
45+
return await this._oddr.get(`api/rtppd/beatmapTuple`);
46+
}
3947
}

html/rtpp.html

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<title>Displayer</title>
66
<script src="js/ODDR.js"></script>
77
<script src="js/rtppd/RTPPD.js"></script>
8+
<script src="js/ORTDP.js"></script>
89
<script src="js/Smoother.js"></script>
910
<script src="js/rtppd/Formatter.js"></script>
1011
<style type="text/css">
@@ -59,6 +60,7 @@
5960
let target_pp = null;
6061

6162
let hit_count = null;
63+
let beatmapTuple = null;
6264

6365
let smoothers = {};
6466
let pp_formatter = null;
@@ -69,6 +71,7 @@
6971
//initialize ODDR and RTPPD
7072
let oddr = new ODDR(host,port);
7173
let rtppd = new RTPPD(oddr);
74+
let ortdp = new ORTDP(host,port);
7275

7376
//get pp format and hit count format
7477
rtppd.getPerformancePointFormatString().then(function (format_json) {
@@ -96,6 +99,8 @@
9699
current_pp = target_pp;
97100

98101
hit_count = await rtppd.getHitCountAt(0);
102+
beatmapTuple = await rtppd.getBeatmapTupleAt(0);
103+
beatmapTuple.playtime = await ortdp.getPlayingTime();
99104

100105
playing = (await rtppd.getPlayingStatusAt(0)).playing;
101106

@@ -106,6 +111,7 @@
106111
function display_content() {
107112
if (playing === true) {
108113
let tuple = Object.assign(current_pp,hit_count);
114+
tuple = Object.assign(tuple,beatmapTuple);
109115

110116
if (current_pp !== null) {
111117
current_pp = SmoothObject(current_pp, target_pp);

0 commit comments

Comments
 (0)