From c1088361a2976546d18b443ddf152ae728825c46 Mon Sep 17 00:00:00 2001 From: Sky Z Date: Sat, 2 Apr 2022 01:32:51 -0400 Subject: [PATCH] add CurrentSongTime support from HttpSiraStatus --- pages/index.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pages/index.js b/pages/index.js index 6978f03..95ada61 100644 --- a/pages/index.js +++ b/pages/index.js @@ -50,14 +50,33 @@ export default class Home extends Component { } // I'd love if HTTP Status just gave this data lmao + // HttpSiraStatus(https://github.com/denpadokei/HttpSiraStatus) does give this data. + isCurrentSongTimeProvided = false; + // we don't need to reset this to false because it is highly unlikely for a player to swap mods within a browser session + setupTimer() { setInterval(() => { + if (this.isCurrentSongTimeProvided) { + return + } if (!this.state.paused && this.state.beatSaverData !== undefined) { this.setState({ currentSongTime: this.state.currentSongTime + 1 }) } }, 1000); } + handleCurrentSongTime(data) { + try { + const time = data.status.performance.currentSongTime + if (time!==undefined && time!=null) { + this.isCurrentSongTimeProvided = true + this.setState({ currentSongTime: time}) + } + } catch (e) { + // do nothing + } + } + async componentDidMount() { this.#_beatSaverURL = document.location.origin + "/api/beatsaver/map?hash=%s"; const urlSearchParams = new URLSearchParams(window.location.search); @@ -118,6 +137,7 @@ export default class Home extends Component { }); socket.addEventListener('message', (message) => { const json = JSON.parse(message.data); + this.handleCurrentSongTime(json) if (!this.handlers[json.event]) { console.log("Unhandled message from HTTP Status. (" + json.event + ")"); return;