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

283 lines
7.9 KiB
Haxe
Raw Normal View History

package funkin;
2020-10-03 06:50:15 +00:00
import flixel.FlxSprite;
2021-01-25 09:18:44 +00:00
import flixel.math.FlxMath;
2022-09-22 10:34:03 +00:00
import funkin.noteStuff.NoteBasic.NoteData;
import funkin.noteStuff.NoteBasic.NoteType;
import funkin.play.PlayState;
import funkin.play.Strumline.StrumlineStyle;
import funkin.shaderslmfao.ColorSwap;
import funkin.ui.PreferencesMenu;
import funkin.util.Constants;
2021-03-20 05:03:42 +00:00
2020-10-03 06:50:15 +00:00
class Note extends FlxSprite
{
public var data = new NoteData();
2020-10-03 06:50:15 +00:00
/**
* code colors for.... code....
* i think goes in order of left to right
*
* left 0
* down 1
* up 2
* right 3
*/
public static var codeColors:Array<Int> = [0xFFFF22AA, 0xFF00EEFF, 0xFF00CC00, 0xFFCC1111];
public var mustPress:Bool = false;
public var followsTime:Bool = true; // used if you want the note to follow the time shit!
public var canBeHit:Bool = false;
public var tooLate:Bool = false;
public var wasGoodHit:Bool = false;
public var prevNote:Note;
2021-04-10 22:23:56 +00:00
var willMiss:Bool = false;
2020-10-03 06:50:15 +00:00
public var invisNote:Bool = false;
2021-04-10 22:23:56 +00:00
public var isSustainNote:Bool = false;
2020-10-19 00:59:53 +00:00
public var colorSwap:ColorSwap;
2022-02-23 21:49:54 +00:00
/** the lowercase name of the note, for anim control, i.e. left right up down */
public var dirName(get, never):String;
2022-02-23 21:49:54 +00:00
inline function get_dirName()
return data.dirName;
2022-02-23 21:49:54 +00:00
/** the uppercase name of the note, for anim control, i.e. left right up down */
public var dirNameUpper(get, never):String;
2022-02-23 21:49:54 +00:00
inline function get_dirNameUpper()
return data.dirNameUpper;
2022-02-23 21:49:54 +00:00
/** the lowercase name of the note's color, for anim control, i.e. purple blue green red */
public var colorName(get, never):String;
2022-02-23 21:49:54 +00:00
inline function get_colorName()
return data.colorName;
2022-02-23 21:49:54 +00:00
/** the lowercase name of the note's color, for anim control, i.e. purple blue green red */
public var colorNameUpper(get, never):String;
2022-02-23 21:49:54 +00:00
inline function get_colorNameUpper()
return data.colorNameUpper;
2022-02-23 21:49:54 +00:00
public var highStakes(get, never):Bool;
2022-02-23 21:49:54 +00:00
inline function get_highStakes()
return data.highStakes;
2022-02-23 21:49:54 +00:00
public var lowStakes(get, never):Bool;
2022-02-23 21:49:54 +00:00
inline function get_lowStakes()
return data.lowStakes;
2022-02-23 21:49:54 +00:00
public static var swagWidth:Float = 160 * 0.7;
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
// SCORING STUFF
public static var HIT_WINDOW:Float = (10 / 60) * 1000; // 166.67 ms hit window (10 frames at 60fps)
// thresholds are fractions of HIT_WINDOW ^^
// anything above bad threshold is shit
public static var BAD_THRESHOLD:Float = 0.8; // 125ms , 8 frames
public static var GOOD_THRESHOLD:Float = 0.55; // 91.67ms , 5.5 frames
public static var SICK_THRESHOLD:Float = 0.2; // 33.33ms , 2 frames
public var noteSpeedMulti:Float = 1;
public var pastHalfWay:Bool = false;
// anything below sick threshold is sick
public static var arrowColors:Array<Float> = [1, 1, 1, 1];
2021-03-21 18:45:46 +00:00
// Which note asset to load?
public var style:StrumlineStyle = NORMAL;
public function new(strumTime:Float = 0, noteData:NoteType, ?prevNote:Note, ?sustainNote:Bool = false, ?style:StrumlineStyle = NORMAL)
{
super();
2020-10-03 06:50:15 +00:00
if (prevNote == null) prevNote = this;
2020-10-07 01:56:14 +00:00
this.prevNote = prevNote;
isSustainNote = sustainNote;
2020-10-05 05:13:12 +00:00
x += 50;
// MAKE SURE ITS DEFINITELY OFF SCREEN?
y -= 2000;
data.strumTime = strumTime;
2020-10-03 17:36:39 +00:00
data.noteData = noteData;
2020-10-03 06:50:15 +00:00
this.style = style;
if (this.style == null) this.style = StrumlineStyle.NORMAL;
// TODO: Make this logic more generic
switch (this.style)
{
case PIXEL:
loadGraphic(Paths.image('weeb/pixelUI/arrows-pixels'), true, 17, 17);
2021-02-02 05:48:22 +00:00
animation.add('greenScroll', [6]);
animation.add('redScroll', [7]);
animation.add('blueScroll', [5]);
animation.add('purpleScroll', [4]);
2021-02-02 05:48:22 +00:00
if (isSustainNote)
{
loadGraphic(Paths.image('weeb/pixelUI/arrowEnds'), true, 7, 6);
2021-02-02 05:48:22 +00:00
animation.add('purpleholdend', [4]);
animation.add('greenholdend', [6]);
animation.add('redholdend', [7]);
animation.add('blueholdend', [5]);
2021-02-02 05:48:22 +00:00
animation.add('purplehold', [0]);
animation.add('greenhold', [2]);
animation.add('redhold', [3]);
animation.add('bluehold', [1]);
}
2021-02-02 05:48:22 +00:00
setGraphicSize(Std.int(width * Constants.PIXEL_ART_SCALE));
updateHitbox();
2021-02-02 05:48:22 +00:00
default:
frames = Paths.getSparrowAtlas('NOTE_assets');
2020-10-05 05:13:12 +00:00
animation.addByPrefix('purpleScroll', 'purple instance');
animation.addByPrefix('blueScroll', 'blue instance');
animation.addByPrefix('greenScroll', 'green instance');
animation.addByPrefix('redScroll', 'red instance');
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');
setGraphicSize(Std.int(width * 0.7));
updateHitbox();
antialiasing = true;
// colorSwap.colorToReplace = 0xFFF9393F;
// colorSwap.newColor = 0xFF00FF00;
// color = FlxG.random.color();
// color.saturation *= 4;
// replaceColor(0xFFC1C1C1, FlxColor.RED);
}
colorSwap = new ColorSwap();
shader = colorSwap.shader;
updateColors();
x += swagWidth * data.int;
animation.play(data.colorName + 'Scroll');
// trace(prevNote);
if (isSustainNote && prevNote != null)
{
alpha = 0.6;
if (PreferencesMenu.getPref('downscroll')) angle = 180;
x += width / 2;
animation.play(data.colorName + 'holdend');
updateHitbox();
x -= width / 2;
if (PlayState.instance.currentStageId.startsWith('school')) x += 30;
if (prevNote.isSustainNote)
{
prevNote.animation.play(prevNote.colorName + 'hold');
prevNote.updateHitbox();
var scaleThing:Float = Math.round((Conductor.stepCrochet) * (0.45 * FlxMath.roundDecimal(SongLoad.getSpeed(), 2)));
// get them a LIL closer together cuz the antialiasing blurs the edges
if (antialiasing) scaleThing *= 1.0 + (1.0 / prevNote.frameHeight);
prevNote.scale.y = scaleThing / prevNote.frameHeight;
prevNote.updateHitbox();
}
}
}
override function destroy()
{
prevNote = null;
super.destroy();
}
public function updateColors():Void
{
colorSwap.update(arrowColors[data.noteData]);
}
override function update(elapsed:Float)
{
super.update(elapsed);
// mustPress indicates the player is the one pressing the key
if (mustPress)
{
// miss on the NEXT frame so lag doesnt make u miss notes
if (willMiss && !wasGoodHit)
{
tooLate = true;
canBeHit = false;
}
else
{
if (!pastHalfWay && data.strumTime <= Conductor.songPosition)
{
pastHalfWay = true;
noteSpeedMulti *= 2;
}
if (data.strumTime > Conductor.songPosition - HIT_WINDOW)
{
// * 0.5 if sustain note, so u have to keep holding it closer to all the way thru!
if (data.strumTime < Conductor.songPosition + (HIT_WINDOW * (isSustainNote ? 0.5 : 1))) canBeHit = true;
}
else
{
canBeHit = true;
willMiss = true;
}
}
}
else
{
canBeHit = false;
if (data.strumTime <= Conductor.songPosition) wasGoodHit = true;
}
if (tooLate)
{
if (alpha > 0.3) alpha = 0.3;
}
}
static public function fromData(data:NoteData, prevNote:Note, isSustainNote = false)
{
var result = new Note(data.strumTime, data.noteData, prevNote, isSustainNote);
result.data = data;
return result;
}
2020-10-03 06:50:15 +00:00
}