summaryrefslogtreecommitdiff
authormark <mark>2002-05-05 12:39:27 (UTC)
committer mark <mark>2002-05-05 12:39:27 (UTC)
commit4941bb530e6bd0992136b95b4e24af7b7ddc8fdd (patch) (unidiff)
treeaf604b49a54e1246858758be9d6dea33940810cb
parenta59ee560e5a170d124838c4e2ce7e6af0102aa2e (diff)
downloadopie-4941bb530e6bd0992136b95b4e24af7b7ddc8fdd.zip
opie-4941bb530e6bd0992136b95b4e24af7b7ddc8fdd.tar.gz
opie-4941bb530e6bd0992136b95b4e24af7b7ddc8fdd.tar.bz2
Nicer help information
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/kbill/Strings.h42
-rw-r--r--noncore/games/kbill/kbill.cpp22
-rw-r--r--noncore/games/kbill/kbill.pro1
3 files changed, 19 insertions, 46 deletions
diff --git a/noncore/games/kbill/Strings.h b/noncore/games/kbill/Strings.h
index 45509d1..ffd830e 100644
--- a/noncore/games/kbill/Strings.h
+++ b/noncore/games/kbill/Strings.h
@@ -3,44 +3,2 @@
3 3
4#define storystr \
5" The Story:\n\
6\n\
7Yet again, the fate of the world rests\n\
8in your hands! An evil computer hacker,\n\
9known only by his handle 'Bill', has\n\
10created the ultimate computer virus. A\n\
11virus so powerful that it has the power\n\
12to transmute an ordinary computer into\n\
13a toaster oven. (oooh!) 'Bill' has\n\
14cloned himself into a billion-jillion\n\
15micro-Bills. Their sole purpose is to\n\
16deliver the nefarious virus, which has\n\
17been cleverly diguised as a popular\n\
18operating system.\n\
19\n\
20As System Administrator/Exterminator,\n\
21your job is to keep Bill from succeeding\n\
22at his task."
23
24#define rulesstr \
25" The Rules:\n\
26\n\
27kBill has been painstakingly designed and\n\
28researched in order to make it as easy to use\n\
29for the whole family as it is for little Sally.\n\
30Years - nay - days of beta testing and \n\
31consulting with the cheapest of human interface\n\
32designers have resulted in a game that is easy\n\
33to use, yet nothing at all like a Macintosh.\n\
34\n\
35I. Whack the Bills (click)\n\
36II. Restart the computer (click)\n\
37III. Pick up stolen OSes & return(drag)\n\
38 them to their respective computers\n\
39IV. Drag the bucket to extinguish sparks\n\
40V. Scoring is based on total uptime,\n\
41 with bonuses for killing Bills.\n\
42\n\
43As for the rest, you can probably figure\n\
44it out. We did, so it can't be too hard."
45
46#define endgamestr \ 4#define endgamestr \
diff --git a/noncore/games/kbill/kbill.cpp b/noncore/games/kbill/kbill.cpp
index 568df95..9fcfd5d 100644
--- a/noncore/games/kbill/kbill.cpp
+++ b/noncore/games/kbill/kbill.cpp
@@ -18,6 +18,10 @@
18#include <qmessagebox.h> 18#include <qmessagebox.h>
19#include <qmultilinedit.h>
19#include <qmenubar.h> 20#include <qmenubar.h>
21#include <qtextbrowser.h>
22#include <qfont.h>
23#include <qwidget.h>
20#include "kbill.h" 24#include "kbill.h"
21#include "inputbox.h" 25#include "inputbox.h"
22 26#include "helpdialog.h"
23#include "objects.h" 27#include "objects.h"
@@ -33,3 +37,3 @@ KBill::KBill() : QMainWindow() {
33 //file->insertItem(("View high scores"), this, SLOT(ViewHighScores())); 37 //file->insertItem(("View high scores"), this, SLOT(ViewHighScores()));
34 file->insertItem(("Quit game"), this, SLOT(Quit())); 38
35 39
@@ -109,3 +113,8 @@ void KBill::Story() {
109 field->stopTimer(); 113 field->stopTimer();
110 QMessageBox::message( ("Story"), (storystr), 0); 114 HelpDialog *stryDialog = new HelpDialog(this,"helpdialog",1);
115 QString stryString = "<b>The Story</b><p>Yet again, the fate of the world rests in your hands! An evil computer hacker, known only by his handle 'Bill', has created the ultimate computer virus. A virus so powerful that it has the power to transmute an ordinary computer into a toaster oven. (oooh!) 'Bill' has cloned himself into a billion-jillion micro-Bills. Their sole purpose is to deliver the nefarious virus, which has been cleverly diguised as a popular operating system. As System Administrator and Exterminator, your job is to keep Bill from succeeding at his task.";
116 stryDialog->setCaption("The story of KBill");
117 stryDialog->TextBrowser1->setText(stryString);
118 stryDialog->resize(200,200);
119 stryDialog->show();
111 field->startTimer(); 120 field->startTimer();
@@ -115,3 +124,8 @@ void KBill::Rules() {
115 field->stopTimer(); 124 field->stopTimer();
116 QMessageBox::message(("Rules"), (rulesstr), 0); 125 HelpDialog *rulesDialog = new HelpDialog(this,"helpdialog",1);
126 rulesDialog->setCaption("The rules of KBill");
127 QString rulesStr = "<b>The Rules</b><p>kBill has been painstakingly designed and researched in order to make it as easy to use for the whole family as it is for little Sally. Years - nay - days of beta testing and consulting with the cheapest of human interface designers have resulted in a game that is easy to use, yet nothing at all like a Macintosh.<p><UL><LI>Whack the Bills (click)</LI><LI>Restart the computer (click)</LI><LI>Pick up stolen OSes & return (drag) them to their respective computers</LI><LI>Drag the bucket to extinguish sparks</LI><LI>Scoring is based on total uptime, with bonuses for killing Bills.</LI></UL><P>As for the rest, you can probably work it out for yourself. We did, so it can't be too hard";
128 rulesDialog->TextBrowser1->setText(rulesStr);
129 rulesDialog->resize(200,200);
130 rulesDialog->show();
117 field->startTimer(); 131 field->startTimer();
diff --git a/noncore/games/kbill/kbill.pro b/noncore/games/kbill/kbill.pro
index a0eddf2..22aa98c 100644
--- a/noncore/games/kbill/kbill.pro
+++ b/noncore/games/kbill/kbill.pro
@@ -8,2 +8,3 @@ Library.cc MCursor.cc Monster.cc Network.cc Picture.cc \
8Spark.cc UI.cpp inputbox.cpp kbill.cpp 8Spark.cc UI.cpp inputbox.cpp kbill.cpp
9INTERFACES = helpdialog.ui
9 TARGET = kbill 10 TARGET = kbill