summaryrefslogtreecommitdiff
path: root/noncore/games/kbill/kbill.cpp
blob: 568df9577ee6acee255ceefcaedbbea4c2a4d0b4 (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
/***************************************************************************
                          kbill.cpp  -  description
                             -------------------
    begin                : Thu Dec 30 16:55:55 CET 1999
    copyright            : (C) 1999 by Jurrien Loonstra
    email                : j.h.loonstra@st.hanze.nl
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#include <qmessagebox.h>
#include <qmenubar.h>
#include "kbill.h"
#include "inputbox.h"

#include "objects.h"
#include "Strings.h"

KBill::KBill() : QMainWindow() {
	setCaption("kBill");
	file = new QPopupMenu();
	file->insertItem(("New game"), this, SLOT(NewGame()));
	pauseid = file->insertItem(("Pause game"), this, SLOT(Pause()));
	//these are dissabled until I fix them
	//file->insertItem(("Warp to level..."), this, SLOT(WarpTo()));
	//file->insertItem(("View high scores"), this, SLOT(ViewHighScores()));
	file->insertItem(("Quit game"), this, SLOT(Quit()));

	help = new QPopupMenu();
	help->insertItem(("Story of kBill"), this, SLOT(Story()));
	help->insertItem(("Rules"), this, SLOT(Rules()));


	menu = new QMenuBar(this);
	menu->insertItem(("&File"), file);
	menu->insertSeparator();
	menu->insertItem(("&Help"), help);

	field = new Field(this);
	//setView(field);
	//setMainWidget(field);
	//setMenu(menu);
}

KBill::~KBill() {
}

Field* KBill::getField() {
	return field;
}

// -----------------------------------------------------------------------

void KBill::Quit() {
 	field->stopTimer();
 	qApp->quit();

}

void KBill::About(){
// 	field->stopTimer();
// 	AboutBox about(this);
// 	about.exec();
// 	field->startTimer();
}

void KBill::NewGame() {
 	field->stopTimer();
// 	if (KMsgBox::yesNo(this, i18n("New Game"), i18n(newgamestr), KMsgBox::QUESTION) == 1)
 		game.start(1);
// 	else
 		field->startTimer();
}

void KBill::Pause() {
 	field->stopTimer();
	QMessageBox::message(("Pause Game"), (pausestr), 0);
 	field->startTimer();
}

void KBill::WarpTo() {
/* 	field->stopTimer();
 	InputBox b(this, 0, "Warp To Level", warpstr);
 	bool status  = b.exec() == 1;
 	field->startTimer();
 	if (status) {
 		bool ok;
		int level = b.getText().toUInt(&ok);
 		if (ok) {
 			field->startTimer();
 			game.warp_to_level(level);
 			return;
 		}
 	}*/
}

void KBill::ViewHighScores() {
	//ui.popup_dialog(Game::HIGHSCORE);
}

void KBill::Story() {
 	field->stopTimer();
 	QMessageBox::message( ("Story"), (storystr), 0);
 	field->startTimer();
}

void KBill::Rules() {
 	field->stopTimer();
 	QMessageBox::message(("Rules"), (rulesstr), 0);
 	field->startTimer();
}