X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FGameLayer.hh;h=f2a70f97f43e0bbe1ca28f9ec395f769cc368013;hp=c537af6391569230118af2ee7ff72f086b5f3d1f;hb=1da520638918096276158ecdfaeebc14a3d70be7;hpb=76b3f4be992514a740ac03cdbdd57844142a0b4c diff --git a/src/GameLayer.hh b/src/GameLayer.hh index c537af6..f2a70f9 100644 --- a/src/GameLayer.hh +++ b/src/GameLayer.hh @@ -23,15 +23,15 @@ #include -#include -#include -#include +#include +#include -#include // TODO -#include -#include -#include -#include +#include // TODO +#include +#include +#include +#include +#include #include "GameState.hh" #include "Hud.hh" @@ -40,46 +40,47 @@ class GameLayer; typedef boost::shared_ptr GameLayerP; -class GameLayer : public Mf::Layer +class GameLayer : public moof::view { public: - GameLayer(); - static GameLayerP alloc() { return GameLayerP(new GameLayer); } + GameLayer(); - void addedToCore(); + void did_add_to_view(); - void update(Mf::Scalar t, Mf::Scalar dt); - void draw(Mf::Scalar alpha) const; - bool handleEvent(const Mf::Event& event); + void update(moof::scalar t, moof::scalar dt); + void draw(moof::scalar alpha) const; + bool handle_event(const moof::event& event); private: void loadSceneLoader(); - void advanceScene(); + void advanceScene(moof::settings& settings); void thinkTimer(); - void setProjection(); - void setProjection(Mf::Scalar width, Mf::Scalar height); + void projection(); + void projection(moof::scalar width, moof::scalar height); - GameState mState; - Mf::Timer mThinkTimer; + GameState state_; + moof::timer mThinkTimer; HudP mHud; - Mf::SoundStream mMusic; - Mf::Sound mPunchSound; + //moof::sound_stream mMusic; + moof::sound punch_sound_; + + moof::sound music_; - Mf::Ray2 mRay; - Mf::Line2 mLine; - Mf::Circle mCircle; + moof::ray2 mRay; + moof::line2 mLine; + moof::circle mCircle; - Mf::Timer mRayTimer; + moof::timer mRayTimer; void rayTimer(); };