-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTestState.h
42 lines (36 loc) · 819 Bytes
/
TestState.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
#ifndef TESTSTATE_H
#define TESTSTATE_H
#include "PlayState.h"
#include "EditorState.h"
#include "Sound.h"
extern Sound* gSound;
class TestState : public PlayState
{
public:
void handleEvents(UINT msg, WPARAM wParam, LPARAM lParam) {
switch(msg)
{
case WM_KEYDOWN:
// should acctually pause the editor instead
if( wParam == VK_ESCAPE ) {
string levelName = getLevel();
changeState(EditorState::Instance());
EditorState::Instance()->setLevel(levelName);
gSound->playMusic("misc\\sound\\menu_loop.wav", true, true);
}
break;
}
}
static TestState* Instance() {
return &mTestState;
}
void drawGui(void) {
PlayState::drawGui();
gGraphics->drawText("Press ESC to return", 1220, 20);
}
protected:
TestState() {};
private:
static TestState mTestState;
};
#endif