-
Notifications
You must be signed in to change notification settings - Fork 0
/
Menu.cpp
153 lines (145 loc) · 3.76 KB
/
Menu.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
#include "Menu.h"
//the Class whose implimentation is most scetchy
//pass in pointer to object that contains all the textures
Menu::Menu(Textures *pSpriteSheet)
{
//add the buttons/background
//TODO: Make Button Insertion Less Hardcoded
mButtons.insert(mButtons.begin(), Button(sf::Vector2i(WindowWidth/2 - 100,200), sf::Vector2i(400, 182), pSpriteSheet->getTexture(sBUTTONS), bSTART));
mButtons.insert(mButtons.begin(), Button(sf::Vector2i(WindowWidth/2 - 100,300), sf::Vector2i(400, 182), pSpriteSheet->getTexture(sBUTTONS), bCREDITS));
mButtons.insert(mButtons.begin(), Button(sf::Vector2i(WindowWidth/2 - 100,300), sf::Vector2i(400, 182), pSpriteSheet->getTexture(sBUTTONS), bBACK));
mBackground.setTexture(*pSpriteSheet->getTexture(sBACKGROUND));
mBackground.setPosition(0,0);
//set origin to middle of sprite to rotate around middle
mBackground.setOrigin(400, 400);
mBackground.scale(2,2);
}
Menu::~Menu(void)
{
}
void Menu::update()
{
mBackground.rotate(0.1);
}
//TODO: REWORK THIS METHOD ALSO, ITS KINDA BAD TOO
//draw all the members of the menu
void Menu::draw(sf::RenderWindow *window)
{
//draw background
window->draw(mBackground);
//shouldn't be here got lazy at the end
sf::Texture texture;
sf::Sprite title;
//-------------------------------------
//for each button
for(int i = 0; i < mButtons.size(); i++)
{
//draw for each menu state
switch(mMenuState)
{
case(mMAIN):
//draw only buttons of right type in that menu state
switch(mButtons.at(i).getButtonType())
{
case(bSTART):
case(bOPTIONS):
case(bTUTORIAL):
case(bCREDITS):
mButtons.at(i).Draw(window);
break;
default:
break;
}
case(mOPTIONS):
break;
case(mTUTORIAL):
break;
case(mCREDITS):
switch(mButtons.at(i).getButtonType())
{
case(bSTART):
case(bOPTIONS):
case(bTUTORIAL):
case(bCREDITS):
break;
case(bBACK):
mButtons.at(i).Draw(window);
break;
default:
break;
}
break;
default:
break;
}
//non buttons draw
switch (mMenuState)
{
case mMAIN:
//lazyness made me load and display texture here
texture.loadFromFile("Assets/title.png");
title.setTexture(texture);
title.setScale(0.7,0.7);
title.setPosition(WindowWidth/2 - title.getGlobalBounds().width/2, 50);
window->draw(title);
break;
case mOPTIONS:
break;
case mTUTORIAL:
break;
case mCREDITS:
//lazyness made me load and display texture here
texture.loadFromFile("Assets/credits.png");
title.setTexture(texture);
title.setScale(0.7,0.7);
title.setPosition(WindowWidth/2 - title.getGlobalBounds().width/2, 50);
window->draw(title);
break;
default:
break;
}
}
}
//get input and do stuff based on that
void Menu::input(sf::Event *pEvent, sf::RenderWindow *pWindow)
{
sf::Vector2i mousePos = sf::Mouse::getPosition(*pWindow);
for(int i=0; i < mButtons.size(); i++)
{
switch(pEvent->type)
{
case(sf::Event::MouseButtonPressed):
if(pEvent->mouseButton.button == sf::Mouse::Left && mButtons.at(i).getBounds().contains(mousePos.x, mousePos.y))
{
mButtons.at(i).ButtonEvent();
}
break;
case(sf::Event::MouseLeft):
if(mButtons.at(i).isPressed())
{
mButtons.at(i).PressButton();
}
break;
case(sf::Event::MouseButtonReleased):
if(pEvent->mouseButton.button == sf::Mouse::Left &&
mButtons.at(i).isPressed() &&
mButtons.at(i).getBounds().contains(mousePos.x, mousePos.y))
{
//tell the button to do its stuff
//we dont actually do anyhting on button press down, we wait till click release
//to do stuff
mButtons.at(i).ButtonEvent();
}
else if (pEvent->mouseButton.button == sf::Mouse::Left && mButtons.at(i).isPressed())
{
mButtons.at(i).PressButton();
}
break;
}
}
}
//not implimented yet
void Menu::reset()
{
mMenuState = mMAIN;
}