#include "PlayScene.h" #include "common.h" #include "GlyphElementFactory.h" #include "InputWindowElementFactory.h" #include "ResultScene.h" gj::PlayScene::PlayScene(Param&& p) : alloc_(p.alloc), logger_(p.logger), w_(p.w), h_(p.h), clock_(p.clock), store_(&clock_, 256) { GlyphElementFactory glyph(alloc_); InputWindowElementFactory inputWin(alloc_, &sb_); sb_.title = ConvertStrToWstr(p.score); Lua::FactoryMap map; map["Glyph"] = &glyph; map["InputWin"] = &inputWin; lua_ = alloc_->MakeUniq( alloc_, &store_, map, "res/score/" + p.score + ".lua"); logger_->Print(L"PlayScene init"); } gj::UniqPtr gj::PlayScene::Update(Frame& f) { if (store_.IsEmpty()) { return alloc_->MakeUniq(alloc_, clock_.parent(), sb_); } store_.Update(f); return nullptr; }