2021-02-09 18:07:05 +00:00
|
|
|
package;
|
|
|
|
|
|
|
|
import flixel.FlxG;
|
|
|
|
import flixel.FlxSprite;
|
2021-03-10 00:41:03 +00:00
|
|
|
import flixel.FlxState;
|
2021-02-09 18:07:05 +00:00
|
|
|
import flixel.graphics.frames.FlxAtlasFrames;
|
|
|
|
import flixel.util.FlxTimer;
|
2021-03-10 00:41:03 +00:00
|
|
|
import haxe.io.Path;
|
|
|
|
import lime.app.Future;
|
|
|
|
import lime.app.Promise;
|
2021-02-09 18:07:05 +00:00
|
|
|
import lime.utils.AssetLibrary;
|
|
|
|
import lime.utils.AssetManifest;
|
2021-03-10 00:41:03 +00:00
|
|
|
import lime.utils.Assets as LimeAssets;
|
|
|
|
import openfl.utils.Assets;
|
2021-02-09 18:07:05 +00:00
|
|
|
|
|
|
|
class LoadingState extends MusicBeatState
|
|
|
|
{
|
|
|
|
inline static var MIN_TIME = 1.0;
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
var target:FlxState;
|
|
|
|
var stopMusic = false;
|
|
|
|
var callbacks:MultiCallback;
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
var logo:FlxSprite;
|
|
|
|
var gfDance:FlxSprite;
|
|
|
|
var danceLeft = false;
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
function new(target:FlxState, stopMusic:Bool)
|
|
|
|
{
|
|
|
|
super();
|
|
|
|
this.target = target;
|
|
|
|
this.stopMusic = stopMusic;
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
override function create()
|
|
|
|
{
|
|
|
|
logo = new FlxSprite(-150, -100);
|
2021-02-10 20:18:14 +00:00
|
|
|
logo.frames = Paths.getSparrowAtlas('logoBumpin');
|
2021-02-09 18:07:05 +00:00
|
|
|
logo.antialiasing = true;
|
|
|
|
logo.animation.addByPrefix('bump', 'logo bumpin', 24);
|
|
|
|
logo.animation.play('bump');
|
|
|
|
logo.updateHitbox();
|
|
|
|
// logoBl.screenCenter();
|
|
|
|
// logoBl.color = FlxColor.BLACK;
|
|
|
|
|
|
|
|
gfDance = new FlxSprite(FlxG.width * 0.4, FlxG.height * 0.07);
|
2021-02-10 20:18:14 +00:00
|
|
|
gfDance.frames = Paths.getSparrowAtlas('gfDanceTitle');
|
2021-02-09 18:07:05 +00:00
|
|
|
gfDance.animation.addByIndices('danceLeft', 'gfDance', [30, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14], "", 24, false);
|
|
|
|
gfDance.animation.addByIndices('danceRight', 'gfDance', [15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29], "", 24, false);
|
|
|
|
gfDance.antialiasing = true;
|
|
|
|
add(gfDance);
|
|
|
|
add(logo);
|
2021-03-10 00:41:03 +00:00
|
|
|
|
|
|
|
initSongsManifest().onComplete(function(lib)
|
|
|
|
{
|
|
|
|
callbacks = new MultiCallback(onLoad);
|
|
|
|
var introComplete = callbacks.add("introComplete");
|
|
|
|
checkLoadSong(getSongPath());
|
|
|
|
if (PlayState.SONG.needsVoices)
|
|
|
|
checkLoadSong(getVocalPath());
|
|
|
|
checkLibrary("shared");
|
|
|
|
if (PlayState.storyWeek > 0)
|
|
|
|
checkLibrary("week" + PlayState.storyWeek);
|
|
|
|
else
|
|
|
|
checkLibrary("tutorial");
|
|
|
|
|
|
|
|
var fadeTime = 0.5;
|
|
|
|
FlxG.camera.fade(FlxG.camera.bgColor, fadeTime, true);
|
|
|
|
new FlxTimer().start(fadeTime + MIN_TIME, function(_) introComplete());
|
|
|
|
});
|
2021-02-09 18:07:05 +00:00
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
function checkLoadSong(path:String)
|
|
|
|
{
|
|
|
|
if (!Assets.cache.hasSound(path))
|
|
|
|
{
|
|
|
|
var library = Assets.getLibrary("songs");
|
|
|
|
final symbolPath = path.split(":").pop();
|
2021-02-10 20:18:14 +00:00
|
|
|
// @:privateAccess
|
|
|
|
// library.types.set(symbolPath, SOUND);
|
|
|
|
// @:privateAccess
|
|
|
|
// library.pathGroups.set(symbolPath, [library.__cacheBreak(symbolPath)]);
|
2021-02-09 18:07:05 +00:00
|
|
|
var callback = callbacks.add("song:" + path);
|
2021-03-10 00:41:03 +00:00
|
|
|
Assets.loadSound(path).onComplete(function(_)
|
|
|
|
{
|
|
|
|
callback();
|
|
|
|
});
|
2021-02-09 18:07:05 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
function checkLibrary(library:String)
|
|
|
|
{
|
2021-02-10 20:18:14 +00:00
|
|
|
trace(Assets.hasLibrary(library));
|
2021-02-09 18:07:05 +00:00
|
|
|
if (Assets.getLibrary(library) == null)
|
|
|
|
{
|
2021-02-10 20:18:14 +00:00
|
|
|
@:privateAccess
|
|
|
|
if (!LimeAssets.libraryPaths.exists(library))
|
|
|
|
throw "Missing library: " + library;
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
var callback = callbacks.add("library:" + library);
|
2021-03-10 00:41:03 +00:00
|
|
|
Assets.loadLibrary(library).onComplete(function(_)
|
|
|
|
{
|
|
|
|
callback();
|
|
|
|
});
|
2021-02-09 18:07:05 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
override function beatHit()
|
|
|
|
{
|
|
|
|
super.beatHit();
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
logo.animation.play('bump');
|
|
|
|
danceLeft = !danceLeft;
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
if (danceLeft)
|
|
|
|
gfDance.animation.play('danceRight');
|
|
|
|
else
|
|
|
|
gfDance.animation.play('danceLeft');
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
override function update(elapsed:Float)
|
|
|
|
{
|
|
|
|
super.update(elapsed);
|
2021-02-10 20:18:14 +00:00
|
|
|
#if debug
|
|
|
|
if (FlxG.keys.justPressed.SPACE)
|
|
|
|
trace('fired: ' + callbacks.getFired() + " unfired:" + callbacks.getUnfired());
|
|
|
|
#end
|
2021-02-09 18:07:05 +00:00
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
function onLoad()
|
|
|
|
{
|
|
|
|
if (stopMusic && FlxG.sound.music != null)
|
|
|
|
FlxG.sound.music.stop();
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
FlxG.switchState(target);
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
static function getSongPath()
|
|
|
|
{
|
|
|
|
return Paths.inst(PlayState.SONG.song);
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
static function getVocalPath()
|
|
|
|
{
|
|
|
|
return Paths.voices(PlayState.SONG.song);
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
inline static public function loadAndSwitchState(target:FlxState, stopMusic = false)
|
|
|
|
{
|
|
|
|
FlxG.switchState(getNextState(target, stopMusic));
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
static function getNextState(target:FlxState, stopMusic = false):FlxState
|
|
|
|
{
|
2021-02-10 20:18:14 +00:00
|
|
|
Paths.setCurrentLevel("week" + PlayState.storyWeek);
|
2021-02-11 19:14:02 +00:00
|
|
|
#if NO_PRELOAD_ALL
|
2021-02-09 18:07:05 +00:00
|
|
|
var loaded = isSoundLoaded(getSongPath())
|
|
|
|
&& (!PlayState.SONG.needsVoices || isSoundLoaded(getVocalPath()))
|
|
|
|
&& isLibraryLoaded("shared");
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
if (!loaded)
|
|
|
|
return new LoadingState(target, stopMusic);
|
|
|
|
#end
|
|
|
|
if (stopMusic && FlxG.sound.music != null)
|
|
|
|
FlxG.sound.music.stop();
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
return target;
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-11 19:14:02 +00:00
|
|
|
#if NO_PRELOAD_ALL
|
2021-02-09 18:07:05 +00:00
|
|
|
static function isSoundLoaded(path:String):Bool
|
|
|
|
{
|
|
|
|
return Assets.cache.hasSound(path);
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
static function isLibraryLoaded(library:String):Bool
|
|
|
|
{
|
|
|
|
return Assets.getLibrary(library) != null;
|
|
|
|
}
|
|
|
|
#end
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
override function destroy()
|
|
|
|
{
|
|
|
|
super.destroy();
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
callbacks = null;
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-10 20:18:14 +00:00
|
|
|
static function initSongsManifest()
|
2021-02-09 18:07:05 +00:00
|
|
|
{
|
2021-02-10 20:18:14 +00:00
|
|
|
var id = "songs";
|
2021-02-09 18:07:05 +00:00
|
|
|
var promise = new Promise<AssetLibrary>();
|
|
|
|
|
|
|
|
var library = LimeAssets.getLibrary(id);
|
|
|
|
|
|
|
|
if (library != null)
|
|
|
|
{
|
|
|
|
return Future.withValue(library);
|
|
|
|
}
|
2021-02-10 20:18:14 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
var path = id;
|
|
|
|
var rootPath = null;
|
|
|
|
|
2021-02-10 20:18:14 +00:00
|
|
|
@:privateAccess
|
|
|
|
var libraryPaths = LimeAssets.libraryPaths;
|
|
|
|
if (libraryPaths.exists(id))
|
|
|
|
{
|
|
|
|
path = libraryPaths[id];
|
|
|
|
rootPath = Path.directory(path);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (StringTools.endsWith(path, ".bundle"))
|
2021-02-09 18:07:05 +00:00
|
|
|
{
|
2021-02-10 20:18:14 +00:00
|
|
|
rootPath = path;
|
|
|
|
path += "/library.json";
|
2021-02-09 18:07:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-02-10 20:18:14 +00:00
|
|
|
rootPath = Path.directory(path);
|
2021-02-09 18:07:05 +00:00
|
|
|
}
|
2021-02-10 20:18:14 +00:00
|
|
|
@:privateAccess
|
|
|
|
path = LimeAssets.__cacheBreak(path);
|
|
|
|
}
|
2021-02-09 18:07:05 +00:00
|
|
|
|
2021-02-10 20:18:14 +00:00
|
|
|
AssetManifest.loadFromFile(path, rootPath).onComplete(function(manifest)
|
|
|
|
{
|
|
|
|
if (manifest == null)
|
2021-02-09 18:07:05 +00:00
|
|
|
{
|
2021-02-10 20:18:14 +00:00
|
|
|
promise.error("Cannot parse asset manifest for library \"" + id + "\"");
|
|
|
|
return;
|
|
|
|
}
|
2021-02-09 18:07:05 +00:00
|
|
|
|
2021-02-10 20:18:14 +00:00
|
|
|
var library = AssetLibrary.fromManifest(manifest);
|
2021-02-09 18:07:05 +00:00
|
|
|
|
2021-02-10 20:18:14 +00:00
|
|
|
if (library == null)
|
2021-02-09 18:07:05 +00:00
|
|
|
{
|
2021-02-10 20:18:14 +00:00
|
|
|
promise.error("Cannot open library \"" + id + "\"");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
@:privateAccess
|
|
|
|
LimeAssets.libraries.set(id, library);
|
|
|
|
library.onChange.add(LimeAssets.onChange.dispatch);
|
|
|
|
promise.completeWith(Future.withValue(library));
|
|
|
|
}
|
|
|
|
}).onError(function(_)
|
|
|
|
{
|
2021-03-10 00:41:03 +00:00
|
|
|
promise.error("There is no asset library with an ID of \"" + id + "\"");
|
2021-02-10 20:18:14 +00:00
|
|
|
});
|
2021-02-09 18:07:05 +00:00
|
|
|
|
|
|
|
return promise.future;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class MultiCallback
|
|
|
|
{
|
|
|
|
public var callback:Void->Void;
|
|
|
|
public var logId:String = null;
|
|
|
|
public var length(default, null) = 0;
|
|
|
|
public var numRemaining(default, null) = 0;
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
var unfired = new Map<String, Void->Void>();
|
|
|
|
var fired = new Array<String>();
|
2021-03-10 00:41:03 +00:00
|
|
|
|
|
|
|
public function new(callback:Void->Void, logId:String = null)
|
2021-02-09 18:07:05 +00:00
|
|
|
{
|
|
|
|
this.callback = callback;
|
|
|
|
this.logId = logId;
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
public function add(id = "untitled")
|
|
|
|
{
|
|
|
|
id = '$length:$id';
|
|
|
|
length++;
|
|
|
|
numRemaining++;
|
|
|
|
var func:Void->Void = null;
|
2021-03-10 00:41:03 +00:00
|
|
|
func = function()
|
2021-02-09 18:07:05 +00:00
|
|
|
{
|
|
|
|
if (unfired.exists(id))
|
|
|
|
{
|
|
|
|
unfired.remove(id);
|
|
|
|
fired.push(id);
|
|
|
|
numRemaining--;
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
if (logId != null)
|
|
|
|
log('fired $id, $numRemaining remaining');
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
if (numRemaining == 0)
|
|
|
|
{
|
|
|
|
if (logId != null)
|
|
|
|
log('all callbacks fired');
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
log('already fired $id');
|
|
|
|
}
|
|
|
|
unfired[id] = func;
|
|
|
|
return func;
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
2021-02-09 18:07:05 +00:00
|
|
|
inline function log(msg):Void
|
|
|
|
{
|
|
|
|
if (logId != null)
|
|
|
|
trace('$logId: $msg');
|
|
|
|
}
|
2021-03-10 00:41:03 +00:00
|
|
|
|
|
|
|
public function getFired()
|
|
|
|
return fired.copy();
|
|
|
|
|
|
|
|
public function getUnfired()
|
|
|
|
return [for (id in unfired.keys()) id];
|
|
|
|
}
|