aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui_menu.cpp
blob: f0b2eeb238c0fccff49a407467643728d0bc2662 (plain)
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
#include <ui_menu.hpp>

#include <common.hpp>
#include <engine.hpp>
#include <fileio.hpp>
#include <gametime.hpp>
#include <render.hpp>
#include <texture.hpp>
#include <font.hpp>

#include <fstream>

static Menu* currentMenu = nullptr;

bool SDLReceiver::receive(const MainSDLEvent& mse)
{
	if (currentMenu == nullptr)
		return true;

	switch (mse.event.type) {
	case SDL_QUIT:
		game::endGame();
		break;
	case SDL_MOUSEBUTTONUP:
		if (mse.event.button.button & SDL_BUTTON_LEFT)
			clicked = true;
		break;
	case SDL_MOUSEBUTTONDOWN:
		break; // consume events	
	case SDL_KEYUP:
		if (currentMenu != nullptr && mse.event.key.keysym.sym == SDLK_ESCAPE) {
			currentMenu->gotoParent();
		} else {
			clicked = false;
		}
		break;
	case SDL_KEYDOWN:
		break; // consume events
	default:
		return true;
		break;
	}

	return false;
}

bool SDLReceiver::clicked = false;

extern vec2 offset;

static Menu pauseMenu;
static Menu optionsMenu;
static Menu controlsMenu;

void Menu::gotoParent(void)
{
	if (parent == nullptr) {
		game::config::update();
		FontSystem::setFontSize(FontSystem::SizeSmall);
		game::time::togglePause(false);
	}
	
	currentMenu = parent;
}

std::string& deleteWord(std::string& s)
{
	while (s.back() != ' ')
		s.pop_back();

	return s;
}

std::string sym2str(const SDL_Keycode& c)
{
	std::string s = "";

	switch (c) {
	case SDLK_UP     : s = "UP"      ; break;
	case SDLK_DOWN   : s = "DOWN"    ; break;
	case SDLK_LEFT   : s = "LEFT"    ; break;
	case SDLK_RIGHT  : s = "RIGHT"   ; break;
	case SDLK_LSHIFT : s = "LSHIFT"  ; break;
	case SDLK_RSHIFT : s = "RSHIFT"  ; break;
	case SDLK_LALT   : s = "LALT"    ; break;
	case SDLK_RALT   : s = "RALT"    ; break;
	case SDLK_LCTRL  : s = "LCONTROL"; break;
	case SDLK_RCTRL  : s = "RCONTROL"; break;
	case SDLK_TAB    : s = "TAB"     ; break;
	default          : s += static_cast<char>(c); break;
	}

	return s;
}

void initControls(Menu *m)
{
	auto cfg = readFileA("config/controls.dat");
	unsigned i = 0;
	SDL_Keycode z;

	for (const auto &l : cfg) {
		z = static_cast<SDL_Keycode>(std::stoi(l));
		setControl(i, z);
		m->items[i++].text += sym2str(z);
	}
}

void saveControls(void)
{
	std::ofstream out ("config/controls.dat");
	SDL_Keycode q = 1;
	unsigned int i = 0;

	while ((q = getControl(i++)) != 0) {
		auto d = std::to_string(q) + '\n';
		out.write(d.data(), d.size());
	}

	out.close();
}
void setControlF(unsigned int index, menuItem &m)
{
	SDL_Event e;

	do SDL_WaitEvent(&e);
	while (e.type != SDL_KEYDOWN);

	setControl(index, e.key.keysym.sym);
	deleteWord(m.text);

	m.text += sym2str(e.key.keysym.sym);
	saveControls();
}

namespace ui {
    namespace menu {
        menuItem createButton(vec2 l, dim2 d, Color c, const char* t, MenuAction f) {
            menuItem temp (l, d, c, t);

            temp.member = 0;
            temp.button.func = f;

            return temp;
        }

        menuItem createChildButton(vec2 l, dim2 d, Color c, const char* t, Menu* _child) {
            menuItem temp (l, d, c, t, _child);

            temp.member = -1;
            temp.button.func = nullptr;

            return temp;
        }

        menuItem createParentButton(vec2 l, dim2 d, Color c, const char* t) {
            menuItem temp (l, d, c, t);

            temp.member = -2;
            temp.button.func = nullptr;

            return temp;
        }

        menuItem createSlider(vec2 l, dim2 d, Color c, float min, float max, const char* t, float* v) {
            menuItem temp (l, d, c, t);

            temp.member = 1;
            temp.slider.minValue = min;
            temp.slider.maxValue = max;
            temp.slider.var = v;
            temp.slider.sliderLoc = *v;

            return temp;
        }

		void init(void) {
			dim2 obSize (256, 75);
			Color black (0, 0, 0);
			// Create the main pause menu
			pauseMenu.items.push_back(ui::menu::createParentButton(
				vec2(-128, 150), obSize, black, "Resume"));

			pauseMenu.items.push_back(ui::menu::createChildButton(
				vec2(-128, 50), obSize, black, "Options", &optionsMenu));

			pauseMenu.items.push_back(ui::menu::createChildButton(
				vec2(-128, -50), obSize, black, "Controls", &controlsMenu));

			pauseMenu.items.push_back(ui::menu::createButton(
				vec2(-128, -150), obSize, black, "Save and Quit",
				[]() {
					game::config::update(); // TODO necessary?
					game::config::save();
					game::endGame();
				} ));

			pauseMenu.items.push_back(ui::menu::createButton(
				vec2(-128, -250), obSize, black, "Segfault",
				[]() { ++*((int *)0); } ));

			// Create the options (sound) menu
			optionsMenu.items.push_back(ui::menu::createSlider(
				vec2(-static_cast<float>(game::SCREEN_WIDTH) / 4, -(512/2)), dim2(50, 512),
				black, 0, 100, "Master", &game::config::VOLUME_MASTER));
			optionsMenu.items.push_back(ui::menu::createSlider(
				vec2(-200, 100), dim2(512, 50), black, 0, 100, "Music", &game::config::VOLUME_MUSIC));
			optionsMenu.items.push_back(ui::menu::createSlider(
				vec2(-200, 0), dim2(512, 50), black, 0, 100, "SFX", &game::config::VOLUME_SFX));

			optionsMenu.parent = &pauseMenu;

			// Create the controls menu
			dim2 cbSize (400, 75);
			controlsMenu.items.push_back(ui::menu::createButton(
				vec2(-450, 300), cbSize, black, "Up: ",
				[]() { setControlF(0, controlsMenu.items[0]); } ));

			controlsMenu.items.push_back(ui::menu::createButton(
				vec2(-450, 200), cbSize, black, "Left: ",
				[]() { setControlF(1, controlsMenu.items[1]); } ));

			controlsMenu.items.push_back(ui::menu::createButton(
				vec2(-450, 100), cbSize, black, "Right: ",
				[]() { setControlF(2, controlsMenu.items[2]); } ));

			controlsMenu.items.push_back(ui::menu::createButton(
				vec2(-450, 0), cbSize, black, "Sprint: ",
				[]() { setControlF(3, controlsMenu.items[3]); } ));

			controlsMenu.items.push_back(ui::menu::createButton(
				vec2(-450, -100), cbSize, black, "Creep: ",
				[]() { setControlF(4, controlsMenu.items[4]); } ));

			controlsMenu.items.push_back(ui::menu::createButton(
				vec2(-450, -200), cbSize, black, "Inventory: ",
				[]() { setControlF(5, controlsMenu.items[5]); } ));

			controlsMenu.parent = &pauseMenu;

			initControls(&controlsMenu);
		}

		void toggle(void) {
			currentMenu = &pauseMenu;
			if (currentMenu != nullptr)
				game::time::togglePause(true);
		}

        void draw(void) {
			if (currentMenu == nullptr)
				return;

			auto& SCREEN_WIDTH = game::SCREEN_WIDTH;
			auto& SCREEN_HEIGHT = game::SCREEN_HEIGHT;

			Render::useShader(&Render::textShader);

            game::config::update();
            FontSystem::setFontSize(FontSystem::SizeLarge);
			FontSystem::setFontZ(-9.0);
	
            mouse.x = ui::premouse.x+offset.x-(SCREEN_WIDTH/2);
            mouse.y = (offset.y+SCREEN_HEIGHT/2)-ui::premouse.y;

            //custom event polling for menu's so all other events are ignored
			static float cMult = 1.0f;
			static const ColorTex back (Color(0, 0, 0, 204));

			//draw the dark transparent background
			Render::textShader.use();

			back.use();
			Render::drawRect(vec2(offset.x - SCREEN_WIDTH / 2 - 1, offset.y - (SCREEN_HEIGHT / 2)),
			                 vec2(offset.x + SCREEN_WIDTH / 2, offset.y + (SCREEN_HEIGHT / 2)), -8.5);

			Render::textShader.unuse();

            //loop through all elements of the menu
            for (auto &m : currentMenu->items) {
				// reset the background modifier
				cMult = 1.0f;

				vec2 loc (offset.x + m.loc.x, offset.y + m.loc.y);
				vec2 end (loc.x + m.dim.x, loc.y + m.dim.y);

				//if the menu is any type of button
                if (m.member == 0 || m.member == -1 || m.member == -2) {
                    //tests if the mouse is over the button
                    if ((mouse.x >= loc.x && mouse.x <= end.x) && (mouse.y >= loc.y && mouse.y <= end.y)) {
						// set the darkness multiplier
						cMult = 0.6f;

                        //if the mouse is over the button and clicks
                        if (SDLReceiver::clicked) {
                            switch (m.member) {
                            case 0: //normal button
                                m.button.func();
                                break;
                            case -1:
                                currentMenu = m.child;
                                break;
                            case -2:
                                currentMenu->gotoParent();
                            default:
								break;
                            }

                        }
                    }

					ui::drawNiceBoxColor(loc, end, -8.6, Color(cMult, cMult, cMult, 1.0f));
                    //draw the button text
                    UISystem::putStringCentered(vec2(loc.x + (m.dim.x / 2),
                    	loc.y + (m.dim.y / 2) - (FontSystem::getSize() / 2)),
                        m.text);

					//if element is a slider
                } else if (m.member == 1) {
                    //combining slider text with variable amount
                    char outSV[32];
                    sprintf(outSV, "%s: %.1f",m.text.c_str(), *m.slider.var);
	
                    float sliderW = m.dim.x, sliderH = m.dim.y;
                    m.slider.sliderLoc = m.slider.minValue + (*m.slider.var / m.slider.maxValue);

                    if (sliderH > sliderW) {
                        sliderH *= 0.05f;
                        //location of the slider handle
                        m.slider.sliderLoc *= m.dim.y - sliderW;
                    } else {
                        sliderW *= 0.05f;
                        //location of the slider handle
                        m.slider.sliderLoc *= m.dim.x - sliderW;
                    }

					ui::drawNiceBoxColor(loc, end, -8.6, Color(.5f, .5f, .5f, 1.0f));

                    //test if mouse is inside of the slider's borders
                    if ((mouse.x >= loc.x && mouse.x <= end.x) && (mouse.y >= loc.y && mouse.y <= end.y)) {
						// change multiplier background modifier
						cMult = 0.75f;

						//if we are inside the slider and click it will set the slider to that point
                        if (SDL_GetMouseState(nullptr, nullptr) & SDL_BUTTON(SDL_BUTTON_LEFT)) {
                            //change handle location
                            if (m.dim.y > m.dim.x)
                                *m.slider.var = ((mouse.y-offset.y) - m.loc.y)/m.dim.y * 100;
                            else
                                *m.slider.var = ((mouse.x-offset.x) - m.loc.x)/m.dim.x * 100;

							cMult = 0.5f;
                        }

                        //makes sure handle can't go below or above min and max values
						*m.slider.var = std::clamp(*m.slider.var, m.slider.minValue, m.slider.maxValue);
                    }

					//draw the slider handle
					if (m.dim.y > m.dim.x) {
                        ui::drawNiceBoxColor(vec2(loc.x, loc.y + (m.slider.sliderLoc * 1.05)),
                        	vec2(loc.x + sliderW, loc.y + (m.slider.sliderLoc * 1.05) + sliderH), -8.7, Color(cMult, cMult, cMult, 1.0f));

                        //draw the now combined slider text
                        UISystem::putStringCentered(vec2(loc.x + (m.dim.x/2), (loc.y + (m.dim.y*1.05)) - FontSystem::getSize() / 2), outSV);
                    } else {
                        ui::drawNiceBoxColor(vec2(loc.x+m.slider.sliderLoc, loc.y),
                            vec2(loc.x + m.slider.sliderLoc + sliderW, loc.y + sliderH), -8.7, Color(cMult, cMult, cMult, 1.0f));

                        //draw the now combined slider text
                        UISystem::putStringCentered(loc + (m.dim / 2) /*- FontSystem::getSize() / 2*/, outSV);
                    }
                }
            }

			SDLReceiver::clicked = false;
            FontSystem::setFontSize(FontSystem::SizeSmall);
			FontSystem::setFontZ(-8.0);
        }


    }
}