1
0
mirror of https://github.com/Melon-Bread/Pet.GB synced 2024-11-24 20:58:19 -05:00
Pet.GB/source/HUD.hx

235 lines
5.5 KiB
Haxe
Raw Normal View History

2016-10-03 20:43:09 -04:00
package;
import flixel.FlxG;
import flixel.FlxSprite;
import flixel.group.FlxGroup;
import flixel.system.FlxSound;
import flixel.text.FlxText;
import flixel.util.FlxColor;
class HUD extends FlxTypedGroup<FlxSprite>
{
// Top
private var _sprTop:FlxSprite;
private var _txtInfo:FlxText;
private var _sprInfo:FlxSprite;
private var _txtFeed:FlxText;
private var _sprFeed:FlxSprite;
private var _txtTrain:FlxText;
private var _sprTrain:FlxSprite;
private var _txtRest:FlxText;
private var _sprRest:FlxSprite;
// Bottom
private var _sprBottom:FlxSprite;
private var _txtCheer:FlxText;
private var _sprCheer:FlxSprite;
private var _txtScold:FlxText;
private var _sprScold:FlxSprite;
private var _txtWipe:FlxText;
private var _sprWipe:FlxSprite;
private var _txtConfig:FlxText;
private var _sprConfig:FlxSprite;
// Sounds
private var _sndSelect:FlxSound;
private var _sndNext:FlxSound;
// Misc
private var _menuOption:Int;
private var _sprSelect:FlxSprite;
private var _gel:Gel;
public function new(g:Gel)
{
super();
// Top
_sprTop = new FlxSprite(0, 0, AssetPaths.HUD_Background__png);
add(_sprTop);
// Info
_txtInfo = new FlxText(1, (_sprTop.height - 13), 0, "Info", 8);
_txtInfo.setFormat(AssetPaths.EarlyGameBoy__ttf, 8, FlxColor.fromRGB(8, 24, 32, 0), CENTER);
add(_txtInfo);
_sprInfo = new FlxSprite((_txtInfo.x + 3), (_txtInfo.y - 17), AssetPaths.Info__png);
add(_sprInfo);
// Feed
_txtFeed = new FlxText((_txtInfo.x + _txtInfo.width + 4), (_sprTop.height - 13), 0, "Feed", 8);
_txtFeed.setFormat(AssetPaths.EarlyGameBoy__ttf, 8 , FlxColor.fromRGB(8, 24, 32, 0), CENTER);
add(_txtFeed);
_sprFeed = new FlxSprite((_txtFeed.x + 2), (_txtFeed.y - 17), AssetPaths.Feed__png);
add(_sprFeed);
// Train
_txtTrain = new FlxText((_txtFeed.x + _txtFeed.width - 1), (_sprTop.height - 13), 0, "Train", 8);
_txtTrain.setFormat(AssetPaths.EarlyGameBoy__ttf, 8, FlxColor.fromRGB(8, 24, 32, 0), CENTER);
add(_txtTrain);
_sprTrain = new FlxSprite((_txtTrain.x + 6), (_txtTrain.y - 17), AssetPaths.Train__png);
add(_sprTrain);
// Rest
_txtRest = new FlxText((_txtTrain.x + _txtTrain.width), (_sprTop.height - 13), 0, "Rest", 8);
_txtRest.setFormat(AssetPaths.EarlyGameBoy__ttf, 8, FlxColor.fromRGB(8, 24, 32, 0), CENTER);
add(_txtRest);
_sprRest = new FlxSprite((_txtRest.x + 2), (_txtRest.y - 17), AssetPaths.Rest__png);
add(_sprRest);
// Bottom
_sprBottom = new FlxSprite(0, (FlxG.height - _sprTop.height), AssetPaths.HUD_Background__png);
add(_sprBottom);
// Cheer
_txtCheer = new FlxText(-2, (FlxG.height - 13), 0, "Cheer", 8);
_txtCheer.setFormat(AssetPaths.EarlyGameBoy__ttf, 8, FlxColor.fromRGB(8, 24, 32, 0), CENTER);
add(_txtCheer);
_sprCheer = new FlxSprite((_txtCheer.x + 6), (_txtCheer.y - 17), AssetPaths.Cheer__png);
add (_sprCheer);
// Scold
_txtScold = new FlxText((_txtCheer.x + _txtCheer.width - 5), (FlxG.height - 13), 0, "Scold", 8);
_txtScold.setFormat(AssetPaths.EarlyGameBoy__ttf, 8, FlxColor.fromRGB(8, 24, 32, 0), CENTER);
add(_txtScold);
_sprScold = new FlxSprite((_txtScold.x + 6), (_txtScold.y - 17), AssetPaths.Scold__png);
add(_sprScold);
// Wipe
_txtWipe = new FlxText((_txtScold.x + _txtScold.width - 1), (FlxG.height - 13), 0, "Wipe", 8);
_txtWipe.setFormat(AssetPaths.EarlyGameBoy__ttf, 8, FlxColor.fromRGB(8, 24, 32, 0), CENTER);
add(_txtWipe);
_sprWipe = new FlxSprite((_txtWipe.x + 2), (_txtWipe.y - 17), AssetPaths.Wipe__png);
add(_sprWipe);
// Config
_txtConfig = new FlxText((_txtWipe.x + _txtWipe.width + 3), (FlxG.height - 13), 0, "Conf", 8);
_txtConfig.setFormat(AssetPaths.EarlyGameBoy__ttf, 8, FlxColor.fromRGB(8, 24, 32, 0), CENTER);
add(_txtConfig);
_sprConfig = new FlxSprite((_txtConfig.x + 2), (_txtConfig.y - 17), AssetPaths.Config__png);
add(_sprConfig);
// Sound
_sndSelect = FlxG.sound.load(AssetPaths.Select__ogg);
_sndNext = FlxG.sound.load(AssetPaths.Next__ogg);
// Misc
_menuOption = 0;
_gel = g;
_sprSelect = new FlxSprite(0, 0, AssetPaths.tmpSelect__png);
add(_sprSelect);
// DEBUG
FlxG.watch.add(this, "_menuOption", "Menu Index");
FlxG.watch.add(_sprSelect, "x", "Selection X");
FlxG.watch.add(_sprSelect, "y", "Selection Y");
}
override public function update(elapsed:Float):Void
{
super.update(elapsed);
if (FlxG.keys.justPressed.RIGHT)
nextOption(true);
else if (FlxG.keys.justPressed.LEFT)
nextOption(false);
else if (FlxG.keys.justPressed.X)
makeOption(_menuOption);
}
private function nextOption(increment:Bool):Void
{
if (increment)
{
if (_menuOption >= 7)
_menuOption = 0;
else
_menuOption++;
if (_menuOption >= 4)
{
_sprSelect.x = (_menuOption - 4) * 40;
_sprSelect.y = _sprBottom.y;
}
else
{
_sprSelect.x = _menuOption * 40;
_sprSelect.y = 0;
}
}
else
{
if (_menuOption <= 0)
_menuOption = 7;
else
_menuOption--;
if (_menuOption >= 4)
{
_sprSelect.x = (_menuOption - 4) * 40;
_sprSelect.y = _sprBottom.y;
}
else
{
_sprSelect.x = _menuOption * 40;
_sprSelect.y = 0;
}
}
_sndNext.play(true);
}
private function makeOption(option:Int):Void
{
switch(option)
{
case 0:
//
// FEED
case 1:
feedGel();
case 2:
//
case 3:
//
case 4:
//
case 5:
//
case 6:
//
case 7:
//
}
_sndSelect.play(true);
}
private function feedGel():Void
{
_gel.EatFood();
}
}
enum MenuOption
{
INFO;
FEED;
TRAIN;
REST;
CHEER;
SCOLD;
WIPE;
CONFIG;
}