36 lines
847 B
C++
36 lines
847 B
C++
#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<Lua>(
|
|
alloc_, &store_, map, "res/score/" + p.score + ".lua");
|
|
|
|
logger_->Print(L"PlayScene init");
|
|
}
|
|
|
|
|
|
gj::UniqPtr<gj::iScene> gj::PlayScene::Update(Frame& f) {
|
|
if (store_.IsEmpty()) {
|
|
return alloc_->MakeUniq<iScene, ResultScene>(alloc_, clock_.parent(), sb_);
|
|
}
|
|
|
|
store_.Update(f);
|
|
return nullptr;
|
|
} |