mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-04 22:04:29 +00:00
72 lines
1.5 KiB
Haxe
72 lines
1.5 KiB
Haxe
package funkin;
|
|
|
|
import flixel.util.FlxColor;
|
|
import flixel.FlxSubState;
|
|
import funkin.Conductor.BPMChangeEvent;
|
|
import funkin.modding.events.ScriptEvent;
|
|
import funkin.modding.module.ModuleHandler;
|
|
|
|
/**
|
|
* MusicBeatSubstate reincorporates the functionality of MusicBeatState into an FlxSubState.
|
|
*/
|
|
class MusicBeatSubstate extends FlxSubState
|
|
{
|
|
public function new(bgColor:FlxColor = FlxColor.TRANSPARENT)
|
|
{
|
|
super(bgColor);
|
|
}
|
|
|
|
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)
|
|
{
|
|
// everyStep();
|
|
var oldStep:Int = curStep;
|
|
|
|
updateCurStep();
|
|
curBeat = Math.floor(curStep / 4);
|
|
|
|
if (oldStep != curStep && curStep >= 0)
|
|
stepHit();
|
|
|
|
super.update(elapsed);
|
|
}
|
|
|
|
private function updateCurStep():Void
|
|
{
|
|
var lastChange:BPMChangeEvent = {
|
|
stepTime: 0,
|
|
songTime: 0,
|
|
bpm: 0
|
|
}
|
|
for (i in 0...Conductor.bpmChangeMap.length)
|
|
{
|
|
if (Conductor.songPosition > Conductor.bpmChangeMap[i].songTime)
|
|
lastChange = Conductor.bpmChangeMap[i];
|
|
}
|
|
|
|
curStep = lastChange.stepTime + Math.floor((Conductor.songPosition - lastChange.songTime) / Conductor.stepCrochet);
|
|
}
|
|
|
|
public function stepHit():Void
|
|
{
|
|
if (curStep % 4 == 0)
|
|
beatHit();
|
|
}
|
|
|
|
function dispatchEvent(event:ScriptEvent)
|
|
{
|
|
ModuleHandler.callEvent(event);
|
|
}
|
|
|
|
public function beatHit():Void
|
|
{
|
|
// do literally nothing dumbass
|
|
}
|
|
}
|