-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStatsState.cpp
107 lines (81 loc) · 2.48 KB
/
StatsState.cpp
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#include "StatsState.h"
#include "MainMenuState.h"
StatsState StatsState::mStatsState;
void StatsState::init(Game* game)
{
// important!
setGame(game);
// load the campaign progress and all the stats
mProgress.loadProgress("levels\\campaign\\campaign_progress.txt");
mBackground = gGraphics->loadTexture("misc\\textures\\menu_bkgd.bmp");
mTableX = 600;
mTableY = 300;
mBackgroundTexture = gGraphics->loadTexture("misc\\textures\\epic_bkgd.bmp");
}
void StatsState::cleanup()
{
ReleaseCOM(mBackground);
ReleaseCOM(mBackgroundTexture);
}
void StatsState::pause()
{
}
void StatsState::resume()
{
}
void StatsState::handleEvents(UINT msg, WPARAM wParam, LPARAM lParam)
{
switch(msg)
{
case WM_KEYDOWN:
if( wParam == VK_ESCAPE ) {
changeState(MainMenuState::Instance());
}
break;
}
}
void StatsState::update(double dt)
{
}
void StatsState::drawMain(void)
{
gGraphics->BlitTexture(mBackgroundTexture, 0, 0, 1200, 900);
//gGraphics->BlitRect(600, 450, 1200, 900, D3DCOLOR_ARGB( 155, 155, 200, 000));
/* white background */
gGraphics->BlitTexture(mBackground, 525, 185, 356, 380);
gGraphics->drawText("Campaign Stats", 650, 200);
gGraphics->drawText("[ESC] to return", 650, 520);
/* table backgrounds */
gGraphics->BlitRect(700, 380, 260, 250, D3DCOLOR_ARGB(255,0,0,0));
gGraphics->BlitRect(700, 380, 250, 240, D3DCOLOR_ARGB(255,255,255,255));
gGraphics->BlitRect(700, 280, 260, 50, D3DCOLOR_ARGB(255,0,0,0));
gGraphics->BlitRect(700, 280, 250, 40, D3DCOLOR_ARGB(255,180,180,240));
/* titles */
gGraphics->drawText("Level:", 600, 275);
gGraphics->drawText("Record:", 680, 275);
gGraphics->drawText("Tries:", 775, 275);
/* get the list and display it*/
std::vector<LevelProgress> progressList = mProgress.getList();
char tmp[256];
for(int i = 0; i < progressList.size(); i++)
{
if(i % 2 > 0)
gGraphics->BlitRect(700, mTableY + 10 + 20*i, 250, 20, D3DCOLOR_ARGB(255,200,200,255));
else
gGraphics->BlitRect(700, mTableY + 10 + 20*i, 250, 20, D3DCOLOR_ARGB(255,255,255,255));
gGraphics->drawText((char*)progressList[i].name.c_str(), mTableX, mTableY + 20*i);
sprintf(tmp, "%.3f", progressList[i].bestTime);
gGraphics->drawText(tmp, mTableX + 100, mTableY + 20*i);
sprintf(tmp, "%i", progressList[i].tries);
gGraphics->drawText(tmp, mTableX + 200, mTableY + 20*i);
}
}
void StatsState::drawGui(void)
{
/* the green side */
gGraphics->BlitRect(1300, 450, 200, 900, D3DCOLOR_ARGB( 155, 155, 200, 000));
}
void StatsState::drawBkgd(void)
{
// ??
}