git repos / blockattack-game

blame: source/code/menudef.cpp

normal view · raw

593aeae4 sago007 2011-06-25 22:42 1
/*
af35c39d sago007 2013-11-16 16:37 2
===========================================================================
af35c39d sago007 2013-11-16 16:37 3
blockattack - Block Attack - Rise of the Blocks
af35c39d sago007 2013-11-16 16:37 4
Copyright (C) 2005-2013 Poul Sander
af35c39d sago007 2013-11-16 16:37 5
af35c39d sago007 2013-11-16 16:37 6
This program is free software: you can redistribute it and/or modify
af35c39d sago007 2013-11-16 16:37 7
it under the terms of the GNU General Public License as published by
af35c39d sago007 2013-11-16 16:37 8
the Free Software Foundation, either version 2 of the License, or
af35c39d sago007 2013-11-16 16:37 9
(at your option) any later version.
af35c39d sago007 2013-11-16 16:37 10
af35c39d sago007 2013-11-16 16:37 11
This program is distributed in the hope that it will be useful,
af35c39d sago007 2013-11-16 16:37 12
but WITHOUT ANY WARRANTY; without even the implied warranty of
af35c39d sago007 2013-11-16 16:37 13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
af35c39d sago007 2013-11-16 16:37 14
GNU General Public License for more details.
af35c39d sago007 2013-11-16 16:37 15
af35c39d sago007 2013-11-16 16:37 16
You should have received a copy of the GNU General Public License
af35c39d sago007 2013-11-16 16:37 17
along with this program.  If not, see http://www.gnu.org/licenses/
af35c39d sago007 2013-11-16 16:37 18
af35c39d sago007 2013-11-16 16:37 19
Source information and contacts persons can be found at
021de090 sago007 2015-12-30 18:56 20
http://blockattack.net
af35c39d sago007 2013-11-16 16:37 21
===========================================================================
593aeae4 sago007 2011-06-25 22:42 22
*/
26ddb424 sago007 2011-06-09 20:06 23
#include "global.hpp"
26ddb424 sago007 2011-06-09 20:06 24
#include <iostream>
26ddb424 sago007 2011-06-09 20:06 25
#include <stdlib.h>
26ddb424 sago007 2011-06-09 20:06 26
#include "MenuSystem.h"
c9dd376f sago007 2012-01-20 17:13 27
#include "common.h"
26ddb424 sago007 2011-06-09 20:06 28
96eb7a16 sago007 2016-04-29 17:01 29
using std::string;
96eb7a16 sago007 2016-04-29 17:01 30
using std::cerr;
3478201d sago007 2016-06-04 14:44 31
using std::cout;
96eb7a16 sago007 2016-04-29 17:01 32
using std::vector;
26ddb424 sago007 2011-06-09 20:06 33
3838c95c sago007 2016-01-23 10:47 34
#if 0
26ddb424 sago007 2011-06-09 20:06 35
//Menu
ecef5838 sago007 2015-11-24 20:01 36
static void PrintHi(Button* b) {
161a010c sago007 2016-05-06 14:00 37
	cout << "Hi" <<"\n";
26ddb424 sago007 2011-06-09 20:06 38
}
3838c95c sago007 2016-01-23 10:47 39
#endif
26ddb424 sago007 2011-06-09 20:06 40
593aeae4 sago007 2011-06-25 22:42 41
//Stores the controls
ecef5838 sago007 2015-11-24 20:01 42
struct control {
1d2e2129 sago007 2015-12-23 15:41 43
	SDL_Keycode up;
1d2e2129 sago007 2015-12-23 15:41 44
	SDL_Keycode down;
1d2e2129 sago007 2015-12-23 15:41 45
	SDL_Keycode left;
1d2e2129 sago007 2015-12-23 15:41 46
	SDL_Keycode right;
1d2e2129 sago007 2015-12-23 15:41 47
	SDL_Keycode change;
1d2e2129 sago007 2015-12-23 15:41 48
	SDL_Keycode push;
593aeae4 sago007 2011-06-25 22:42 49
};
593aeae4 sago007 2011-06-25 22:42 50
26ddb424 sago007 2011-06-09 20:06 51
void OpenScoresDisplay();
593aeae4 sago007 2011-06-25 22:42 52
extern control keySettings[3];
593aeae4 sago007 2011-06-25 22:42 53
593aeae4 sago007 2011-06-25 22:42 54
//Function to return the name of a key, to be displayed...
1d2e2129 sago007 2015-12-23 15:41 55
static string getKeyName(SDL_Keycode key) {
c53e6443 sago007 2012-04-17 11:04 56
	string keyname(SDL_GetKeyName(key));
72383a9e sago007 2016-10-30 11:56 57
	if (globalData.verboseLevel) {
161a010c sago007 2016-05-06 14:00 58
		cout << key << " translated to " << keyname << "\n";
acd79baf sago007 2015-11-22 19:37 59
	}
c53e6443 sago007 2012-04-17 11:04 60
	return keyname;
593aeae4 sago007 2011-06-25 22:42 61
}
593aeae4 sago007 2011-06-25 22:42 62
ecef5838 sago007 2015-11-24 20:01 63
class Button_changekey : public Button {
593aeae4 sago007 2011-06-25 22:42 64
private:
1d2e2129 sago007 2015-12-23 15:41 65
	SDL_Keycode* m_key2change;
c53e6443 sago007 2012-04-17 11:04 66
	string m_keyname;
593aeae4 sago007 2011-06-25 22:42 67
public:
1d2e2129 sago007 2015-12-23 15:41 68
	Button_changekey(SDL_Keycode* key, string keyname);
c53e6443 sago007 2012-04-17 11:04 69
	void doAction();
593aeae4 sago007 2011-06-25 22:42 70
};
593aeae4 sago007 2011-06-25 22:42 71
6710d462 sago007 2012-05-12 17:23 72
1d2e2129 sago007 2015-12-23 15:41 73
Button_changekey::Button_changekey(SDL_Keycode* key, string keyname) {
c53e6443 sago007 2012-04-17 11:04 74
	m_key2change = key;
c53e6443 sago007 2012-04-17 11:04 75
	m_keyname = keyname;
c53e6443 sago007 2012-04-17 11:04 76
	setLabel(m_keyname+" : "+getKeyName(*m_key2change));
593aeae4 sago007 2011-06-25 22:42 77
}
593aeae4 sago007 2011-06-25 22:42 78
ecef5838 sago007 2015-11-24 20:01 79
void Button_changekey::doAction() {
c53e6443 sago007 2012-04-17 11:04 80
	SDL_Event event;
c53e6443 sago007 2012-04-17 11:04 81
c53e6443 sago007 2012-04-17 11:04 82
	bool finnish = false;
ecef5838 sago007 2015-11-24 20:01 83
	while (!finnish) {
c53e6443 sago007 2012-04-17 11:04 84
		SDL_Delay(10);
ecef5838 sago007 2015-11-24 20:01 85
		while ( SDL_PollEvent(&event) ) {
ecef5838 sago007 2015-11-24 20:01 86
			if (event.type == SDL_KEYDOWN) {
acd79baf sago007 2015-11-22 19:37 87
				if (event.key.keysym.sym != SDLK_ESCAPE) {
c53e6443 sago007 2012-04-17 11:04 88
					*m_key2change = event.key.keysym.sym;
acd79baf sago007 2015-11-22 19:37 89
				}
c53e6443 sago007 2012-04-17 11:04 90
				finnish = true;
c53e6443 sago007 2012-04-17 11:04 91
			}
c53e6443 sago007 2012-04-17 11:04 92
		}
c53e6443 sago007 2012-04-17 11:04 93
	}
c53e6443 sago007 2012-04-17 11:04 94
	setLabel(m_keyname+" : "+getKeyName(*m_key2change));
593aeae4 sago007 2011-06-25 22:42 95
}
26ddb424 sago007 2011-06-09 20:06 96
ecef5838 sago007 2015-11-24 20:01 97
void InitMenues() {
094b2dfe sago007 2016-06-12 10:50 98
	standardButton.setSurfaces();
26ddb424 sago007 2011-06-09 20:06 99
}
26ddb424 sago007 2011-06-09 20:06 100
29edda2d sago007 2016-10-08 18:06 101
static void runSinglePlayerEndless() {
de81e07d sago007 2016-07-10 20:22 102
	runGame(Gametype::SinglePlayerEndless, 0);
26ddb424 sago007 2011-06-09 20:06 103
}
26ddb424 sago007 2011-06-09 20:06 104
29edda2d sago007 2016-10-08 18:06 105
static void runSinglePlayerTimeTrial() {
de81e07d sago007 2016-07-10 20:22 106
	runGame(Gametype::SinglePlayerTimeTrial, 0);
26ddb424 sago007 2011-06-09 20:06 107
}
26ddb424 sago007 2011-06-09 20:06 108
29edda2d sago007 2016-10-08 18:06 109
static void runStageClear() {
de81e07d sago007 2016-07-10 20:22 110
	runGame(Gametype::StageClear, 0);
aede0664 sago007 2012-04-19 19:45 111
}
aede0664 sago007 2012-04-19 19:45 112
29edda2d sago007 2016-10-08 18:06 113
static void runSinglePlayerPuzzle() {
de81e07d sago007 2016-07-10 20:22 114
	runGame(Gametype::Puzzle, 0);
26ddb424 sago007 2011-06-09 20:06 115
}
26ddb424 sago007 2011-06-09 20:06 116
29edda2d sago007 2016-10-08 18:06 117
class RunSinglePlayerVsButton : public Button {
29edda2d sago007 2016-10-08 18:06 118
	virtual void doAction() override {
29edda2d sago007 2016-10-08 18:06 119
		runGame(Gametype::SinglePlayerVs, iGeneric1);
29edda2d sago007 2016-10-08 18:06 120
	}
29edda2d sago007 2016-10-08 18:06 121
};
26ddb424 sago007 2011-06-09 20:06 122
29edda2d sago007 2016-10-08 18:06 123
static void runTwoPlayerTimeTrial() {
de81e07d sago007 2016-07-10 20:22 124
	runGame(Gametype::TwoPlayerTimeTrial, 0);
b0222eff sago007 2012-04-22 15:06 125
}
b0222eff sago007 2012-04-22 15:06 126
29edda2d sago007 2016-10-08 18:06 127
static void runTwoPlayerVs() {
de81e07d sago007 2016-07-10 20:22 128
	runGame(Gametype::TwoPlayerVs, 0);
b0222eff sago007 2012-04-22 15:06 129
}
b0222eff sago007 2012-04-22 15:06 130
29edda2d sago007 2016-10-08 18:06 131
class MusicButton : public Button {
29edda2d sago007 2016-10-08 18:06 132
	virtual void doAction() override {
72383a9e sago007 2016-10-30 11:56 133
		globalData.MusicEnabled = !globalData.MusicEnabled;
72383a9e sago007 2016-10-30 11:56 134
		setLabel(globalData.MusicEnabled? _("Music: On") : _("Music: Off"));
29edda2d sago007 2016-10-08 18:06 135
	}
26ddb424 sago007 2011-06-09 20:06 136
29edda2d sago007 2016-10-08 18:06 137
};
26ddb424 sago007 2011-06-09 20:06 138
29edda2d sago007 2016-10-08 18:06 139
class SoundButton : public Button {
29edda2d sago007 2016-10-08 18:06 140
	virtual void doAction() override {
72383a9e sago007 2016-10-30 11:56 141
		globalData.SoundEnabled = !globalData.SoundEnabled;
72383a9e sago007 2016-10-30 11:56 142
		setLabel(globalData.SoundEnabled? _("Sound: On") : _("Sound: Off") );
29edda2d sago007 2016-10-08 18:06 143
	}
29edda2d sago007 2016-10-08 18:06 144
};
29edda2d sago007 2016-10-08 18:06 145
29edda2d sago007 2016-10-08 18:06 146
class FullscreenButton : public Button {
29edda2d sago007 2016-10-08 18:06 147
	virtual void doAction() override {
72383a9e sago007 2016-10-30 11:56 148
		globalData.bFullscreen = !globalData.bFullscreen;
72383a9e sago007 2016-10-30 11:56 149
		setLabel(globalData.bFullscreen? _("Fullscreen: On") : _("Fullscreen: Off") );
29edda2d sago007 2016-10-08 18:06 150
		ResetFullscreen();
29edda2d sago007 2016-10-08 18:06 151
	}
29edda2d sago007 2016-10-08 18:06 152
};
26ddb424 sago007 2011-06-09 20:06 153
29edda2d sago007 2016-10-08 18:06 154
static void buttonActionPlayer1Name() {
72383a9e sago007 2016-10-30 11:56 155
	if ( OpenDialogbox(200, 100, globalData.player1name, _("Enter player 1 name:")) ) {
acd79baf sago007 2015-11-22 19:37 156
		return;    //must save if true
acd79baf sago007 2015-11-22 19:37 157
	}
26ddb424 sago007 2011-06-09 20:06 158
}
26ddb424 sago007 2011-06-09 20:06 159
29edda2d sago007 2016-10-08 18:06 160
static void buttonActionPlayer2Name() {
72383a9e sago007 2016-10-30 11:56 161
	if ( OpenDialogbox(200, 100, globalData.player2name, _("Enter player 2 name:")) ) {
acd79baf sago007 2015-11-22 19:37 162
		return;    //must save if true
acd79baf sago007 2015-11-22 19:37 163
	}
26ddb424 sago007 2011-06-09 20:06 164
}
26ddb424 sago007 2011-06-09 20:06 165
29edda2d sago007 2016-10-08 18:06 166
static void buttonActionHighscores() {
c53e6443 sago007 2012-04-17 11:04 167
	OpenScoresDisplay();
26ddb424 sago007 2011-06-09 20:06 168
}
26ddb424 sago007 2011-06-09 20:06 169
ecef5838 sago007 2015-11-24 20:01 170
static void ChangeKeysMenu(long playernumber) {
72383a9e sago007 2016-10-30 11:56 171
	Menu km(globalData.screen,_("Change key bindings"),true);
c53e6443 sago007 2012-04-17 11:04 172
	Button_changekey bLeft(&keySettings[playernumber].left,_("Left") );
c53e6443 sago007 2012-04-17 11:04 173
	Button_changekey bRight(&keySettings[playernumber].right,_("Right") );
c53e6443 sago007 2012-04-17 11:04 174
	Button_changekey bUp(&keySettings[playernumber].up,_("Up") );
c53e6443 sago007 2012-04-17 11:04 175
	Button_changekey bDown(&keySettings[playernumber].down,_("Down") );
c53e6443 sago007 2012-04-17 11:04 176
	Button_changekey bPush(&keySettings[playernumber].push,_("Push") );
c53e6443 sago007 2012-04-17 11:04 177
	Button_changekey bSwitch(&keySettings[playernumber].change,_("Change") );
c53e6443 sago007 2012-04-17 11:04 178
	km.addButton(&bLeft);
c53e6443 sago007 2012-04-17 11:04 179
	km.addButton(&bRight);
c53e6443 sago007 2012-04-17 11:04 180
	km.addButton(&bUp);
c53e6443 sago007 2012-04-17 11:04 181
	km.addButton(&bDown);
c53e6443 sago007 2012-04-17 11:04 182
	km.addButton(&bPush);
c53e6443 sago007 2012-04-17 11:04 183
	km.addButton(&bSwitch);
20d77c6e sago007 2016-11-12 16:28 184
	RunGameState(km);
c53e6443 sago007 2012-04-17 11:04 185
}
c53e6443 sago007 2012-04-17 11:04 186
29edda2d sago007 2016-10-08 18:06 187
static void ChangeKeysMenu1() {
c53e6443 sago007 2012-04-17 11:04 188
	ChangeKeysMenu(0);
593aeae4 sago007 2011-06-25 22:42 189
}
593aeae4 sago007 2011-06-25 22:42 190
29edda2d sago007 2016-10-08 18:06 191
static void ChangeKeysMenu2() {
c53e6443 sago007 2012-04-17 11:04 192
	ChangeKeysMenu(2);
593aeae4 sago007 2011-06-25 22:42 193
}
fc8e3d6a sago007 2011-06-25 16:31 194
29edda2d sago007 2016-10-08 18:06 195
static void ConfigureMenu() {
72383a9e sago007 2016-10-30 11:56 196
	Menu cm(globalData.screen,_("Configuration"),true);
29edda2d sago007 2016-10-08 18:06 197
	Button bPlayer1Name,bPlayer2Name;
c53e6443 sago007 2012-04-17 11:04 198
	Button bPlayer1Keys, bPlayer2Keys;
29edda2d sago007 2016-10-08 18:06 199
	MusicButton bMusic;
29edda2d sago007 2016-10-08 18:06 200
	SoundButton bSound;
29edda2d sago007 2016-10-08 18:06 201
	FullscreenButton buttonFullscreen;
72383a9e sago007 2016-10-30 11:56 202
	bMusic.setLabel(globalData.MusicEnabled? _("Music: On") : _("Music: Off") );
72383a9e sago007 2016-10-30 11:56 203
	bSound.setLabel(globalData.SoundEnabled? _("Sound: On") : _("Sound: Off") );
72383a9e sago007 2016-10-30 11:56 204
	buttonFullscreen.setLabel(globalData.bFullscreen? _("Fullscreen: On") : _("Fullscreen: Off") );
c53e6443 sago007 2012-04-17 11:04 205
	bPlayer1Name.setAction(buttonActionPlayer1Name);
c53e6443 sago007 2012-04-17 11:04 206
	bPlayer1Name.setLabel(_("Change player 1's name") );
c53e6443 sago007 2012-04-17 11:04 207
	bPlayer2Name.setAction(buttonActionPlayer2Name);
c53e6443 sago007 2012-04-17 11:04 208
	bPlayer2Name.setLabel(_("Change player 2's name") );
c53e6443 sago007 2012-04-17 11:04 209
	bPlayer1Keys.setAction(ChangeKeysMenu1);
c53e6443 sago007 2012-04-17 11:04 210
	bPlayer1Keys.setLabel(_("Change player 1's keys") );
c53e6443 sago007 2012-04-17 11:04 211
	bPlayer2Keys.setAction(ChangeKeysMenu2);
c53e6443 sago007 2012-04-17 11:04 212
	bPlayer2Keys.setLabel(_("Change player 2's keys") );
c53e6443 sago007 2012-04-17 11:04 213
	cm.addButton(&bMusic);
c53e6443 sago007 2012-04-17 11:04 214
	cm.addButton(&bSound);
c53e6443 sago007 2012-04-17 11:04 215
	cm.addButton(&buttonFullscreen);
c53e6443 sago007 2012-04-17 11:04 216
	cm.addButton(&bPlayer1Name);
c53e6443 sago007 2012-04-17 11:04 217
	cm.addButton(&bPlayer2Name);
c53e6443 sago007 2012-04-17 11:04 218
	cm.addButton(&bPlayer1Keys);
c53e6443 sago007 2012-04-17 11:04 219
	cm.addButton(&bPlayer2Keys);
20d77c6e sago007 2016-11-12 16:28 220
	RunGameState(cm);
26ddb424 sago007 2011-06-09 20:06 221
}
26ddb424 sago007 2011-06-09 20:06 222
29edda2d sago007 2016-10-08 18:06 223
static void SinglePlayerVsMenu() {
72383a9e sago007 2016-10-30 11:56 224
	Menu spvs(globalData.screen,_("Single player VS"),true);
29edda2d sago007 2016-10-08 18:06 225
	RunSinglePlayerVsButton d1,d2,d3,d4,d5,d6,d7;
67a32395 sago007 2012-04-19 18:40 226
	d1.setPopOnRun(true);
67a32395 sago007 2012-04-19 18:40 227
	d2.setPopOnRun(true);
67a32395 sago007 2012-04-19 18:40 228
	d3.setPopOnRun(true);
67a32395 sago007 2012-04-19 18:40 229
	d4.setPopOnRun(true);
67a32395 sago007 2012-04-19 18:40 230
	d5.setPopOnRun(true);
67a32395 sago007 2012-04-19 18:40 231
	d6.setPopOnRun(true);
67a32395 sago007 2012-04-19 18:40 232
	d7.setPopOnRun(true);
e68d08eb sago007 2013-11-15 22:33 233
	d1.iGeneric1 = 0;
e68d08eb sago007 2013-11-15 22:33 234
	d2.iGeneric1 = 1;
e68d08eb sago007 2013-11-15 22:33 235
	d3.iGeneric1 = 2;
e68d08eb sago007 2013-11-15 22:33 236
	d4.iGeneric1 = 3;
e68d08eb sago007 2013-11-15 22:33 237
	d5.iGeneric1 = 4;
e68d08eb sago007 2013-11-15 22:33 238
	d6.iGeneric1 = 5;
e68d08eb sago007 2013-11-15 22:33 239
	d7.iGeneric1 = 6;
67a32395 sago007 2012-04-19 18:40 240
	d1.setLabel(_("Very easy"));
67a32395 sago007 2012-04-19 18:40 241
	d2.setLabel(_("Easy"));
67a32395 sago007 2012-04-19 18:40 242
	d3.setLabel(_("Below normal"));
67a32395 sago007 2012-04-19 18:40 243
	d4.setLabel(_("Normal"));
67a32395 sago007 2012-04-19 18:40 244
	d5.setLabel(_("Above normal"));
67a32395 sago007 2012-04-19 18:40 245
	d6.setLabel(_("Hard"));
67a32395 sago007 2012-04-19 18:40 246
	d7.setLabel(_("Hardest"));
67a32395 sago007 2012-04-19 18:40 247
	spvs.addButton(&d1);
67a32395 sago007 2012-04-19 18:40 248
	spvs.addButton(&d2);
67a32395 sago007 2012-04-19 18:40 249
	spvs.addButton(&d3);
67a32395 sago007 2012-04-19 18:40 250
	spvs.addButton(&d4);
67a32395 sago007 2012-04-19 18:40 251
	spvs.addButton(&d5);
67a32395 sago007 2012-04-19 18:40 252
	spvs.addButton(&d6);
67a32395 sago007 2012-04-19 18:40 253
	spvs.addButton(&d7);
20d77c6e sago007 2016-11-12 16:28 254
	RunGameState(spvs);
67a32395 sago007 2012-04-19 18:40 255
}
67a32395 sago007 2012-04-19 18:40 256
29edda2d sago007 2016-10-08 18:06 257
static void MultiplayerMenu() {
72383a9e sago007 2016-10-30 11:56 258
	Menu mm(globalData.screen,_("Multiplayer"),true);
de81e07d sago007 2016-07-10 20:22 259
	Button bTT, bVs;
b0222eff sago007 2012-04-22 15:06 260
	bTT.setLabel(_("Two player - time trial"));
b0222eff sago007 2012-04-22 15:06 261
	bTT.setAction(runTwoPlayerTimeTrial);
b0222eff sago007 2012-04-22 15:06 262
	bVs.setLabel(_("Two player - vs"));
b0222eff sago007 2012-04-22 15:06 263
	bVs.setAction(runTwoPlayerVs);
b0222eff sago007 2012-04-22 15:06 264
	mm.addButton(&bTT);
b0222eff sago007 2012-04-22 15:06 265
	mm.addButton(&bVs);
20d77c6e sago007 2016-11-12 16:28 266
	RunGameState(mm);
b0222eff sago007 2012-04-22 15:06 267
}
b0222eff sago007 2012-04-22 15:06 268
2f331f0c sago007 2017-08-19 16:17 269
static void SinglePlayerMenu() {
2f331f0c sago007 2017-08-19 16:17 270
	Menu m(globalData.screen, _("Single player"), true);
2f331f0c sago007 2017-08-19 16:17 271
	Button bHi,bTimetrial1, bStageClear, bPuzzle, bVs1;
c53e6443 sago007 2012-04-17 11:04 272
	bHi.setLabel(_("Single player - endless") );
c53e6443 sago007 2012-04-17 11:04 273
	bHi.setAction(runSinglePlayerEndless);
c53e6443 sago007 2012-04-17 11:04 274
	bTimetrial1.setLabel(_("Single player - time trial") );
c53e6443 sago007 2012-04-17 11:04 275
	bTimetrial1.setAction(runSinglePlayerTimeTrial);
aede0664 sago007 2012-04-19 19:45 276
	bStageClear.setLabel(_("Single player - stage clear") );
aede0664 sago007 2012-04-19 19:45 277
	bStageClear.setAction(runStageClear);
c53e6443 sago007 2012-04-17 11:04 278
	bPuzzle.setLabel(_("Single player - puzzle mode") );
c53e6443 sago007 2012-04-17 11:04 279
	bPuzzle.setAction(runSinglePlayerPuzzle);
c53e6443 sago007 2012-04-17 11:04 280
	bVs1.setLabel(_("Single player - vs") );
67a32395 sago007 2012-04-19 18:40 281
	bVs1.setAction(SinglePlayerVsMenu);
2f331f0c sago007 2017-08-19 16:17 282
	m.addButton(&bHi);
2f331f0c sago007 2017-08-19 16:17 283
	m.addButton(&bTimetrial1);
2f331f0c sago007 2017-08-19 16:17 284
	m.addButton(&bStageClear);
2f331f0c sago007 2017-08-19 16:17 285
	m.addButton(&bPuzzle);
2f331f0c sago007 2017-08-19 16:17 286
	m.addButton(&bVs1);
2f331f0c sago007 2017-08-19 16:17 287
	RunGameState(m);
2f331f0c sago007 2017-08-19 16:17 288
}
2f331f0c sago007 2017-08-19 16:17 289
2f331f0c sago007 2017-08-19 16:17 290
void MainMenu() {
2f331f0c sago007 2017-08-19 16:17 291
	InitMenues();
2f331f0c sago007 2017-08-19 16:17 292
	Menu m(globalData.screen,_("Block Attack - Rise of the blocks"),false);
2f331f0c sago007 2017-08-19 16:17 293
	Button bHi, bMulti, bConfigure,bHighscore;
2f331f0c sago007 2017-08-19 16:17 294
	bHi.setLabel(_("Single player") );
2f331f0c sago007 2017-08-19 16:17 295
	bHi.setAction(SinglePlayerMenu);
b0222eff sago007 2012-04-22 15:06 296
	bMulti.setLabel(_("Multi player") );
b0222eff sago007 2012-04-22 15:06 297
	bMulti.setAction(MultiplayerMenu);
c53e6443 sago007 2012-04-17 11:04 298
	bConfigure.setLabel(_("Configure") );
c53e6443 sago007 2012-04-17 11:04 299
	bConfigure.setAction(ConfigureMenu);
c53e6443 sago007 2012-04-17 11:04 300
	bHighscore.setLabel(_("Highscores") );
c53e6443 sago007 2012-04-17 11:04 301
	bHighscore.setAction(buttonActionHighscores);
c53e6443 sago007 2012-04-17 11:04 302
	m.addButton(&bHi);
b0222eff sago007 2012-04-22 15:06 303
	m.addButton(&bMulti);
c53e6443 sago007 2012-04-17 11:04 304
	m.addButton(&bConfigure);
c53e6443 sago007 2012-04-17 11:04 305
	m.addButton(&bHighscore);
95ab6b0d sago007 2016-11-12 16:11 306
	RunGameState(m);
593aeae4 sago007 2011-06-25 22:42 307
}
1970-01-01 00:00 308