-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLevelCompletedState.h
49 lines (40 loc) · 1.05 KB
/
LevelCompletedState.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef LEVELCOMPLETEDSTATE_H
#define LEVELCOMPLETEDSTATE_H
#include "Window.h"
#include "GameState.h"
class WindowHandler;
class LevelCompletedState : public GameState
{
public:
void init(Game* game);
void cleanup();
void pause();
void resume();
bool messageHandler(WindowID id, WindowMessage msg); // returns false if the state needs to change and the window loop needs to break
void handleEvents(UINT msg, WPARAM wParam, LPARAM lParam);
void update(double dt);
void drawMain(void);
void drawGui(void);
void drawBkgd(void);
void setCompletedType(LevelType type);
void setLevels(string current, string next);
static LevelCompletedState* Instance() {
return &mLevelCompletedState;
}
protected:
LevelCompletedState() {};
private:
static LevelCompletedState mLevelCompletedState;
WindowHandler *mWindowHandler;
IDirect3DTexture9* mBkgdTexture;
LevelType mCompletedType;
string mCurrentLevel;
string mNextLevel;
private:
/* windows */
Button *mCustomNextButton;
Button *mCampaignNextButton;
Button *mMenuButton;
Button *mAgainButton;
};
#endif