Funkin/source/funkin/MusicBeatSubstate.hx

88 lines
1.8 KiB
Haxe
Raw Normal View History

package funkin;
2020-10-28 05:26:33 -04:00
import flixel.util.FlxColor;
2020-10-28 05:26:33 -04:00
import flixel.FlxSubState;
2022-04-18 19:36:09 -04:00
import funkin.Conductor.BPMChangeEvent;
import funkin.modding.events.ScriptEvent;
import funkin.modding.module.ModuleHandler;
2020-10-28 05:26:33 -04:00
2022-04-18 19:36:09 -04:00
/**
* MusicBeatSubstate reincorporates the functionality of MusicBeatState into an FlxSubState.
*/
2020-10-28 05:26:33 -04:00
class MusicBeatSubstate extends FlxSubState
{
public function new(bgColor:FlxColor = FlxColor.TRANSPARENT)
2020-10-28 05:26:33 -04:00
{
super(bgColor);
2020-10-28 05:26:33 -04:00
}
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 04:15:44 -04:00
// everyStep();
var oldStep:Int = curStep;
2020-10-28 05:26:33 -04:00
updateCurStep();
curBeat = Math.floor(curStep / 4);
if (oldStep != curStep && curStep >= 0)
stepHit();
2020-10-28 05:26:33 -04: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 05:26:33 -04:00
{
if (Conductor.songPosition > Conductor.bpmChangeMap[i].songTime)
lastChange = Conductor.bpmChangeMap[i];
2020-10-28 05:26:33 -04:00
}
2022-07-06 20:37:35 -04:00
curStep = lastChange.stepTime + Math.floor(((Conductor.songPosition - Conductor.audioOffset) - lastChange.songTime) / Conductor.stepCrochet);
2020-10-28 05:26:33 -04:00
}
public function stepHit():Bool
2020-10-28 05:26:33 -04:00
{
var event = new SongTimeScriptEvent(ScriptEvent.SONG_STEP_HIT, curBeat, curStep);
dispatchEvent(event);
if (event.eventCanceled)
return false;
if (curStep % 4 == 0)
2020-10-28 05:26:33 -04:00
beatHit();
return true;
2020-10-28 05:26:33 -04:00
}
2022-04-18 19:36:09 -04:00
function dispatchEvent(event:ScriptEvent)
{
ModuleHandler.callEvent(event);
}
public function beatHit():Bool
2020-10-28 05:26:33 -04:00
{
var event = new SongTimeScriptEvent(ScriptEvent.SONG_BEAT_HIT, curBeat, curStep);
dispatchEvent(event);
if (event.eventCanceled)
return false;
return true;
2020-10-28 05:26:33 -04:00
}
}