1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-20 01:00:53 +00:00
Funkin/source/funkin/MusicBeatSubstate.hx

71 lines
1.4 KiB
Haxe
Raw Normal View History

package funkin;
2020-10-28 09:26:33 +00:00
import flixel.FlxSubState;
2022-04-18 23:36:09 +00:00
import funkin.Conductor.BPMChangeEvent;
import funkin.modding.events.ScriptEvent;
import funkin.modding.module.ModuleHandler;
2020-10-28 09:26:33 +00:00
2022-04-18 23:36:09 +00:00
/**
* MusicBeatSubstate reincorporates the functionality of MusicBeatState into an FlxSubState.
*/
2020-10-28 09:26:33 +00:00
class MusicBeatSubstate extends FlxSubState
{
public function new()
{
super();
}
private var curStep:Int = 0;
private var curBeat:Int = 0;
private var controls(get, never):Controls;
inline function get_controls():Controls
return PlayerSettings.player1.controls;
override function update(elapsed:Float)
{
2021-06-23 08:15:44 +00:00
// everyStep();
var oldStep:Int = curStep;
2020-10-28 09:26:33 +00:00
updateCurStep();
curBeat = Math.floor(curStep / 4);
if (oldStep != curStep && curStep >= 0)
stepHit();
2020-10-28 09:26:33 +00:00
super.update(elapsed);
}
private function updateCurStep():Void
{
var lastChange:BPMChangeEvent = {
stepTime: 0,
songTime: 0,
bpm: 0
}
for (i in 0...Conductor.bpmChangeMap.length)
2020-10-28 09:26:33 +00:00
{
2022-07-06 19:27:45 +00:00
if (Conductor.songPosition > Conductor.bpmChangeMap[i].songTime)
lastChange = Conductor.bpmChangeMap[i];
2020-10-28 09:26:33 +00:00
}
2022-07-07 00:37:35 +00:00
curStep = lastChange.stepTime + Math.floor(((Conductor.songPosition - Conductor.audioOffset) - lastChange.songTime) / Conductor.stepCrochet);
2020-10-28 09:26:33 +00:00
}
public function stepHit():Void
{
if (curStep % 4 == 0)
2020-10-28 09:26:33 +00:00
beatHit();
}
2022-04-18 23:36:09 +00:00
function dispatchEvent(event:ScriptEvent)
{
ModuleHandler.callEvent(event);
}
2020-10-28 09:26:33 +00:00
public function beatHit():Void
{
2021-06-23 08:15:44 +00:00
// do literally nothing dumbass
2020-10-28 09:26:33 +00:00
}
}