git repos / blockattack-game

blame: source/code/MenuSystem.h

normal view · raw

f3ef3495 sago007 2008-11-13 20:00 1
/*
c53e6443 sago007 2012-04-17 11:04 2
===========================================================================
c53e6443 sago007 2012-04-17 11:04 3
blockattack - Block Attack - Rise of the Blocks
c53e6443 sago007 2012-04-17 11:04 4
Copyright (C) 2005-2012 Poul Sander
f3ef3495 sago007 2008-11-13 20:00 5
c53e6443 sago007 2012-04-17 11:04 6
This program is free software: you can redistribute it and/or modify
c53e6443 sago007 2012-04-17 11:04 7
it under the terms of the GNU General Public License as published by
c53e6443 sago007 2012-04-17 11:04 8
the Free Software Foundation, either version 2 of the License, or
c53e6443 sago007 2012-04-17 11:04 9
(at your option) any later version.
f3ef3495 sago007 2008-11-13 20:00 10
c53e6443 sago007 2012-04-17 11:04 11
This program is distributed in the hope that it will be useful,
c53e6443 sago007 2012-04-17 11:04 12
but WITHOUT ANY WARRANTY; without even the implied warranty of
c53e6443 sago007 2012-04-17 11:04 13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
c53e6443 sago007 2012-04-17 11:04 14
GNU General Public License for more details.
f3ef3495 sago007 2008-11-13 20:00 15
c53e6443 sago007 2012-04-17 11:04 16
You should have received a copy of the GNU General Public License
c53e6443 sago007 2012-04-17 11:04 17
along with this program.  If not, see http://www.gnu.org/licenses/
f3ef3495 sago007 2008-11-13 20:00 18
c53e6443 sago007 2012-04-17 11:04 19
Source information and contacts persons can be found at
021de090 sago007 2015-12-30 18:56 20
http://blockattack.net
c53e6443 sago007 2012-04-17 11:04 21
===========================================================================
f3ef3495 sago007 2008-11-13 20:00 22
*/
f3ef3495 sago007 2008-11-13 20:00 23
f3ef3495 sago007 2008-11-13 20:00 24
f3ef3495 sago007 2008-11-13 20:00 25
#ifndef _MENUSYSTEM_H
f3ef3495 sago007 2008-11-13 20:00 26
#define	_MENUSYSTEM_H
f3ef3495 sago007 2008-11-13 20:00 27
f3ef3495 sago007 2008-11-13 20:00 28
#include <string>
f3ef3495 sago007 2008-11-13 20:00 29
#include "SDL.h"
d91e7363 sago007 2018-03-26 13:09 30
#include <map>
f3ef3495 sago007 2008-11-13 20:00 31
#include <vector>
b7590374 sago007 2011-05-19 16:15 32
#include "Libs/NFont.h"
1d2e2129 sago007 2015-12-23 15:41 33
#include "sago/SagoSprite.hpp"
00e866da sago007 2016-10-31 20:47 34
#include "sago/GameStateInterface.hpp"
f3a1637d sago007 2015-11-14 21:32 35
#include <memory>
4c5ca03b sago007 2017-11-27 13:55 36
#include "FontWrapper.hpp"
d91e7363 sago007 2018-03-26 13:09 37
#include "sago/SagoTextField.hpp"
f3ef3495 sago007 2008-11-13 20:00 38
f3ef3495 sago007 2008-11-13 20:00 39
//The ButtonGfx object hold common media for all buttons, so we can reskin them by only changeing one pointer
78ab168e sago007 2015-11-14 22:02 40
struct ButtonGfx
c53e6443 sago007 2012-04-17 11:04 41
{
c53e6443 sago007 2012-04-17 11:04 42
	//The size of the buttons, so we don't have to ask w and h from the SDL Surfaces each time
8ff26872 sago007 2016-03-25 09:46 43
	int xsize = 0;
8ff26872 sago007 2016-03-25 09:46 44
	int ysize = 0;
d91e7363 sago007 2018-03-26 13:09 45
	sago::SagoTextField* getLabel(const std::string& text);
094b2dfe sago007 2016-06-12 10:50 46
	void setSurfaces();
e554e0a8 sago007 2018-03-26 20:57 47
	~ButtonGfx() {
e554e0a8 sago007 2018-03-26 20:57 48
		for (auto& label : labels) {
e554e0a8 sago007 2018-03-26 20:57 49
			delete label.second;
e554e0a8 sago007 2018-03-26 20:57 50
		}
e554e0a8 sago007 2018-03-26 20:57 51
		labels.clear();
e554e0a8 sago007 2018-03-26 20:57 52
	}
d91e7363 sago007 2018-03-26 13:09 53
private:
d91e7363 sago007 2018-03-26 13:09 54
	std::map<std::string, sago::SagoTextField*> labels;
f3ef3495 sago007 2008-11-13 20:00 55
};
f3ef3495 sago007 2008-11-13 20:00 56
b283e0f7 sago007 2012-07-29 14:01 57
extern ButtonGfx standardButton;
b283e0f7 sago007 2012-07-29 14:01 58
f3ef3495 sago007 2008-11-13 20:00 59
//A button
c53e6443 sago007 2012-04-17 11:04 60
class Button
c53e6443 sago007 2012-04-17 11:04 61
{
c53e6443 sago007 2012-04-17 11:04 62
private:
c53e6443 sago007 2012-04-17 11:04 63
	//Pointer to a callback function.
29edda2d sago007 2016-10-08 18:06 64
	void (*action)(void);
b4f1d3cf sago007 2012-08-20 21:28 65
67a32395 sago007 2012-04-19 18:40 66
	//If true the menu should also be closed then the button is clicked
8ff26872 sago007 2016-03-25 09:46 67
	bool popOnRun = false;
b4f1d3cf sago007 2012-08-20 21:28 68
c53e6443 sago007 2012-04-17 11:04 69
public:
c0a3362c sago007 2016-10-07 20:23 70
	//The label. This is written on the button
c0a3362c sago007 2016-10-07 20:23 71
	std::string label;
c53e6443 sago007 2012-04-17 11:04 72
	//Is the button marked?
733af903 sago007 2016-03-24 14:58 73
	bool marked = false;
c53e6443 sago007 2012-04-17 11:04 74
	//Where is the button on the screen
733af903 sago007 2016-03-24 14:58 75
	int x = 0;
733af903 sago007 2016-03-24 14:58 76
	int y = 0;
c53e6443 sago007 2012-04-17 11:04 77
c53e6443 sago007 2012-04-17 11:04 78
	Button();
c53e6443 sago007 2012-04-17 11:04 79
	Button(const Button& b);
de81e07d sago007 2016-07-10 20:22 80
	virtual ~Button();
c53e6443 sago007 2012-04-17 11:04 81
c53e6443 sago007 2012-04-17 11:04 82
c53e6443 sago007 2012-04-17 11:04 83
	//Set the text to write on the button
33f4e975 sago007 2015-11-14 21:49 84
	void setLabel(const std::string& text);
c53e6443 sago007 2012-04-17 11:04 85
	//Set the action to run
29edda2d sago007 2016-10-08 18:06 86
	void setAction(void (*action2run)(void));
c53e6443 sago007 2012-04-17 11:04 87
c53e6443 sago007 2012-04-17 11:04 88
	virtual void doAction(); //Run the callback function
b4f1d3cf sago007 2012-08-20 21:28 89
	void setPopOnRun(bool popOnRun);
b4f1d3cf sago007 2012-08-20 21:28 90
	bool isPopOnRun() const;
b4f1d3cf sago007 2012-08-20 21:28 91
67a32395 sago007 2012-04-19 18:40 92
	//May hold any other information the callback might need
733af903 sago007 2016-03-24 14:58 93
	int iGeneric1 = 0;
f3ef3495 sago007 2008-11-13 20:00 94
};
f3ef3495 sago007 2008-11-13 20:00 95
26ddb424 sago007 2011-06-09 20:06 96
00e866da sago007 2016-10-31 20:47 97
class Menu : public sago::GameStateInterface
c53e6443 sago007 2012-04-17 11:04 98
{
c53e6443 sago007 2012-04-17 11:04 99
private:
33f4e975 sago007 2015-11-14 21:49 100
	std::vector<Button*> buttons; //Vector holder the buttons
c53e6443 sago007 2012-04-17 11:04 101
	Button exit; //The exit button is special since it does not have a callback function
8ff26872 sago007 2016-03-25 09:46 102
	bool isSubmenu = false; //True if the menu is a submenu
8ff26872 sago007 2016-03-25 09:46 103
	int marked = 0; //The index of the marked button (for keyboard up/down)
733af903 sago007 2016-03-24 14:58 104
	bool running = true; //The menu is running. The menu will terminate then this is false
8ff26872 sago007 2016-03-25 09:46 105
	SDL_Renderer *screen = nullptr; //Pointer to the screen to draw to
33f4e975 sago007 2015-11-14 21:49 106
	std::string title;
95ab6b0d sago007 2016-11-12 16:11 107
	void drawSelf(SDL_Renderer* target);        //Private function to draw the screen
c53e6443 sago007 2012-04-17 11:04 108
	void placeButtons(); //Rearanges the buttons to the correct place.
50fd2c5f sago007 2016-11-12 16:05 109
	bool bMouseUp = false;
c53e6443 sago007 2012-04-17 11:04 110
public:
c53e6443 sago007 2012-04-17 11:04 111
	//numberOfItems is the expected numberOfItems for vector initialization
c53e6443 sago007 2012-04-17 11:04 112
	//SubMenu is true by default
1d2e2129 sago007 2015-12-23 15:41 113
	Menu(SDL_Renderer *screen,bool isSubmenu);
1d2e2129 sago007 2015-12-23 15:41 114
	Menu(SDL_Renderer *screen);
1d2e2129 sago007 2015-12-23 15:41 115
	Menu(SDL_Renderer *screen, const std::string& title, bool isSubmenu);
00e866da sago007 2016-10-31 20:47 116
	virtual ~Menu() {}
00e866da sago007 2016-10-31 20:47 117
	
c53e6443 sago007 2012-04-17 11:04 118
	//Add a button to the menu
c53e6443 sago007 2012-04-17 11:04 119
	void addButton(Button *b);
00e866da sago007 2016-10-31 20:47 120
	
00e866da sago007 2016-10-31 20:47 121
	bool IsActive() override;
00e866da sago007 2016-10-31 20:47 122
	void Draw(SDL_Renderer* target) override;
00e866da sago007 2016-10-31 20:47 123
	void ProcessInput(const SDL_Event& event, bool &processed) override;
50fd2c5f sago007 2016-11-12 16:05 124
	void Update() override;
f3ef3495 sago007 2008-11-13 20:00 125
};
f3ef3495 sago007 2008-11-13 20:00 126
c53e6443 sago007 2012-04-17 11:04 127
class FileMenu
c53e6443 sago007 2012-04-17 11:04 128
{
cc3ef158 sago007 2011-07-03 16:13 129
private:
33f4e975 sago007 2015-11-14 21:49 130
	std::string pm_path;
33f4e975 sago007 2015-11-14 21:49 131
	std::string pm_fileending;
8ff26872 sago007 2016-03-25 09:46 132
	bool pm_hidden_files = false;
cc3ef158 sago007 2011-07-03 16:13 133
public:
33f4e975 sago007 2015-11-14 21:49 134
	FileMenu(const std::string& path, const std::string& fileending, bool hidden_files = false);
c53e6443 sago007 2012-04-17 11:04 135
33f4e975 sago007 2015-11-14 21:49 136
	std::string getFile(SDL_Surface **screen);
cc3ef158 sago007 2011-07-03 16:13 137
};
cc3ef158 sago007 2011-07-03 16:13 138
d21782d4 sago007 2016-03-13 11:17 139
bool isUpEvent(const SDL_Event& event);
d21782d4 sago007 2016-03-13 11:17 140
d21782d4 sago007 2016-03-13 11:17 141
bool isDownEvent(const SDL_Event& event);
d21782d4 sago007 2016-03-13 11:17 142
d21782d4 sago007 2016-03-13 11:17 143
bool isLeftEvent(const SDL_Event& event);
d21782d4 sago007 2016-03-13 11:17 144
d21782d4 sago007 2016-03-13 11:17 145
bool isRightEvent(const SDL_Event& event);
d21782d4 sago007 2016-03-13 11:17 146
d21782d4 sago007 2016-03-13 11:17 147
bool isEscapeEvent(const SDL_Event& event);
d21782d4 sago007 2016-03-13 11:17 148
d21782d4 sago007 2016-03-13 11:17 149
bool isConfirmEvent(const SDL_Event& event);
d21782d4 sago007 2016-03-13 11:17 150
f3ef3495 sago007 2008-11-13 20:00 151
#endif	/* _MENUSYSTEM_H */
f3ef3495 sago007 2008-11-13 20:00 152
1970-01-01 00:00 153