This repository has been archived on 2022-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
shapes-juke/src/sj/LoadingScene.d

75 lines
1.3 KiB
D

/// License: MIT
module sj.LoadingScene;
import gl4d;
import sj.Args,
sj.FontSet,
sj.KeyInput,
sj.LobbyWorld,
sj.Music,
sj.PlayScene,
sj.ProgramSet,
sj.SceneInterface;
///
class LoadingScene : SceneInterface {
public:
///
this(
in ref Args args,
LobbyWorld lobby,
ProgramSet programs,
FontSet fonts) {
args_ = args;
lobby_ = lobby;
programs_ = programs;
fonts_ = fonts;
}
~this() {
}
///
void SetupSceneDependency(PlayScene play) { // TODO: add play scene
play_scene_ = play;
}
///
void Initialize(Music music, float offset_beat) {
music_ = music;
offset_beat_ = offset_beat;
first_drawn_ = false;
}
override SceneInterface Update(KeyInput input) {
if (first_drawn_) {
// TODO: parallelize context creation
auto context = music_.CreatePlayerContext(
vec2i(args_.window_size, args_.window_size), programs_.player);
play_scene_.Initialize(music_, context, offset_beat_);
return play_scene_;
}
return this;
}
override void Draw() {
lobby_.Draw();
first_drawn_ = true;
}
private:
const Args args_;
PlayScene play_scene_;
ProgramSet programs_;
FontSet fonts_;
LobbyWorld lobby_;
Music music_;
float offset_beat_;
bool first_drawn_;
}