1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-19 16:41:39 +00:00
Funkin/source/funkin/MusicBeatState.hx

107 lines
2.6 KiB
Haxe
Raw Normal View History

package funkin;
import flixel.util.FlxColor;
import flixel.text.FlxText;
import funkin.modding.events.ScriptEvent;
import funkin.modding.module.ModuleHandler;
import funkin.modding.events.ScriptEvent.UpdateScriptEvent;
import funkin.Conductor.BPMChangeEvent;
2020-10-12 03:52:21 +00:00
import flixel.addons.ui.FlxUIState;
2020-10-12 03:52:21 +00:00
class MusicBeatState extends FlxUIState
{
2020-10-13 08:07:04 +00:00
private var curStep:Int = 0;
private var curBeat:Int = 0;
2020-10-28 08:24:56 +00:00
private var controls(get, never):Controls;
private var lastBeatHitTime:Float = 0;
2020-10-28 08:24:56 +00:00
inline function get_controls():Controls
return PlayerSettings.player1.controls;
2020-10-13 08:07:04 +00:00
public var leftWatermarkText:FlxText = null;
public var rightWatermarkText:FlxText = null;
override function create()
{
super.create();
2021-01-16 22:21:06 +00:00
if (transIn != null)
trace('reg ' + transIn.region);
createWatermarkText();
}
2020-10-10 03:22:07 +00:00
override function update(elapsed:Float)
{
super.update(elapsed);
2021-04-01 23:39:03 +00:00
// everyStep();
var oldStep:Int = curStep;
2020-10-10 03:22:07 +00:00
updateCurStep();
2020-11-21 10:43:04 +00:00
updateBeat();
2020-10-13 08:07:04 +00:00
if (oldStep != curStep && curStep >= 0)
stepHit();
dispatchEvent(new UpdateScriptEvent(elapsed));
}
function createWatermarkText()
{
// Both have an xPos of 0, but a width equal to the full screen.
// The rightWatermarkText is right aligned, which puts the text in the correct spot.
leftWatermarkText = new FlxText(0, FlxG.height - 18, FlxG.width, '', 12);
rightWatermarkText = new FlxText(0, FlxG.height - 18, FlxG.width, '', 12);
// 100,000 should be good enough.
leftWatermarkText.zIndex = 100000;
rightWatermarkText.zIndex = 100000;
leftWatermarkText.scrollFactor.set(0, 0);
rightWatermarkText.scrollFactor.set(0, 0);
leftWatermarkText.setFormat("VCR OSD Mono", 16, FlxColor.WHITE, LEFT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK);
rightWatermarkText.setFormat("VCR OSD Mono", 16, FlxColor.WHITE, RIGHT, FlxTextBorderStyle.OUTLINE, FlxColor.BLACK);
add(leftWatermarkText);
add(rightWatermarkText);
}
function dispatchEvent(event:ScriptEvent)
{
ModuleHandler.callEvent(event);
}
2020-11-21 10:43:04 +00:00
private function updateBeat():Void
{
curBeat = Math.floor(curStep / 4);
2020-11-21 10:43:04 +00:00
}
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)
2020-10-10 03:22:07 +00:00
beatHit();
}
public function beatHit():Void
{
lastBeatHitTime = Conductor.songPosition;
2021-04-01 23:39:03 +00:00
// do literally nothing dumbass
}
}