2021-09-16 16:04:46 +00:00
|
|
|
package;
|
|
|
|
|
|
|
|
import flixel.FlxSprite;
|
2021-09-16 18:50:02 +00:00
|
|
|
import flixel.group.FlxGroup;
|
|
|
|
import flixel.group.FlxSpriteGroup.FlxTypedSpriteGroup;
|
2021-09-16 16:04:46 +00:00
|
|
|
import flixel.math.FlxMath;
|
|
|
|
import flixel.math.FlxPoint;
|
|
|
|
import flixel.util.FlxColor;
|
|
|
|
import lime.utils.Int16Array;
|
|
|
|
|
|
|
|
using flixel.util.FlxSpriteUtil;
|
|
|
|
|
2021-09-16 18:50:02 +00:00
|
|
|
class SpectogramSprite extends FlxTypedSpriteGroup<FlxSprite>
|
2021-09-16 16:04:46 +00:00
|
|
|
{
|
|
|
|
public function new()
|
|
|
|
{
|
|
|
|
super();
|
|
|
|
|
2021-09-16 18:50:02 +00:00
|
|
|
for (i in 0...256)
|
|
|
|
{
|
|
|
|
var lineShit:FlxSprite = new FlxSprite(100, i / 256 * FlxG.height).makeGraphic(1, 1);
|
|
|
|
// lineShit.origin.set();
|
|
|
|
|
|
|
|
// var xClip = lineShit.clipRect;
|
|
|
|
// xClip.width = 1;
|
|
|
|
|
|
|
|
// lineShit.clipRect = xClip;
|
|
|
|
add(lineShit);
|
|
|
|
}
|
|
|
|
|
|
|
|
// makeGraphic(200, 200, FlxColor.BLACK);
|
2021-09-16 16:04:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
override function update(elapsed:Float)
|
|
|
|
{
|
|
|
|
if (FlxG.sound.music != null)
|
|
|
|
{
|
|
|
|
if (FlxG.sound.music.playing)
|
|
|
|
{
|
2021-09-16 18:50:02 +00:00
|
|
|
// FlxSpriteUtil.drawRect(this, 0, 0, width, height, 0x45000000);
|
2021-09-16 16:04:46 +00:00
|
|
|
|
|
|
|
@:privateAccess
|
|
|
|
var audioData:Int16Array = FlxG.sound.music._channel.__source.buffer.data; // jank and hacky lol!
|
|
|
|
|
|
|
|
var numSamples:Int = Std.int(audioData.length / 2);
|
|
|
|
var remappedShit:Int = Std.int(FlxMath.remapToRange(FlxG.sound.music.time, 0, FlxG.sound.music.length, 0, numSamples));
|
|
|
|
var i = remappedShit;
|
|
|
|
var prevLine:FlxPoint = new FlxPoint();
|
|
|
|
|
2021-09-16 18:50:02 +00:00
|
|
|
var swagheight:Int = 200;
|
|
|
|
|
2021-09-16 16:04:46 +00:00
|
|
|
for (sample in remappedShit...remappedShit + 256)
|
|
|
|
{
|
|
|
|
var left = audioData[i] / 32767;
|
|
|
|
i += 2;
|
|
|
|
|
2021-09-16 18:50:02 +00:00
|
|
|
var remappedSample:Float = FlxMath.remapToRange(sample, remappedShit, remappedShit + 256, 0, 255);
|
|
|
|
|
|
|
|
group.members[Std.int(remappedSample)].x = prevLine.x;
|
|
|
|
// group.members[0].y = prevLine.y;
|
2021-09-16 16:04:46 +00:00
|
|
|
|
2021-09-16 18:50:02 +00:00
|
|
|
// FlxSpriteUtil.drawLine(this, prevLine.x, prevLine.y, width * remappedSample, left * height / 2 + height / 2);
|
|
|
|
prevLine.x = left * swagheight / 2 + swagheight / 2;
|
|
|
|
// width * (remappedSample / 255);
|
|
|
|
// prevLine.y = left * swagheight / 2 + swagheight / 2;
|
2021-09-16 16:04:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
super.update(elapsed);
|
|
|
|
}
|
|
|
|
}
|