Funkin/source/Note.hx

164 lines
3.6 KiB
Haxe
Raw Normal View History

2020-10-03 06:50:15 +00:00
package;
import flixel.FlxSprite;
2020-10-04 06:42:58 +00:00
import flixel.graphics.frames.FlxAtlasFrames;
2020-10-03 06:50:15 +00:00
import flixel.util.FlxColor;
class Note extends FlxSprite
{
public var strumTime:Float = 0;
public var mustPress:Bool = false;
public var noteData:Int = 0;
2020-10-03 17:36:39 +00:00
public var canBeHit:Bool = false;
public var tooLate:Bool = false;
public var wasGoodHit:Bool = false;
public var prevNote:Note;
2020-10-03 06:50:15 +00:00
2020-10-19 00:59:53 +00:00
public var sustainLength:Float = 0;
2020-10-20 01:59:00 +00:00
public var isSustainNote:Bool = false;
2020-10-19 00:59:53 +00:00
2020-10-03 19:32:15 +00:00
public var noteScore:Float = 1;
2020-10-04 08:38:21 +00:00
public static var swagWidth:Float = 160 * 0.7;
2020-10-14 02:12:31 +00:00
public static var PURP_NOTE:Int = 0;
public static var GREEN_NOTE:Int = 2;
public static var BLUE_NOTE:Int = 1;
public static var RED_NOTE:Int = 3;
2020-10-04 08:38:21 +00:00
2020-10-20 01:59:00 +00:00
public function new(strumTime:Float, noteData:Int, ?prevNote:Note, ?sustainNote:Bool = false)
2020-10-03 06:50:15 +00:00
{
super();
2020-10-07 01:56:14 +00:00
if (prevNote == null)
prevNote = this;
2020-10-05 05:13:12 +00:00
this.prevNote = prevNote;
2020-10-20 01:59:00 +00:00
isSustainNote = sustainNote;
2020-10-05 05:13:12 +00:00
2020-10-04 08:38:21 +00:00
x += 50;
2020-11-11 02:07:56 +00:00
// MAKE SURE ITS DEFINITELY OFF SCREEN?
y -= 2000;
2020-10-03 06:50:15 +00:00
this.strumTime = strumTime;
2020-10-03 17:36:39 +00:00
2020-10-03 06:50:15 +00:00
this.noteData = noteData;
2020-10-04 06:42:58 +00:00
var tex = FlxAtlasFrames.fromSparrow(AssetPaths.NOTE_assets__png, AssetPaths.NOTE_assets__xml);
frames = tex;
2020-10-04 08:38:21 +00:00
animation.addByPrefix('greenScroll', 'green0');
animation.addByPrefix('redScroll', 'red0');
animation.addByPrefix('blueScroll', 'blue0');
animation.addByPrefix('purpleScroll', 'purple0');
2020-10-04 06:42:58 +00:00
2020-10-05 05:13:12 +00:00
animation.addByPrefix('purpleholdend', 'pruple end hold');
animation.addByPrefix('greenholdend', 'green hold end');
animation.addByPrefix('redholdend', 'red hold end');
animation.addByPrefix('blueholdend', 'blue hold end');
animation.addByPrefix('purplehold', 'purple hold piece');
animation.addByPrefix('greenhold', 'green hold piece');
animation.addByPrefix('redhold', 'red hold piece');
animation.addByPrefix('bluehold', 'blue hold piece');
2020-10-04 08:38:21 +00:00
setGraphicSize(Std.int(width * 0.7));
updateHitbox();
2020-10-05 02:31:38 +00:00
antialiasing = true;
2020-10-03 06:50:15 +00:00
2020-10-13 09:36:45 +00:00
switch (noteData)
2020-10-03 06:50:15 +00:00
{
2020-10-13 09:36:45 +00:00
case 0:
x += swagWidth * 0;
animation.play('purpleScroll');
2020-10-03 06:50:15 +00:00
case 1:
2020-10-13 09:36:45 +00:00
x += swagWidth * 1;
animation.play('blueScroll');
case 2:
2020-10-03 17:36:39 +00:00
x += swagWidth * 2;
2020-10-04 08:38:21 +00:00
animation.play('greenScroll');
2020-10-13 09:36:45 +00:00
case 3:
2020-10-03 17:36:39 +00:00
x += swagWidth * 3;
2020-10-04 08:38:21 +00:00
animation.play('redScroll');
2020-10-03 06:50:15 +00:00
}
2020-10-24 09:36:50 +00:00
// trace(prevNote);
2020-10-05 05:13:12 +00:00
2020-10-20 01:59:00 +00:00
if (isSustainNote && prevNote != null)
2020-10-03 19:32:15 +00:00
{
noteScore * 0.2;
2020-10-03 06:50:15 +00:00
alpha = 0.6;
2020-10-05 05:13:12 +00:00
x += width / 2;
switch (noteData)
{
2020-10-20 01:59:00 +00:00
case 2:
2020-10-05 05:13:12 +00:00
animation.play('greenholdend');
2020-10-20 01:59:00 +00:00
case 3:
2020-10-05 05:13:12 +00:00
animation.play('redholdend');
2020-10-20 01:59:00 +00:00
case 1:
2020-10-05 05:13:12 +00:00
animation.play('blueholdend');
2020-10-20 01:59:00 +00:00
case 0:
2020-10-05 05:13:12 +00:00
animation.play('purpleholdend');
}
updateHitbox();
x -= width / 2;
2020-10-20 01:59:00 +00:00
if (prevNote.isSustainNote)
2020-10-05 05:13:12 +00:00
{
switch (prevNote.noteData)
{
2020-10-20 01:59:00 +00:00
case 2:
2020-10-05 05:13:12 +00:00
prevNote.animation.play('greenhold');
2020-10-20 01:59:00 +00:00
case 3:
2020-10-05 05:13:12 +00:00
prevNote.animation.play('redhold');
2020-10-20 01:59:00 +00:00
case 1:
2020-10-05 05:13:12 +00:00
prevNote.animation.play('bluehold');
2020-10-20 01:59:00 +00:00
case 0:
2020-10-05 05:13:12 +00:00
prevNote.animation.play('purplehold');
}
prevNote.offset.y = -19;
2020-10-20 01:59:00 +00:00
prevNote.scale.y *= (2.25 * PlayState.SONG.speed);
2020-10-05 05:13:12 +00:00
// prevNote.setGraphicSize();
}
2020-10-03 19:32:15 +00:00
}
2020-10-03 06:50:15 +00:00
}
2020-10-03 17:36:39 +00:00
override function update(elapsed:Float)
{
super.update(elapsed);
if (mustPress)
{
2020-10-29 02:47:10 +00:00
// The * 0.5 us so that its easier to hit them too late, instead of too early
2020-10-03 17:36:39 +00:00
if (strumTime > Conductor.songPosition - Conductor.safeZoneOffset
2020-10-29 02:47:10 +00:00
&& strumTime < Conductor.songPosition + (Conductor.safeZoneOffset * 0.5))
2020-10-03 17:36:39 +00:00
{
canBeHit = true;
}
else
canBeHit = false;
if (strumTime < Conductor.songPosition - Conductor.safeZoneOffset)
tooLate = true;
}
else
2020-10-04 06:42:58 +00:00
{
2020-10-03 17:36:39 +00:00
canBeHit = false;
2020-10-04 06:42:58 +00:00
if (strumTime <= Conductor.songPosition)
{
wasGoodHit = true;
}
}
if (tooLate)
{
if (alpha > 0.3)
alpha = 0.3;
}
2020-10-03 17:36:39 +00:00
}
2020-10-03 06:50:15 +00:00
}