X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FGameLayer.hh;h=53613617b513aa7e95ef993fe376b21ec1bf335a;hp=73b6a23e6a141ec2315cb9f5f2a5f34e91e90dc8;hb=a295f8def17036c8071b56e181364f99a377cae7;hpb=b357615aba1dbde81e3c6999366604e6001010a7 diff --git a/src/GameLayer.hh b/src/GameLayer.hh index 73b6a23..5361361 100644 --- a/src/GameLayer.hh +++ b/src/GameLayer.hh @@ -40,11 +40,8 @@ #include -#include -#include #include #include -#include #include #include @@ -53,9 +50,8 @@ #include #include -#include "Character.hh" -#include "Heroine.hh" -#include "Scene.hh" +#include "Hud.hh" +#include "GameState.hh" class GameLayer; @@ -72,24 +68,11 @@ public: return GameLayerP(new GameLayer); } - void pushed(Mf::Engine& engine); + void pushedOntoEngine(); - void update(Mf::Engine& engine, Mf::Scalar t, Mf::Scalar dt); - void draw(Mf::Engine& engine, Mf::Scalar alpha) const; - bool handleEvent(Mf::Engine& engine, const Mf::Event& event); - - struct State - { - Mf::Script script; - std::vector sceneList; - - HeroineP heroine; - SceneP scene; - - Mf::PolynomialInterpolator<5> interp; - - Mf::Camera camera; - }; + void update(Mf::Scalar t, Mf::Scalar dt); + void draw(Mf::Scalar alpha) const; + bool handleEvent(const Mf::Event& event); private: @@ -101,9 +84,11 @@ private: void setProjection(); void setProjection(Mf::Scalar width, Mf::Scalar height); - State mState; + GameState mState; Mf::Timer mThinkTimer; + HudP mHud; + Mf::SoundStream mMusic; Mf::Sound mPunchSound;