mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-01 12:24:27 +00:00
151 lines
3.2 KiB
Haxe
151 lines
3.2 KiB
Haxe
package ui;
|
|
|
|
import flixel.FlxG;
|
|
import flixel.FlxSprite;
|
|
import flixel.group.FlxGroup;
|
|
import flixel.util.FlxColor;
|
|
import ui.AtlasText.AtlasFont;
|
|
import ui.TextMenuList.TextMenuItem;
|
|
|
|
class PreferencesMenu extends ui.OptionsState.Page
|
|
{
|
|
public static var preferences:Map<String, Dynamic> = new Map();
|
|
|
|
var items:TextMenuList;
|
|
|
|
var checkboxes:Array<CheckboxThingie> = [];
|
|
|
|
public function new()
|
|
{
|
|
super();
|
|
add(items = new TextMenuList());
|
|
|
|
createPrefItem('naughtyness', 'censor-naughty', false);
|
|
createPrefItem('downscroll', 'downscroll', false);
|
|
createPrefItem('flashing menu', 'flashing-menu', true);
|
|
createPrefItem('Camera Zooming on Beat', 'camera-zoom', true);
|
|
}
|
|
|
|
public static function getPref(pref:String):Dynamic
|
|
{
|
|
return preferences.get(pref);
|
|
}
|
|
|
|
public static function initPrefs():Void
|
|
{
|
|
preferenceCheck('censor-naughty', false);
|
|
preferenceCheck('downscroll', false);
|
|
preferenceCheck('flashing-menu', true);
|
|
preferenceCheck('camera-zoom', true);
|
|
}
|
|
|
|
private function createPrefItem(prefName:String, prefString:String, prefValue:Dynamic):Void
|
|
{
|
|
items.createItem(100, 100 * items.length, prefName, AtlasFont.Bold, function()
|
|
{
|
|
preferenceCheck(prefString, prefValue);
|
|
|
|
switch (Type.typeof(prefValue).getName())
|
|
{
|
|
case 'TBool':
|
|
prefToggle(prefString);
|
|
|
|
default:
|
|
trace('swag');
|
|
}
|
|
});
|
|
|
|
switch (Type.typeof(prefValue).getName())
|
|
{
|
|
case 'TBool':
|
|
createCheckbox(prefString);
|
|
|
|
default:
|
|
trace('swag');
|
|
}
|
|
|
|
trace(Type.typeof(prefValue).getName());
|
|
}
|
|
|
|
function createCheckbox(prefString:String)
|
|
{
|
|
var checkbox:CheckboxThingie = new CheckboxThingie(0, 100 * (items.length - 1), preferences.get(prefString));
|
|
checkboxes.push(checkbox);
|
|
add(checkbox);
|
|
}
|
|
|
|
/**
|
|
* Assumes that the preference has already been checked/set?
|
|
*/
|
|
private function prefToggle(prefName:String)
|
|
{
|
|
var daSwap:Bool = preferences.get(prefName);
|
|
daSwap = !daSwap;
|
|
preferences.set(prefName, daSwap);
|
|
checkboxes[items.selectedIndex].daValue = daSwap;
|
|
trace('toggled? ' + preferences.get(prefName));
|
|
}
|
|
|
|
override function update(elapsed:Float)
|
|
{
|
|
super.update(elapsed);
|
|
}
|
|
|
|
private static function preferenceCheck(prefString:String, prefValue:Dynamic):Void
|
|
{
|
|
if (preferences.get(prefString) == null)
|
|
{
|
|
preferences.set(prefString, prefValue);
|
|
trace('set preference!');
|
|
}
|
|
else
|
|
{
|
|
trace('found preference: ' + preferences.get(prefString));
|
|
}
|
|
}
|
|
}
|
|
|
|
class CheckboxThingie extends FlxSprite
|
|
{
|
|
public var daValue(default, set):Bool;
|
|
|
|
public function new(x:Float, y:Float, daValue:Bool = false)
|
|
{
|
|
super(x, y);
|
|
|
|
frames = Paths.getSparrowAtlas('checkboxThingie');
|
|
animation.addByPrefix('static', 'Check Box unselected', 24, false);
|
|
animation.addByPrefix('checked', 'Check Box selecting animation', 24, false);
|
|
|
|
antialiasing = true;
|
|
|
|
setGraphicSize(Std.int(width * 0.7));
|
|
updateHitbox();
|
|
|
|
this.daValue = daValue;
|
|
}
|
|
|
|
override function update(elapsed:Float)
|
|
{
|
|
super.update(elapsed);
|
|
|
|
switch (animation.curAnim.name)
|
|
{
|
|
case 'static':
|
|
offset.set();
|
|
case 'checked':
|
|
offset.set(17, 70);
|
|
}
|
|
}
|
|
|
|
function set_daValue(value:Bool):Bool
|
|
{
|
|
if (value)
|
|
animation.play('checked', true);
|
|
else
|
|
animation.play('static');
|
|
|
|
return value;
|
|
}
|
|
}
|