diff --git a/.vscode/launch.json b/.vscode/launch.json index 74f72b826..afc0ab8db 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,6 +7,12 @@ "type": "lime", "request": "launch" }, + { + "name": "Debug", + "type": "lime", + "request": "launch", + "preLaunchTask": null + }, { // Launch in browser "name": "HTML5 Debug", diff --git a/assets b/assets index d094640f7..b2f8b6a78 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit d094640f727a670a348b3579d11af5ff6a2ada3a +Subproject commit b2f8b6a780316959d0a79adc6dbf61f9e4ca675f diff --git a/source/funkin/Conductor.hx b/source/funkin/Conductor.hx index 7a4f76924..75031f6dd 100644 --- a/source/funkin/Conductor.hx +++ b/source/funkin/Conductor.hx @@ -373,7 +373,13 @@ class Conductor */ public function getTimeWithDiff():Float { - return this.songPosition + (Std.int(Timer.stamp() * 1000) - prevTimestamp); + // trace(this.songPosition); + + @:privateAccess + this.songPosition = FlxG.sound.music._channel.position; + // return this.songPosition + (Std.int(Timer.stamp() * 1000) - prevTimestamp); + // trace("\t--> " + this.songPosition); + return this.songPosition; } public function mapTimeChanges(songTimeChanges:Array) diff --git a/source/funkin/ui/debug/latency/LatencyState.hx b/source/funkin/ui/debug/latency/LatencyState.hx index d3f7bb7b6..f75ac16bc 100644 --- a/source/funkin/ui/debug/latency/LatencyState.hx +++ b/source/funkin/ui/debug/latency/LatencyState.hx @@ -63,9 +63,9 @@ class LatencyState extends MusicBeatSubState FlxG.addChildBelowMouse(realStats); PreciseInputManager.instance.onInputPressed.add(function(event:PreciseInputEvent) { + generateBeatStuff(event); strumLine.pressKey(event.noteDirection); strumLine.playPress(event.noteDirection); - generateBeatStuff(event); }); PreciseInputManager.instance.onInputReleased.add(function(event:PreciseInputEvent) { @@ -80,14 +80,6 @@ class LatencyState extends MusicBeatSubState diffGrp = new FlxTypedGroup(); add(diffGrp); - // var musSpec:PolygonSpectogram = new PolygonSpectogram(FlxG.sound.music, FlxColor.RED, FlxG.height, Math.floor(FlxG.height / 2)); - // musSpec.x += 170; - // musSpec.scrollFactor.set(); - // musSpec.waveAmplitude = 100; - // musSpec.realtimeVisLenght = 0.45; - // // musSpec.visType = FREQUENCIES; - // add(musSpec); - for (beat in 0...Math.floor(FlxG.sound.music.length / (Conductor.instance.stepLengthMs * 2))) { var beatTick:FlxSprite = new FlxSprite(songPosToX(beat * (Conductor.instance.stepLengthMs * 2)), FlxG.height - 15); @@ -178,7 +170,7 @@ class LatencyState extends MusicBeatSubState Conductor.instance.update(); - funnyStatsGraph.update(Conductor.instance.songPosition % 500); + funnyStatsGraph.update(swagSong.getTimeWithDiff() % 500); realStats.update(Conductor.instance.getTimeWithDiff() % 500); // Conductor.instance.songPosition += (Timer.stamp() * 1000) - FlxG.sound.music.prevTimestamp; @@ -266,7 +258,7 @@ class LatencyState extends MusicBeatSubState beatTrail.x = songPosVis.x; diffGrp.members[closestBeat].text = getDiff + "ms"; - offsetsPerBeat[closestBeat] = Std.int(getDiff); + offsetsPerBeat[closestBeat] = Math.round(getDiff); } function songPosToX(pos:Float):Float