63 files changed, 489 insertions, 405 deletions
diff --git a/noncore/games/backgammon/backgammon.control b/noncore/games/backgammon/backgammon.control index 6468181..d78b547 100644 --- a/noncore/games/backgammon/backgammon.control +++ b/noncore/games/backgammon/backgammon.control | |||
@@ -1,10 +1,10 @@ | |||
1 | Package: backgammon | 1 | Package: backgammon |
2 | Files: bin/backgammon apps/Games/backgammon.desktop pics/backgammon help/en/html/backgammon.html | 2 | Files: plugins/application/libbackgammon.so* bin/backgammon apps/Games/backgammon.desktop pics/backgammon help/en/html/backgammon.html |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/games | 4 | Section: opie/games |
5 | Maintainer: Ralf Waspe <rwaspe@web.de> | 5 | Maintainer: Ralf Waspe <rwaspe@web.de> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Depends: task-opie-minimal | 7 | Depends: task-opie-minimal |
8 | Description: Backgammon Game | 8 | Description: Backgammon Game |
9 | A Backgammon game for the Opie environment. | 9 | A Backgammon game for the Opie environment. |
10 | Version: $QPE_VERSION$EXTRAVERSION | 10 | Version: $QPE_VERSION$EXTRAVERSION |
diff --git a/noncore/games/backgammon/backgammon.h b/noncore/games/backgammon/backgammon.h index e3276f1..fb50500 100644 --- a/noncore/games/backgammon/backgammon.h +++ b/noncore/games/backgammon/backgammon.h | |||
@@ -56,64 +56,65 @@ private: | |||
56 | int player; | 56 | int player; |
57 | bool dice1_played; | 57 | bool dice1_played; |
58 | bool dice2_played; | 58 | bool dice2_played; |
59 | bool dice3_played; | 59 | bool dice3_played; |
60 | bool dice4_played; | 60 | bool dice4_played; |
61 | bool dice_rolled; | 61 | bool dice_rolled; |
62 | //computer opponent | 62 | //computer opponent |
63 | bool player1_auto; | 63 | bool player1_auto; |
64 | bool player2_auto; | 64 | bool player2_auto; |
65 | 65 | ||
66 | //the images; | 66 | //the images; |
67 | QString theme_name; | 67 | QString theme_name; |
68 | QString board_name; | 68 | QString board_name; |
69 | QString piecesA_name; | 69 | QString piecesA_name; |
70 | QString piecesB_name; | 70 | QString piecesB_name; |
71 | QString diceA_name; | 71 | QString diceA_name; |
72 | QString diceB_name; | 72 | QString diceB_name; |
73 | QString odds_name; | 73 | QString odds_name; |
74 | QString table_name; | 74 | QString table_name; |
75 | 75 | ||
76 | //save game | 76 | //save game |
77 | QString game_name; | 77 | QString game_name; |
78 | 78 | ||
79 | //the rules | 79 | //the rules |
80 | Rules rules; | 80 | Rules rules; |
81 | 81 | ||
82 | //display settings | 82 | //display settings |
83 | Display display; | 83 | Display display; |
84 | //is the game finished ? | 84 | //is the game finished ? |
85 | bool gameFinished; | 85 | bool gameFinished; |
86 | 86 | ||
87 | public: | 87 | public: |
88 | static QString appName() { return QString::fromLatin1("backgammon"); } | ||
88 | BackGammon( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); | 89 | BackGammon( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); |
89 | ~BackGammon(); | 90 | ~BackGammon(); |
90 | private slots: | 91 | private slots: |
91 | void newgame(); | 92 | void newgame(); |
92 | void playerselect(); | 93 | void playerselect(); |
93 | void loadgame(); | 94 | void loadgame(); |
94 | void savegame(); | 95 | void savegame(); |
95 | void deletegame(); | 96 | void deletegame(); |
96 | void newtheme(); | 97 | void newtheme(); |
97 | void loadtheme(); | 98 | void loadtheme(); |
98 | void savetheme(); | 99 | void savetheme(); |
99 | void themedefault(); | 100 | void themedefault(); |
100 | void deletetheme(); | 101 | void deletetheme(); |
101 | void modify_AI(); | 102 | void modify_AI(); |
102 | void setrules(); | 103 | void setrules(); |
103 | void mouse(int x,int y); | 104 | void mouse(int x,int y); |
104 | void done_dice1(); | 105 | void done_dice1(); |
105 | void done_dice2(); | 106 | void done_dice2(); |
106 | void done_dice3(); | 107 | void done_dice3(); |
107 | void done_dice4(); | 108 | void done_dice4(); |
108 | void nomove(); | 109 | void nomove(); |
109 | void nomove2(); | 110 | void nomove2(); |
110 | void finished(int theplayer); | 111 | void finished(int theplayer); |
111 | void autoroll_dice1(); | 112 | void autoroll_dice1(); |
112 | void autoroll_dice2(); | 113 | void autoroll_dice2(); |
113 | private: | 114 | private: |
114 | void draw(); | 115 | void draw(); |
115 | void showdice(); | 116 | void showdice(); |
116 | void setplayer(); | 117 | void setplayer(); |
117 | void applytheme(); | 118 | void applytheme(); |
118 | }; | 119 | }; |
119 | 120 | ||
diff --git a/noncore/games/backgammon/backgammon.pro b/noncore/games/backgammon/backgammon.pro index 4be9491..063d617 100644 --- a/noncore/games/backgammon/backgammon.pro +++ b/noncore/games/backgammon/backgammon.pro | |||
@@ -1,34 +1,32 @@ | |||
1 | TEMPLATE = app | 1 | CONFIG = qt warn_on release quick-app |
2 | CONFIG = qt warn_on release | ||
3 | 2 | ||
4 | HEADERS = backgammon.h \ | 3 | HEADERS = backgammon.h \ |
5 | backgammonview.h \ | 4 | backgammonview.h \ |
6 | canvasimageitem.h \ | 5 | canvasimageitem.h \ |
7 | themedialog.h \ | 6 | themedialog.h \ |
8 | moveengine.h \ | 7 | moveengine.h \ |
9 | filedialog.h \ | 8 | filedialog.h \ |
10 | playerdialog.h \ | 9 | playerdialog.h \ |
11 | aidialog.h \ | 10 | aidialog.h \ |
12 | rulesdialog.h \ | 11 | rulesdialog.h \ |
13 | definition.h | 12 | definition.h |
14 | 13 | ||
15 | SOURCES = main.cpp \ | 14 | SOURCES = main.cpp \ |
16 | backgammon.cpp \ | 15 | backgammon.cpp \ |
17 | backgammonview.cpp \ | 16 | backgammonview.cpp \ |
18 | canvasimageitem.cpp \ | 17 | canvasimageitem.cpp \ |
19 | themedialog.cpp \ | 18 | themedialog.cpp \ |
20 | moveengine.cpp \ | 19 | moveengine.cpp \ |
21 | filedialog.cpp \ | 20 | filedialog.cpp \ |
22 | playerdialog.cpp \ | 21 | playerdialog.cpp \ |
23 | aidialog.cpp \ | 22 | aidialog.cpp \ |
24 | rulesdialog.cpp \ | 23 | rulesdialog.cpp \ |
25 | definition.cpp | 24 | definition.cpp |
26 | 25 | ||
27 | TARGET = backgammon | 26 | TARGET = backgammon |
28 | INCLUDEPATH+= $(OPIEDIR)/include | 27 | INCLUDEPATH+= $(OPIEDIR)/include |
29 | DEPENDPATH+= $(OPIEDIR)/include | 28 | DEPENDPATH+= $(OPIEDIR)/include |
30 | LIBS += -lqpe -lstdc++ | 29 | LIBS += -lqpe -lstdc++ |
31 | DESTDIR = $(OPIEDIR)/bin | ||
32 | 30 | ||
33 | 31 | ||
34 | include ( $(OPIEDIR)/include.pro ) | 32 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/backgammon/main.cpp b/noncore/games/backgammon/main.cpp index 86b452d..58ced10 100644 --- a/noncore/games/backgammon/main.cpp +++ b/noncore/games/backgammon/main.cpp | |||
@@ -1,14 +1,8 @@ | |||
1 | #include <qpe/qpeapplication.h> | 1 | #include <qpe/qpeapplication.h> |
2 | #include "backgammon.h" | 2 | #include "backgammon.h" |
3 | 3 | ||
4 | #include <opie/oapplicationfactory.h> | ||
4 | 5 | ||
5 | int main( int argc, char** argv ) | 6 | OPIE_EXPORT_APP( OApplicationFactory<BackGammon> ) |
6 | { | ||
7 | QPEApplication app( argc, argv ); | ||
8 | 7 | ||
9 | BackGammon* view= new BackGammon(); | ||
10 | app.showMainWidget(view); | ||
11 | |||
12 | return app.exec(); | ||
13 | } | ||
14 | 8 | ||
diff --git a/noncore/games/bounce/bounce.pro b/noncore/games/bounce/bounce.pro index 338daf6..75e4a6b 100644 --- a/noncore/games/bounce/bounce.pro +++ b/noncore/games/bounce/bounce.pro | |||
@@ -1,12 +1,10 @@ | |||
1 | TEMPLATE= app | ||
2 | #CONFIG = qt warn_on debug | 1 | #CONFIG = qt warn_on debug |
3 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release quick-app |
4 | HEADERS = game.h kbounce.h | 3 | HEADERS = game.h kbounce.h |
5 | SOURCES = game.cpp kbounce.cpp main.cpp | 4 | SOURCES = game.cpp kbounce.cpp main.cpp |
6 | INCLUDEPATH+= $(OPIEDIR)/include | 5 | INCLUDEPATH+= $(OPIEDIR)/include |
7 | DEPENDPATH+= $(OPIEDIR)/include | 6 | DEPENDPATH+= $(OPIEDIR)/include |
8 | LIBS += -lqpe | 7 | LIBS += -lqpe |
9 | DESTDIR = $(OPIEDIR)/bin | ||
10 | TARGET = bounce | 8 | TARGET = bounce |
11 | 9 | ||
12 | include ( $(OPIEDIR)/include.pro ) | 10 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/bounce/kbounce.cpp b/noncore/games/bounce/kbounce.cpp index 50f4ef6..211f0ff 100644 --- a/noncore/games/bounce/kbounce.cpp +++ b/noncore/games/bounce/kbounce.cpp | |||
@@ -1,62 +1,63 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2000 Stefan Schimanski <1Stein@gmx.de> | 2 | * Copyright (C) 2000 Stefan Schimanski <1Stein@gmx.de> |
3 | * | 3 | * |
4 | * This program is free software; you can redistribute it and/or | 4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU Library General Public | 5 | * modify it under the terms of the GNU Library General Public |
6 | * License as published by the Free Software Foundation; either | 6 | * License as published by the Free Software Foundation; either |
7 | * version 2 of the License,Life or (at your option) any later version. | 7 | * version 2 of the License,Life or (at your option) any later version. |
8 | * | 8 | * |
9 | * This program is distributed in the hope that it will be useful, | 9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | * Library General Public License for more details. | 12 | * Library General Public License for more details. |
13 | * | 13 | * |
14 | * You should have received a copy of the GNU Library General Public | 14 | * You should have received a copy of the GNU Library General Public |
15 | * License along with this program; if not, write to the Free | 15 | * License along with this program; if not, write to the Free |
16 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 16 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include <qlayout.h> | 19 | #include <qlayout.h> |
20 | #include <qtimer.h> | 20 | #include <qtimer.h> |
21 | #include <qlcdnumber.h> | 21 | #include <qlcdnumber.h> |
22 | #include <qmessagebox.h> | 22 | #include <qmessagebox.h> |
23 | #include <qmainwindow.h> | 23 | #include <qmainwindow.h> |
24 | #include <qpe/qpeapplication.h> | 24 | #include <qpe/qpeapplication.h> |
25 | 25 | ||
26 | #include "kbounce.h" | 26 | #include "kbounce.h" |
27 | #include "game.h" | 27 | #include "game.h" |
28 | #include <qlabel.h> | 28 | #include <qlabel.h> |
29 | 29 | ||
30 | KJezzball::KJezzball() : QMainWindow(0), m_gameWidget( 0 ) | 30 | KJezzball::KJezzball(QWidget *p, const char* n, WFlags f) |
31 | : QMainWindow(p,n,f), m_gameWidget( 0 ) | ||
31 | { | 32 | { |
32 | setCaption(tr("Bounce")); | 33 | setCaption(tr("Bounce")); |
33 | // setup variables | 34 | // setup variables |
34 | m_game.level = 1; | 35 | m_game.level = 1; |
35 | m_game.score = 0; | 36 | m_game.score = 0; |
36 | m_state = Idle; | 37 | m_state = Idle; |
37 | 38 | ||
38 | 39 | ||
39 | menu = menuBar(); | 40 | menu = menuBar(); |
40 | game = new QPopupMenu; | 41 | game = new QPopupMenu; |
41 | game->insertItem(tr("&New game"), this, SLOT(newGame()), Key_N ); | 42 | game->insertItem(tr("&New game"), this, SLOT(newGame()), Key_N ); |
42 | game->insertItem(tr("&Pause game"), this, SLOT(pauseGame()), Key_P ); | 43 | game->insertItem(tr("&Pause game"), this, SLOT(pauseGame()), Key_P ); |
43 | game->insertSeparator(); | 44 | game->insertSeparator(); |
44 | game->insertItem(tr("&About"), this, SLOT(about())); | 45 | game->insertItem(tr("&About"), this, SLOT(about())); |
45 | menu->insertItem( tr("&Game"), game ); | 46 | menu->insertItem( tr("&Game"), game ); |
46 | 47 | ||
47 | // create widgets | 48 | // create widgets |
48 | m_view = new QWidget( this, "m_view" ); | 49 | m_view = new QWidget( this, "m_view" ); |
49 | setCentralWidget( m_view ); | 50 | setCentralWidget( m_view ); |
50 | 51 | ||
51 | m_layout = new QGridLayout( m_view ); | 52 | m_layout = new QGridLayout( m_view ); |
52 | m_layout->setSpacing( 0 ); | 53 | m_layout->setSpacing( 0 ); |
53 | m_layout->setMargin( 0 ); | 54 | m_layout->setMargin( 0 ); |
54 | 55 | ||
55 | ScoreLabel = new QLabel( m_view, "ScoreLabel" ); | 56 | ScoreLabel = new QLabel( m_view, "ScoreLabel" ); |
56 | ScoreLabel->setText( tr( "Score: 00" ) ); | 57 | ScoreLabel->setText( tr( "Score: 00" ) ); |
57 | ScoreLabel->setAlignment( int( QLabel::AlignCenter ) ); | 58 | ScoreLabel->setAlignment( int( QLabel::AlignCenter ) ); |
58 | 59 | ||
59 | m_layout->addWidget( ScoreLabel, 1, 0 ); | 60 | m_layout->addWidget( ScoreLabel, 1, 0 ); |
60 | 61 | ||
61 | LivesLabel = new QLabel( m_view, "LivesLabel" ); | 62 | LivesLabel = new QLabel( m_view, "LivesLabel" ); |
62 | LivesLabel->setText( tr( "Lives: 0%" ) ); | 63 | LivesLabel->setText( tr( "Lives: 0%" ) ); |
diff --git a/noncore/games/bounce/kbounce.h b/noncore/games/bounce/kbounce.h index de41710..c59109f 100644 --- a/noncore/games/bounce/kbounce.h +++ b/noncore/games/bounce/kbounce.h | |||
@@ -3,65 +3,66 @@ | |||
3 | * | 3 | * |
4 | * This program is free software; you can redistribute it and/or | 4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU Library General Public | 5 | * modify it under the terms of the GNU Library General Public |
6 | * License as published by the Free Software Foundation; either | 6 | * License as published by the Free Software Foundation; either |
7 | * version 2 of the License, or (at your option) any later version. | 7 | * version 2 of the License, or (at your option) any later version. |
8 | * | 8 | * |
9 | * This program is distributed in the hope that it will be useful, | 9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | * Library General Public License for more details. | 12 | * Library General Public License for more details. |
13 | * | 13 | * |
14 | * You should have received a copy of the GNU Library General Public | 14 | * You should have received a copy of the GNU Library General Public |
15 | * License along with this program; if not, write to the Free | 15 | * License along with this program; if not, write to the Free |
16 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 16 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #ifndef KJEZZBALL_H_INCLUDED | 19 | #ifndef KJEZZBALL_H_INCLUDED |
20 | #define KJEZZBALL_H_INCLUDED | 20 | #define KJEZZBALL_H_INCLUDED |
21 | 21 | ||
22 | #include <qmainwindow.h> | 22 | #include <qmainwindow.h> |
23 | #include <qmenubar.h> | 23 | #include <qmenubar.h> |
24 | #include <qlabel.h> | 24 | #include <qlabel.h> |
25 | 25 | ||
26 | class JezzGame; | 26 | class JezzGame; |
27 | class QLCDNumber; | 27 | class QLCDNumber; |
28 | class QGridLayout; | 28 | class QGridLayout; |
29 | 29 | ||
30 | class KJezzball : public QMainWindow | 30 | class KJezzball : public QMainWindow |
31 | { | 31 | { |
32 | Q_OBJECT | 32 | Q_OBJECT |
33 | 33 | ||
34 | public: | 34 | public: |
35 | KJezzball(); | 35 | static QString appName() { return QString::fromLatin1("bounce"); } |
36 | KJezzball(QWidget *, const char*, WFlags ); | ||
36 | 37 | ||
37 | public slots: | 38 | public slots: |
38 | void newGame(); | 39 | void newGame(); |
39 | void pauseGame(); | 40 | void pauseGame(); |
40 | void closeGame(); | 41 | void closeGame(); |
41 | void about(); | 42 | void about(); |
42 | 43 | ||
43 | protected slots: | 44 | protected slots: |
44 | void died(); | 45 | void died(); |
45 | void newPercent( int percent ); | 46 | void newPercent( int percent ); |
46 | void second(); | 47 | void second(); |
47 | void switchLevel(); | 48 | void switchLevel(); |
48 | void gameOverNow(); | 49 | void gameOverNow(); |
49 | 50 | ||
50 | protected: | 51 | protected: |
51 | void createLevel( int level ); | 52 | void createLevel( int level ); |
52 | void startLevel(); | 53 | void startLevel(); |
53 | void stopLevel(); | 54 | void stopLevel(); |
54 | void nextLevel(); | 55 | void nextLevel(); |
55 | void gameOver(); | 56 | void gameOver(); |
56 | void initXMLUI(); | 57 | void initXMLUI(); |
57 | 58 | ||
58 | void focusOutEvent( QFocusEvent * ); | 59 | void focusOutEvent( QFocusEvent * ); |
59 | void focusInEvent ( QFocusEvent * ); | 60 | void focusInEvent ( QFocusEvent * ); |
60 | void keyPressEvent( QKeyEvent *ev ); | 61 | void keyPressEvent( QKeyEvent *ev ); |
61 | 62 | ||
62 | JezzGame *m_gameWidget; | 63 | JezzGame *m_gameWidget; |
63 | QWidget *m_view; | 64 | QWidget *m_view; |
64 | QGridLayout *m_layout; | 65 | QGridLayout *m_layout; |
65 | QLCDNumber *m_levelLCD; | 66 | QLCDNumber *m_levelLCD; |
66 | QLCDNumber *m_lifesLCD; | 67 | QLCDNumber *m_lifesLCD; |
67 | QLCDNumber *m_scoreLCD; | 68 | QLCDNumber *m_scoreLCD; |
diff --git a/noncore/games/bounce/main.cpp b/noncore/games/bounce/main.cpp index a6b7c1a..9ea86a6 100644 --- a/noncore/games/bounce/main.cpp +++ b/noncore/games/bounce/main.cpp | |||
@@ -1,29 +1,24 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2000 Stefan Schimanski <schimmi@kde.org> | 2 | * Copyright (C) 2000 Stefan Schimanski <schimmi@kde.org> |
3 | * | 3 | * |
4 | * This program is free software; you can redistribute it and/or | 4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU Library General Public | 5 | * modify it under the terms of the GNU Library General Public |
6 | * License as published by the Free Software Foundation; either | 6 | * License as published by the Free Software Foundation; either |
7 | * version 2 of the License, or (at your option) any later version. | 7 | * version 2 of the License, or (at your option) any later version. |
8 | * | 8 | * |
9 | * This program is distributed in the hope that it will be useful, | 9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | * Library General Public License for more details. | 12 | * Library General Public License for more details. |
13 | * | 13 | * |
14 | * You should have received a copy of the GNU Library General Public | 14 | * You should have received a copy of the GNU Library General Public |
15 | * License along with this program; if not, write to the Free | 15 | * License along with this program; if not, write to the Free |
16 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 16 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include <qpe/qpeapplication.h> | 19 | #include <qpe/qpeapplication.h> |
20 | #include "kbounce.h" | 20 | #include "kbounce.h" |
21 | #include <opie/oapplicationfactory.h> | ||
21 | 22 | ||
22 | int main(int argc, char **argv) | 23 | OPIE_EXPORT_APP( OApplicationFactory<KJezzball> ) |
23 | { | ||
24 | QPEApplication a( argc, argv ); | ||
25 | KJezzball *top = new KJezzball; | ||
26 | a.showMainWidget(top); | ||
27 | 24 | ||
28 | return a.exec(); | ||
29 | } | ||
diff --git a/noncore/games/bounce/opie-bounce.control b/noncore/games/bounce/opie-bounce.control index 8b3fdb9..bfe85d3 100644 --- a/noncore/games/bounce/opie-bounce.control +++ b/noncore/games/bounce/opie-bounce.control | |||
@@ -1,11 +1,11 @@ | |||
1 | Package: opie-bounce | 1 | Package: opie-bounce |
2 | Files: bin/bounce apps/Games/bounce.desktop pics/bounce/*.png | 2 | Files: plugins/application/libbounce.so* bin/bounce apps/Games/bounce.desktop pics/bounce/*.png |
3 | Version: 0.6-$SUB_VERSION | 3 | Version: 0.6-$SUB_VERSION |
4 | Depends: task-opie-minimal | 4 | Depends: task-opie-minimal |
5 | Priority: optional | 5 | Priority: optional |
6 | Section: opie/games | 6 | Section: opie/games |
7 | Maintainer: Martin Imobersteg <imm@gmx.ch> | 7 | Maintainer: Martin Imobersteg <imm@gmx.ch> |
8 | Architecture: arm | 8 | Architecture: arm |
9 | License: GPL | 9 | License: GPL |
10 | Description: bounce | 10 | Description: bounce |
11 | A JezzGame like game for Qtopia. | 11 | A JezzGame like game for Qtopia. |
diff --git a/noncore/games/buzzword/buzzword.cpp b/noncore/games/buzzword/buzzword.cpp index 97a17a1..f746065 100644 --- a/noncore/games/buzzword/buzzword.cpp +++ b/noncore/games/buzzword/buzzword.cpp | |||
@@ -39,65 +39,65 @@ | |||
39 | BuzzLabel::BuzzLabel( QWidget *parent, const char *name ) | 39 | BuzzLabel::BuzzLabel( QWidget *parent, const char *name ) |
40 | : QLabel( parent, name ) | 40 | : QLabel( parent, name ) |
41 | { | 41 | { |
42 | } | 42 | } |
43 | 43 | ||
44 | void BuzzLabel::mousePressEvent(QMouseEvent *e) | 44 | void BuzzLabel::mousePressEvent(QMouseEvent *e) |
45 | { | 45 | { |
46 | if(e->button() == LeftButton) | 46 | if(e->button() == LeftButton) |
47 | { | 47 | { |
48 | emit clicked(); | 48 | emit clicked(); |
49 | } | 49 | } |
50 | } | 50 | } |
51 | 51 | ||
52 | BuzzItem::BuzzItem( int row, int column, QString text, QWidget *parent, const char *name ) | 52 | BuzzItem::BuzzItem( int row, int column, QString text, QWidget *parent, const char *name ) |
53 | : QVBox( parent, name ), _row(row), _column(column) | 53 | : QVBox( parent, name ), _row(row), _column(column) |
54 | { | 54 | { |
55 | setFrameStyle( QFrame::Panel | QFrame::Raised ); | 55 | setFrameStyle( QFrame::Panel | QFrame::Raised ); |
56 | setLineWidth( 1 ); | 56 | setLineWidth( 1 ); |
57 | label = new BuzzLabel(this, "label"); | 57 | label = new BuzzLabel(this, "label"); |
58 | label->setText(text); | 58 | label->setText(text); |
59 | label->setAlignment( int( QLabel::AlignCenter ) ); | 59 | label->setAlignment( int( QLabel::AlignCenter ) ); |
60 | 60 | ||
61 | connect( label, SIGNAL(clicked()), this, SLOT(flip()) ); | 61 | connect( label, SIGNAL(clicked()), this, SLOT(flip()) ); |
62 | } | 62 | } |
63 | 63 | ||
64 | void BuzzItem::flip() | 64 | void BuzzItem::flip() |
65 | { | 65 | { |
66 | setLineWidth( 1 ); | 66 | setLineWidth( 1 ); |
67 | label->setBackgroundColor(label->colorGroup().highlight()); | 67 | label->setBackgroundColor(label->colorGroup().highlight()); |
68 | emit clicked(_row, _column); | 68 | emit clicked(_row, _column); |
69 | } | 69 | } |
70 | 70 | ||
71 | BuzzWord::BuzzWord() : QMainWindow(0) | 71 | BuzzWord::BuzzWord(QWidget* parent, const char* name, WFlags fl ) : QMainWindow( parent, name, fl ) |
72 | { | 72 | { |
73 | setCaption(tr("buZzword")); | 73 | setCaption(tr("buZzword")); |
74 | 74 | ||
75 | menu = menuBar(); | 75 | menu = menuBar(); |
76 | game = new QPopupMenu; | 76 | game = new QPopupMenu; |
77 | game->insertItem(tr("&New game"), this, SLOT(newGame()), Key_N ); | 77 | game->insertItem(tr("&New game"), this, SLOT(newGame()), Key_N ); |
78 | menu->insertItem( tr("&Game"), game ); | 78 | menu->insertItem( tr("&Game"), game ); |
79 | 79 | ||
80 | gridVal = 4; | 80 | gridVal = 4; |
81 | grid = NULL; | 81 | grid = NULL; |
82 | gameOver = false; | 82 | gameOver = false; |
83 | newGame(); | 83 | newGame(); |
84 | } | 84 | } |
85 | 85 | ||
86 | void BuzzWord::drawGrid() | 86 | void BuzzWord::drawGrid() |
87 | { | 87 | { |
88 | QStringList l; | 88 | QStringList l; |
89 | 89 | ||
90 | QString path = QPEApplication::qpeDir()+"share/buzzword/"; | 90 | QString path = QPEApplication::qpeDir()+"share/buzzword/"; |
91 | QFile f( path + "buzzwords" ); | 91 | QFile f( path + "buzzwords" ); |
92 | if ( !f.open( IO_ReadOnly ) ) | 92 | if ( !f.open( IO_ReadOnly ) ) |
93 | return; | 93 | return; |
94 | 94 | ||
95 | QTextStream t( &f ); | 95 | QTextStream t( &f ); |
96 | 96 | ||
97 | while (!t.atEnd()) | 97 | while (!t.atEnd()) |
98 | { | 98 | { |
99 | l << t.readLine(); | 99 | l << t.readLine(); |
100 | } | 100 | } |
101 | 101 | ||
102 | f.close(); | 102 | f.close(); |
103 | 103 | ||
diff --git a/noncore/games/buzzword/buzzword.h b/noncore/games/buzzword/buzzword.h index 37dd5b4..c0e43d0 100644 --- a/noncore/games/buzzword/buzzword.h +++ b/noncore/games/buzzword/buzzword.h | |||
@@ -35,54 +35,55 @@ public: | |||
35 | 35 | ||
36 | protected: | 36 | protected: |
37 | virtual void mousePressEvent(QMouseEvent *e); | 37 | virtual void mousePressEvent(QMouseEvent *e); |
38 | 38 | ||
39 | signals: | 39 | signals: |
40 | void clicked(); | 40 | void clicked(); |
41 | }; | 41 | }; |
42 | 42 | ||
43 | class BuzzItem : public QVBox | 43 | class BuzzItem : public QVBox |
44 | { | 44 | { |
45 | Q_OBJECT | 45 | Q_OBJECT |
46 | 46 | ||
47 | public: | 47 | public: |
48 | BuzzItem( int row, int column, QString text, QWidget *parent=0, const char *name=0 ); | 48 | BuzzItem( int row, int column, QString text, QWidget *parent=0, const char *name=0 ); |
49 | 49 | ||
50 | private: | 50 | private: |
51 | QLabel* label; | 51 | QLabel* label; |
52 | int _row; | 52 | int _row; |
53 | int _column; | 53 | int _column; |
54 | 54 | ||
55 | public slots: | 55 | public slots: |
56 | void flip(); | 56 | void flip(); |
57 | 57 | ||
58 | signals: | 58 | signals: |
59 | void clicked(int row,int column); | 59 | void clicked(int row,int column); |
60 | }; | 60 | }; |
61 | 61 | ||
62 | class BuzzWord : public QMainWindow | 62 | class BuzzWord : public QMainWindow |
63 | { | 63 | { |
64 | Q_OBJECT | 64 | Q_OBJECT |
65 | 65 | ||
66 | public: | 66 | public: |
67 | BuzzWord(); | 67 | BuzzWord( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); |
68 | static QString appName() { return QString::fromLatin1("buzzword"); } | ||
68 | 69 | ||
69 | private: | 70 | private: |
70 | void drawGrid(); | 71 | void drawGrid(); |
71 | void bingo(); | 72 | void bingo(); |
72 | QString getWord(); | 73 | QString getWord(); |
73 | 74 | ||
74 | QMenuBar *menu; | 75 | QMenuBar *menu; |
75 | QPopupMenu *game; | 76 | QPopupMenu *game; |
76 | QGrid *grid; | 77 | QGrid *grid; |
77 | 78 | ||
78 | int gridVal; | 79 | int gridVal; |
79 | int map[4][4]; | 80 | int map[4][4]; |
80 | bool gameOver; | 81 | bool gameOver; |
81 | 82 | ||
82 | public slots: | 83 | public slots: |
83 | void newGame(); | 84 | void newGame(); |
84 | void clicked(int row, int column); | 85 | void clicked(int row, int column); |
85 | 86 | ||
86 | }; | 87 | }; |
87 | 88 | ||
88 | #endif | 89 | #endif |
diff --git a/noncore/games/buzzword/buzzword.pro b/noncore/games/buzzword/buzzword.pro index 0faede8..247b593 100644 --- a/noncore/games/buzzword/buzzword.pro +++ b/noncore/games/buzzword/buzzword.pro | |||
@@ -1,11 +1,10 @@ | |||
1 | TEMPLATE= app | 1 | CONFIG = qt warn_on release quick-app |
2 | CONFIG = qt warn_on release | ||
3 | HEADERS = buzzword.h | 2 | HEADERS = buzzword.h |
4 | SOURCES = buzzword.cpp main.cpp | 3 | SOURCES = buzzword.cpp main.cpp |
5 | INCLUDEPATH+= $(OPIEDIR)/include | 4 | INCLUDEPATH+= $(OPIEDIR)/include |
6 | DEPENDPATH+= $(OPIEDIR)/include | 5 | DEPENDPATH+= $(OPIEDIR)/include |
7 | DESTDIR = $(OPIEDIR)/bin | ||
8 | LIBS += -lqpe | 6 | LIBS += -lqpe |
9 | TARGET = buzzword | 7 | |
8 | TARGET = buzzword | ||
10 | 9 | ||
11 | include ( $(OPIEDIR)/include.pro ) | 10 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/buzzword/main.cpp b/noncore/games/buzzword/main.cpp index 2d9ff81..67f2c26 100644 --- a/noncore/games/buzzword/main.cpp +++ b/noncore/games/buzzword/main.cpp | |||
@@ -1,35 +1,24 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (C) 2002 Martin Imobersteg <imm@gmx.ch> | 2 | * Copyright (C) 2002 Martin Imobersteg <imm@gmx.ch> |
3 | * | 3 | * |
4 | * This program is free software; you can redistribute it and/or | 4 | * This program is free software; you can redistribute it and/or |
5 | * modify it under the terms of the GNU General Public | 5 | * modify it under the terms of the GNU General Public |
6 | * License as published by the Free Software Foundation; either | 6 | * License as published by the Free Software Foundation; either |
7 | * version 2 of the License,Life or (at your option) any later version. | 7 | * version 2 of the License,Life or (at your option) any later version. |
8 | * | 8 | * |
9 | * This program is distributed in the hope that it will be useful, | 9 | * This program is distributed in the hope that it will be useful, |
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
12 | * Library General Public License for more details. | 12 | * Library General Public License for more details. |
13 | * | 13 | * |
14 | * You should have received a copy of the GNU Library General Public | 14 | * You should have received a copy of the GNU Library General Public |
15 | * License along with this program; if not, write to the Free | 15 | * License along with this program; if not, write to the Free |
16 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 16 | * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include <qpe/qpeapplication.h> | 19 | #include <qpe/qpeapplication.h> |
20 | 20 | #include <opie/oapplicationfactory.h> | |
21 | #include <stdlib.h> | ||
22 | #include <time.h> | ||
23 | 21 | ||
24 | #include "buzzword.h" | 22 | #include "buzzword.h" |
25 | 23 | ||
26 | int main(int argc, char **argv) | 24 | OPIE_EXPORT_APP( OApplicationFactory<BuzzWord> ) |
27 | { | ||
28 | srand(time(0)); | ||
29 | |||
30 | QPEApplication a( argc, argv ); | ||
31 | BuzzWord *top = new BuzzWord; | ||
32 | a.showMainWidget(top); | ||
33 | |||
34 | return a.exec(); | ||
35 | } | ||
diff --git a/noncore/games/buzzword/opie-buzzword.control b/noncore/games/buzzword/opie-buzzword.control index 08b442b..b3e2496 100644 --- a/noncore/games/buzzword/opie-buzzword.control +++ b/noncore/games/buzzword/opie-buzzword.control | |||
@@ -1,11 +1,11 @@ | |||
1 | Package: opie-buzzword | 1 | Package: opie-buzzword |
2 | Files: bin/buzzword apps/Games/buzzword.desktop pics/buzzword/buzzword.png share/buzzword/buzzwords | 2 | Files: plugins/application/libbuzzword.so* bin/buzzword apps/Games/buzzword.desktop pics/buzzword/buzzword.png share/buzzword/buzzwords |
3 | Version: 1.1-$SUB_VERSION | 3 | Version: 1.1-$SUB_VERSION |
4 | Depends: task-opie-minimal | 4 | Depends: task-opie-minimal |
5 | Priority: optional | 5 | Priority: optional |
6 | Section: opie/games | 6 | Section: opie/games |
7 | Maintainer: Martin Imobersteg <imm@gmx.ch> | 7 | Maintainer: Martin Imobersteg <imm@gmx.ch> |
8 | Architecture: arm | 8 | Architecture: arm |
9 | License: GPL | 9 | License: GPL |
10 | Description: BuzzWord | 10 | Description: BuzzWord |
11 | A BuzzWord Bingo for Qtopia. | 11 | A BuzzWord Bingo for Qtopia. |
diff --git a/noncore/games/fifteen/opie-fifteen.control b/noncore/games/fifteen/opie-fifteen.control index 8fa355f..a6e8314 100644 --- a/noncore/games/fifteen/opie-fifteen.control +++ b/noncore/games/fifteen/opie-fifteen.control | |||
@@ -1,11 +1,11 @@ | |||
1 | Package: opie-fifteen | 1 | Package: opie-fifteen |
2 | Files: bin/fifteen apps/Games/fifteen.desktop pics/fifteen | 2 | Files: plugins/application/libfifteen.so* bin/fifteen apps/Games/fifteen.desktop pics/fifteen |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/games | 4 | Section: opie/games |
5 | Maintainer: Martin Imobersteg <imm@gmx.ch> | 5 | Maintainer: Martin Imobersteg <imm@gmx.ch> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Arch: iPAQ | 7 | Arch: iPAQ |
8 | Depends: task-opie-minimal | 8 | Depends: task-opie-minimal |
9 | Description: Fifteen pieces game | 9 | Description: Fifteen pieces game |
10 | A game for the Opie environment. | 10 | A game for the Opie environment. |
11 | Version: $QPE_VERSION$EXTRAVERSION | 11 | Version: $QPE_VERSION$EXTRAVERSION |
diff --git a/noncore/games/go/go.pro b/noncore/games/go/go.pro index 2bc0787..f6c6a54 100644 --- a/noncore/games/go/go.pro +++ b/noncore/games/go/go.pro | |||
@@ -1,19 +1,19 @@ | |||
1 | DESTDIR = $(OPIEDIR)/bin | 1 | CONFIG = qt warn_on release quick-app |
2 | TEMPLATE= app | ||
3 | CONFIG = qt warn_on release | ||
4 | HEADERS = amigo.h \ | 2 | HEADERS = amigo.h \ |
5 | go.h \ | 3 | go.h \ |
6 | goplayutils.h \ | 4 | goplayutils.h \ |
7 | gowidget.h | 5 | gowidget.h |
8 | SOURCES = amigo.c \ | 6 | SOURCES = amigo.c \ |
9 | goplayer.c \ | 7 | goplayer.c \ |
10 | goplayutils.c \ | 8 | goplayutils.c \ |
11 | killable.c \ | 9 | killable.c \ |
12 | gowidget.cpp \ | 10 | gowidget.cpp \ |
13 | main.cpp | 11 | main.cpp |
14 | INCLUDEPATH += $(OPIEDIR)/include | 12 | INCLUDEPATH += $(OPIEDIR)/include |
15 | DEPENDPATH+= $(OPIEDIR)/include | 13 | DEPENDPATH+= $(OPIEDIR)/include |
16 | LIBS += -lqpe | 14 | LIBS += -lqpe |
17 | TARGET = go | 15 | TARGET = go |
18 | 16 | ||
17 | |||
18 | |||
19 | include ( $(OPIEDIR)/include.pro ) | 19 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/go/gowidget.cpp b/noncore/games/go/gowidget.cpp index 6d06f3b..cf89267 100644 --- a/noncore/games/go/gowidget.cpp +++ b/noncore/games/go/gowidget.cpp | |||
@@ -22,66 +22,66 @@ | |||
22 | 22 | ||
23 | #include <qpe/config.h> | 23 | #include <qpe/config.h> |
24 | #include <qpe/resource.h> | 24 | #include <qpe/resource.h> |
25 | 25 | ||
26 | #include <qpainter.h> | 26 | #include <qpainter.h> |
27 | #include <qpixmap.h> | 27 | #include <qpixmap.h> |
28 | #include <qpe/qpetoolbar.h> | 28 | #include <qpe/qpetoolbar.h> |
29 | #include <qmenubar.h> | 29 | #include <qmenubar.h> |
30 | #include <qpopupmenu.h> | 30 | #include <qpopupmenu.h> |
31 | #include <qaction.h> | 31 | #include <qaction.h> |
32 | #include <qapplication.h> //processEvents() | 32 | #include <qapplication.h> //processEvents() |
33 | #include <qlabel.h> | 33 | #include <qlabel.h> |
34 | 34 | ||
35 | //#include <stdio.h> | 35 | //#include <stdio.h> |
36 | 36 | ||
37 | #include "amigo.h" | 37 | #include "amigo.h" |
38 | #include "goplayutils.h" | 38 | #include "goplayutils.h" |
39 | 39 | ||
40 | static const enum bVal computer_color = BLACK; | 40 | static const enum bVal computer_color = BLACK; |
41 | 41 | ||
42 | static int current_handicap = 1; | 42 | static int current_handicap = 1; |
43 | 43 | ||
44 | static QBrush *goBrush; | 44 | static QBrush *goBrush; |
45 | //static QImage *newBlackStone; | 45 | //static QImage *newBlackStone; |
46 | //static QImage *blackStone; | 46 | //static QImage *blackStone; |
47 | //static QImage *whiteStone; | 47 | //static QImage *whiteStone; |
48 | static QPixmap *newBlackStone; | 48 | static QPixmap *newBlackStone; |
49 | static QPixmap *blackStone; | 49 | static QPixmap *blackStone; |
50 | static QPixmap *whiteStone; | 50 | static QPixmap *whiteStone; |
51 | 51 | ||
52 | static bool smallStones = FALSE; | 52 | static bool smallStones = FALSE; |
53 | 53 | ||
54 | GoMainWidget::GoMainWidget( QWidget *parent, const char* name) : | 54 | GoMainWidget::GoMainWidget( QWidget *parent, const char* name, WFlags fl) : |
55 | QMainWindow( parent, name ) | 55 | QMainWindow( parent, name, fl ) |
56 | { | 56 | { |
57 | setToolBarsMovable( FALSE ); | 57 | setToolBarsMovable( FALSE ); |
58 | GoWidget *go = new GoWidget(this); | 58 | GoWidget *go = new GoWidget(this); |
59 | 59 | ||
60 | setCentralWidget(go); | 60 | setCentralWidget(go); |
61 | toolbar = new QToolBar(this); | 61 | toolbar = new QToolBar(this); |
62 | toolbar->setHorizontalStretchable( TRUE ); | 62 | toolbar->setHorizontalStretchable( TRUE ); |
63 | addToolBar(toolbar); | 63 | addToolBar(toolbar); |
64 | 64 | ||
65 | QMenuBar *mb = new QMenuBar( toolbar ); | 65 | QMenuBar *mb = new QMenuBar( toolbar ); |
66 | mb->setMargin(0); | 66 | mb->setMargin(0); |
67 | QPopupMenu *file = new QPopupMenu( this ); | 67 | QPopupMenu *file = new QPopupMenu( this ); |
68 | 68 | ||
69 | QAction *a = new QAction( tr( "New Game" ), QString::null, 0, this, 0 ); | 69 | QAction *a = new QAction( tr( "New Game" ), QString::null, 0, this, 0 ); |
70 | connect( a, SIGNAL( activated() ), go, SLOT( newGame() ) ); | 70 | connect( a, SIGNAL( activated() ), go, SLOT( newGame() ) ); |
71 | a->addTo( file ); | 71 | a->addTo( file ); |
72 | 72 | ||
73 | a = new QAction( tr( "Pass" ), Resource::loadPixmap( "pass" ), QString::null, 0, this, 0 ); | 73 | a = new QAction( tr( "Pass" ), Resource::loadPixmap( "pass" ), QString::null, 0, this, 0 ); |
74 | connect( a, SIGNAL( activated() ), go, SLOT( pass() ) ); | 74 | connect( a, SIGNAL( activated() ), go, SLOT( pass() ) ); |
75 | a->addTo( file ); | 75 | a->addTo( file ); |
76 | a->addTo( toolbar ); | 76 | a->addTo( toolbar ); |
77 | 77 | ||
78 | 78 | ||
79 | a = new QAction( tr( "Resign" ), Resource::loadPixmap( "reset" ), QString::null, 0, this, 0 ); | 79 | a = new QAction( tr( "Resign" ), Resource::loadPixmap( "reset" ), QString::null, 0, this, 0 ); |
80 | connect( a, SIGNAL( activated() ), go, SLOT( resign() ) ); | 80 | connect( a, SIGNAL( activated() ), go, SLOT( resign() ) ); |
81 | a->addTo( file ); | 81 | a->addTo( file ); |
82 | 82 | ||
83 | a = new QAction( tr( "Two player option" ), QString::null, 0, this, 0 ); | 83 | a = new QAction( tr( "Two player option" ), QString::null, 0, this, 0 ); |
84 | a->setToggleAction( TRUE ); | 84 | a->setToggleAction( TRUE ); |
85 | connect( a, SIGNAL( toggled(bool) ), go, SLOT( setTwoplayer(bool) ) ); | 85 | connect( a, SIGNAL( toggled(bool) ), go, SLOT( setTwoplayer(bool) ) ); |
86 | a->addTo( file ); | 86 | a->addTo( file ); |
87 | 87 | ||
diff --git a/noncore/games/go/gowidget.h b/noncore/games/go/gowidget.h index 94de2cc..429dc33 100644 --- a/noncore/games/go/gowidget.h +++ b/noncore/games/go/gowidget.h | |||
@@ -2,65 +2,66 @@ | |||
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #ifndef GOWIDGET_H | 21 | #ifndef GOWIDGET_H |
22 | #define GOWIDGET_H | 22 | #define GOWIDGET_H |
23 | 23 | ||
24 | #include <qmainwindow.h> | 24 | #include <qmainwindow.h> |
25 | #include "amigo.h" | 25 | #include "amigo.h" |
26 | 26 | ||
27 | 27 | ||
28 | class QToolBar; | 28 | class QToolBar; |
29 | 29 | ||
30 | class GoMainWidget : public QMainWindow | 30 | class GoMainWidget : public QMainWindow |
31 | { | 31 | { |
32 | Q_OBJECT | 32 | Q_OBJECT |
33 | public: | 33 | public: |
34 | GoMainWidget( QWidget *parent=0, const char* name=0); | 34 | static QString appName() { return QString::fromLatin1("go"); } |
35 | GoMainWidget( QWidget *parent=0, const char* name=0, WFlags fl = 0); | ||
35 | protected: | 36 | protected: |
36 | void resizeEvent( QResizeEvent * ); | 37 | void resizeEvent( QResizeEvent * ); |
37 | private: | 38 | private: |
38 | QToolBar *toolbar; | 39 | QToolBar *toolbar; |
39 | 40 | ||
40 | }; | 41 | }; |
41 | 42 | ||
42 | 43 | ||
43 | class QLabel; | 44 | class QLabel; |
44 | class GoWidget : public QWidget | 45 | class GoWidget : public QWidget |
45 | { | 46 | { |
46 | Q_OBJECT | 47 | Q_OBJECT |
47 | public: | 48 | public: |
48 | GoWidget( QWidget *parent=0, const char* name=0); | 49 | GoWidget( QWidget *parent=0, const char* name=0); |
49 | ~GoWidget(); | 50 | ~GoWidget(); |
50 | 51 | ||
51 | void doMove( int x, int y ); | 52 | void doMove( int x, int y ); |
52 | void doComputerMove(); | 53 | void doComputerMove(); |
53 | 54 | ||
54 | void readConfig(); | 55 | void readConfig(); |
55 | void writeConfig(); | 56 | void writeConfig(); |
56 | 57 | ||
57 | public slots: | 58 | public slots: |
58 | void pass(); | 59 | void pass(); |
59 | void resign(); | 60 | void resign(); |
60 | void newGame(); | 61 | void newGame(); |
61 | void setTwoplayer( bool ); | 62 | void setTwoplayer( bool ); |
62 | void setHandicap( int ); | 63 | void setHandicap( int ); |
63 | signals: | 64 | signals: |
64 | void showScore( const QString& ); | 65 | void showScore( const QString& ); |
65 | void showTurn( const QPixmap& ); | 66 | void showTurn( const QPixmap& ); |
66 | 67 | ||
diff --git a/noncore/games/go/main.cpp b/noncore/games/go/main.cpp index c7e2669..f24e3c3 100644 --- a/noncore/games/go/main.cpp +++ b/noncore/games/go/main.cpp | |||
@@ -1,35 +1,28 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "gowidget.h" | 21 | #include "gowidget.h" |
22 | 22 | ||
23 | #include <qpe/qpeapplication.h> | 23 | #include <qpe/qpeapplication.h> |
24 | 24 | ||
25 | #include <stdio.h> | 25 | #include <opie/oapplicationfactory.h> |
26 | |||
27 | OPIE_EXPORT_APP( OApplicationFactory<GoMainWidget> ) | ||
26 | 28 | ||
27 | int main( int argc, char ** argv) | ||
28 | { | ||
29 | QPEApplication app( argc, argv ); | ||
30 | |||
31 | GoMainWidget m; | ||
32 | m.setCaption( GoWidget::tr("Go") ); | ||
33 | app.showMainWidget( &m ); | ||
34 | return app.exec(); | ||
35 | } | ||
diff --git a/noncore/games/go/opie-go.control b/noncore/games/go/opie-go.control index b07e8be..95b319e 100644 --- a/noncore/games/go/opie-go.control +++ b/noncore/games/go/opie-go.control | |||
@@ -1,10 +1,10 @@ | |||
1 | Package: opie-go | 1 | Package: opie-go |
2 | Files: bin/go apps/Games/go.desktop pics/go | 2 | Files: plugins/application/libgo.so* bin/go apps/Games/go.desktop pics/go |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/games | 4 | Section: opie/games |
5 | Maintainer: Opie Project <opie@handhelds.org> | 5 | Maintainer: Warwick Allison <warwick@trolltech.com> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Depends: task-opie-minimal | 7 | Depends: task-opie-minimal |
8 | Description: The game of Go | 8 | Description: The game of Go |
9 | A game for the Opie environment. | 9 | A game for the Opie environment. |
10 | Version: $QPE_VERSION$EXTRAVERSION | 10 | Version: $QPE_VERSION$EXTRAVERSION |
diff --git a/noncore/games/kcheckers/kcheckers.cpp b/noncore/games/kcheckers/kcheckers.cpp index c2eba0d..2eb37e5 100644 --- a/noncore/games/kcheckers/kcheckers.cpp +++ b/noncore/games/kcheckers/kcheckers.cpp | |||
@@ -13,67 +13,68 @@ | |||
13 | #include "kcheckers.h" | 13 | #include "kcheckers.h" |
14 | #include "echeckers.h" | 14 | #include "echeckers.h" |
15 | #include "rcheckers.h" | 15 | #include "rcheckers.h" |
16 | 16 | ||
17 | #include "pics/logo.xpm" | 17 | #include "pics/logo.xpm" |
18 | #include "pics/undo.xpm" | 18 | #include "pics/undo.xpm" |
19 | #include "pics/exit.xpm" | 19 | #include "pics/exit.xpm" |
20 | #include "pics/help.xpm" | 20 | #include "pics/help.xpm" |
21 | #include "pics/wood1.xpm" | 21 | #include "pics/wood1.xpm" |
22 | #include "pics/wood2.xpm" | 22 | #include "pics/wood2.xpm" |
23 | #include "pics/wood3.xpm" | 23 | #include "pics/wood3.xpm" |
24 | #include "pics/green1.xpm" | 24 | #include "pics/green1.xpm" |
25 | #include "pics/green2.xpm" | 25 | #include "pics/green2.xpm" |
26 | #include "pics/green3.xpm" | 26 | #include "pics/green3.xpm" |
27 | #include "pics/marble1.xpm" | 27 | #include "pics/marble1.xpm" |
28 | #include "pics/marble2.xpm" | 28 | #include "pics/marble2.xpm" |
29 | #include "pics/marble3.xpm" | 29 | #include "pics/marble3.xpm" |
30 | #include "pics/biglogo.xpm" | 30 | #include "pics/biglogo.xpm" |
31 | #include "pics/man_black.xpm" | 31 | #include "pics/man_black.xpm" |
32 | #include "pics/man_white.xpm" | 32 | #include "pics/man_white.xpm" |
33 | #include "pics/king_black.xpm" | 33 | #include "pics/king_black.xpm" |
34 | #include "pics/king_white.xpm" | 34 | #include "pics/king_white.xpm" |
35 | #include "pics/contexthelp.xpm" | 35 | #include "pics/contexthelp.xpm" |
36 | 36 | ||
37 | 37 | ||
38 | QString KCheckers::enNumeration="1 2 3 4 5 6 7 8 9 1011121314151617181920212223242526272829303132"; | 38 | QString KCheckers::enNumeration="1 2 3 4 5 6 7 8 9 1011121314151617181920212223242526272829303132"; |
39 | QString KCheckers::ruNumeration="B8D8F8H8A7C7E7G7B6D6F6H6A5C5E5G5B4D4F4H4A3C3E3G3B2D2F2H2A1C1E1G1"; | 39 | QString KCheckers::ruNumeration="B8D8F8H8A7C7E7G7B6D6F6H6A5C5E5G5B4D4F4H4A3C3E3G3B2D2F2H2A1C1E1G1"; |
40 | 40 | ||
41 | const int KCheckers::t[]={6,7,8,9,11,12,13,14,17,18,19,20,22,23, | 41 | const int KCheckers::t[]={6,7,8,9,11,12,13,14,17,18,19,20,22,23, |
42 | 24,25,28,29,30,31,33,34,35,36,39,40,41,42,44,45,46,47}; | 42 | 24,25,28,29,30,31,33,34,35,36,39,40,41,42,44,45,46,47}; |
43 | 43 | ||
44 | 44 | ||
45 | KCheckers::KCheckers():QMainWindow(0,0,WStyle_DialogBorder) | 45 | KCheckers::KCheckers(QWidget *p, const char* n, WFlags ) |
46 | :QMainWindow(p,n,WStyle_DialogBorder) | ||
46 | { | 47 | { |
47 | setCaption("KCheckers"); | 48 | setCaption(tr("KCheckers") ); |
48 | setIcon(QPixmap(biglogo_xpm)); | 49 | setIcon(QPixmap(biglogo_xpm)); |
49 | 50 | ||
50 | setToolBarsMovable(false); | 51 | setToolBarsMovable(false); |
51 | 52 | ||
52 | // Make a menubar | 53 | // Make a menubar |
53 | 54 | ||
54 | gameMenu=new QPopupMenu; | 55 | gameMenu=new QPopupMenu; |
55 | CHECK_PTR(gameMenu); | 56 | CHECK_PTR(gameMenu); |
56 | 57 | ||
57 | gameMenu->insertItem(QPixmap(logo_xpm),tr("&New"),this,SLOT(newGame()),CTRL+Key_N); | 58 | gameMenu->insertItem(QPixmap(logo_xpm),tr("&New"),this,SLOT(newGame()),CTRL+Key_N); |
58 | gameMenu->insertSeparator(); | 59 | gameMenu->insertSeparator(); |
59 | undoID=gameMenu->insertItem(QPixmap(undo_xpm),tr("&Undo Move"),this,SLOT(undoMove()),CTRL+Key_Z); | 60 | undoID=gameMenu->insertItem(QPixmap(undo_xpm),tr("&Undo Move"),this,SLOT(undoMove()),CTRL+Key_Z); |
60 | gameMenu->insertSeparator(); | 61 | gameMenu->insertSeparator(); |
61 | gameMenu->insertItem(QPixmap(exit_xpm),tr("&Quit"),qApp,SLOT(closeAllWindows()),CTRL+Key_Q); | 62 | gameMenu->insertItem(QPixmap(exit_xpm),tr("&Quit"),qApp,SLOT(closeAllWindows()),CTRL+Key_Q); |
62 | 63 | ||
63 | skillMenu=new QPopupMenu; | 64 | skillMenu=new QPopupMenu; |
64 | CHECK_PTR(skillMenu); | 65 | CHECK_PTR(skillMenu); |
65 | 66 | ||
66 | skillMenu->insertItem(tr("&Beginner"),this,SLOT(setSkillBeginner()),CTRL+Key_1,BEGINNER); | 67 | skillMenu->insertItem(tr("&Beginner"),this,SLOT(setSkillBeginner()),CTRL+Key_1,BEGINNER); |
67 | skillMenu->insertItem(tr("&Novice"), this,SLOT(setSkillNovice()), CTRL+Key_2,NOVICE); | 68 | skillMenu->insertItem(tr("&Novice"), this,SLOT(setSkillNovice()), CTRL+Key_2,NOVICE); |
68 | skillMenu->insertItem(tr("&Average"), this,SLOT(setSkillAverage()), CTRL+Key_3,AVERAGE); | 69 | skillMenu->insertItem(tr("&Average"), this,SLOT(setSkillAverage()), CTRL+Key_3,AVERAGE); |
69 | skillMenu->insertItem(tr("&Good"), this,SLOT(setSkillGood()), CTRL+Key_4,GOOD); | 70 | skillMenu->insertItem(tr("&Good"), this,SLOT(setSkillGood()), CTRL+Key_4,GOOD); |
70 | skillMenu->insertItem(tr("&Expert"), this,SLOT(setSkillExpert()), CTRL+Key_5,EXPERT); | 71 | skillMenu->insertItem(tr("&Expert"), this,SLOT(setSkillExpert()), CTRL+Key_5,EXPERT); |
71 | skillMenu->insertItem(tr("&Master"), this,SLOT(setSkillMaster()), CTRL+Key_6,MASTER); | 72 | skillMenu->insertItem(tr("&Master"), this,SLOT(setSkillMaster()), CTRL+Key_6,MASTER); |
72 | 73 | ||
73 | optionsMenu=new QPopupMenu; | 74 | optionsMenu=new QPopupMenu; |
74 | CHECK_PTR(optionsMenu); | 75 | CHECK_PTR(optionsMenu); |
75 | 76 | ||
76 | numID=optionsMenu->insertItem(tr("&Show Numeration"),this,SLOT(showNumeration())); | 77 | numID=optionsMenu->insertItem(tr("&Show Numeration"),this,SLOT(showNumeration())); |
77 | optionsMenu->insertSeparator(); | 78 | optionsMenu->insertSeparator(); |
78 | optionsMenu->insertItem(tr("&English Rules"),this,SLOT(setRulesEnglish()),0,ENGLISH); | 79 | optionsMenu->insertItem(tr("&English Rules"),this,SLOT(setRulesEnglish()),0,ENGLISH); |
79 | optionsMenu->insertItem(tr("&Russian Rules"),this,SLOT(setRulesRussian()),0,RUSSIAN); | 80 | optionsMenu->insertItem(tr("&Russian Rules"),this,SLOT(setRulesRussian()),0,RUSSIAN); |
diff --git a/noncore/games/kcheckers/kcheckers.h b/noncore/games/kcheckers/kcheckers.h index ccf5bae..bd4afc7 100644 --- a/noncore/games/kcheckers/kcheckers.h +++ b/noncore/games/kcheckers/kcheckers.h | |||
@@ -1,64 +1,65 @@ | |||
1 | 1 | ||
2 | #ifndef KCHECKERS_H | 2 | #ifndef KCHECKERS_H |
3 | #define KCHECKERS_H | 3 | #define KCHECKERS_H |
4 | 4 | ||
5 | #include <qmainwindow.h> | 5 | #include <qmainwindow.h> |
6 | #include <qlabel.h> | 6 | #include <qlabel.h> |
7 | 7 | ||
8 | #include "field.h" | 8 | #include "field.h" |
9 | #include "checkers.h" | 9 | #include "checkers.h" |
10 | 10 | ||
11 | #define WOODEN 1 | 11 | #define WOODEN 1 |
12 | #define GREEN 2 | 12 | #define GREEN 2 |
13 | #define MARBLE 3 | 13 | #define MARBLE 3 |
14 | 14 | ||
15 | #define ENGLISH 11 | 15 | #define ENGLISH 11 |
16 | #define RUSSIAN 12 | 16 | #define RUSSIAN 12 |
17 | 17 | ||
18 | #define BEGINNER 2 | 18 | #define BEGINNER 2 |
19 | #define NOVICE 4 | 19 | #define NOVICE 4 |
20 | #define AVERAGE 6 | 20 | #define AVERAGE 6 |
21 | #define GOOD 7 | 21 | #define GOOD 7 |
22 | #define EXPERT 8 | 22 | #define EXPERT 8 |
23 | #define MASTER 9 | 23 | #define MASTER 9 |
24 | 24 | ||
25 | class QToolButton; | 25 | class QToolButton; |
26 | 26 | ||
27 | 27 | ||
28 | class KCheckers:public QMainWindow | 28 | class KCheckers:public QMainWindow |
29 | { | 29 | { |
30 | Q_OBJECT | 30 | Q_OBJECT |
31 | public: | 31 | public: |
32 | KCheckers(); | 32 | static QString appName() { return QString::fromLatin1("kcheckers"); } |
33 | KCheckers(QWidget *parent, const char* name, WFlags fl); | ||
33 | 34 | ||
34 | protected: | 35 | protected: |
35 | void closeEvent(QCloseEvent*); | 36 | void closeEvent(QCloseEvent*); |
36 | 37 | ||
37 | private slots: | 38 | private slots: |
38 | 39 | ||
39 | void help(); | 40 | void help(); |
40 | void about(); | 41 | void about(); |
41 | void aboutQt(); | 42 | void aboutQt(); |
42 | void newGame(); | 43 | void newGame(); |
43 | void undoMove(); | 44 | void undoMove(); |
44 | void click(int); | 45 | void click(int); |
45 | void showNumeration(); | 46 | void showNumeration(); |
46 | 47 | ||
47 | void setSkillBeginner() {setSkill(BEGINNER);}; | 48 | void setSkillBeginner() {setSkill(BEGINNER);}; |
48 | void setSkillNovice() {setSkill(NOVICE);}; | 49 | void setSkillNovice() {setSkill(NOVICE);}; |
49 | void setSkillAverage() {setSkill(AVERAGE);}; | 50 | void setSkillAverage() {setSkill(AVERAGE);}; |
50 | void setSkillGood() {setSkill(GOOD);}; | 51 | void setSkillGood() {setSkill(GOOD);}; |
51 | void setSkillExpert() {setSkill(EXPERT);}; | 52 | void setSkillExpert() {setSkill(EXPERT);}; |
52 | void setSkillMaster() {setSkill(MASTER);}; | 53 | void setSkillMaster() {setSkill(MASTER);}; |
53 | 54 | ||
54 | void setPatternWooden() {setPattern(WOODEN);}; | 55 | void setPatternWooden() {setPattern(WOODEN);}; |
55 | void setPatternGreen() {setPattern(GREEN);}; | 56 | void setPatternGreen() {setPattern(GREEN);}; |
56 | void setPatternMarble() {setPattern(MARBLE);}; | 57 | void setPatternMarble() {setPattern(MARBLE);}; |
57 | 58 | ||
58 | void setRulesEnglish() {setRules(ENGLISH);}; | 59 | void setRulesEnglish() {setRules(ENGLISH);}; |
59 | void setRulesRussian() {setRules(RUSSIAN);}; | 60 | void setRulesRussian() {setRules(RUSSIAN);}; |
60 | 61 | ||
61 | private: | 62 | private: |
62 | 63 | ||
63 | void compGo(); | 64 | void compGo(); |
64 | bool userGo(int); | 65 | bool userGo(int); |
diff --git a/noncore/games/kcheckers/kcheckers.pro b/noncore/games/kcheckers/kcheckers.pro index a23e83a..0d417bf 100644 --- a/noncore/games/kcheckers/kcheckers.pro +++ b/noncore/games/kcheckers/kcheckers.pro | |||
@@ -1,20 +1,19 @@ | |||
1 | TEMPLATE= app | 1 | CONFIG = qt warn_on release quick-app |
2 | CONFIG = qt warn_on release | ||
3 | HEADERS = checkers.h \ | 2 | HEADERS = checkers.h \ |
4 | echeckers.h \ | 3 | echeckers.h \ |
5 | field.h \ | 4 | field.h \ |
6 | kcheckers.h \ | 5 | kcheckers.h \ |
7 | rcheckers.h | 6 | rcheckers.h |
8 | SOURCES = checkers.cpp \ | 7 | SOURCES = checkers.cpp \ |
9 | echeckers.cpp \ | 8 | echeckers.cpp \ |
10 | field.cpp \ | 9 | field.cpp \ |
11 | kcheckers.cpp \ | 10 | kcheckers.cpp \ |
12 | main.cpp \ | 11 | main.cpp \ |
13 | rcheckers.cpp | 12 | rcheckers.cpp |
14 | INTERFACES= | 13 | INTERFACES= |
15 | INCLUDEPATH+= $(OPIEDIR)/include | 14 | INCLUDEPATH+= $(OPIEDIR)/include |
16 | LIBS += -lqpe | 15 | LIBS += -lqpe |
17 | DESTDIR = $(OPIEDIR)/bin | ||
18 | TARGET = kcheckers | 16 | TARGET = kcheckers |
19 | 17 | ||
18 | |||
20 | include ( $(OPIEDIR)/include.pro ) | 19 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/kcheckers/main.cpp b/noncore/games/kcheckers/main.cpp index b8dd620..6ac570a 100644 --- a/noncore/games/kcheckers/main.cpp +++ b/noncore/games/kcheckers/main.cpp | |||
@@ -1,18 +1,10 @@ | |||
1 | 1 | ||
2 | #include <qpe/qpeapplication.h> | 2 | #include <qpe/qpeapplication.h> |
3 | #include <qfont.h> | 3 | #include <qfont.h> |
4 | 4 | ||
5 | #include "kcheckers.h" | 5 | #include "kcheckers.h" |
6 | #include <opie/oapplicationfactory.h> | ||
6 | 7 | ||
8 | OPIE_EXPORT_APP( OApplicationFactory<KCheckers> ) | ||
7 | 9 | ||
8 | int main(int argc, char *argv[]) | ||
9 | { | ||
10 | QPEApplication app(argc,argv); | ||
11 | |||
12 | KCheckers kcheckers; | ||
13 | app.setMainWidget(&kcheckers); | ||
14 | kcheckers.showMaximized(); | ||
15 | |||
16 | return app.exec(); | ||
17 | } | ||
18 | 10 | ||
diff --git a/noncore/games/kcheckers/opie-kcheckers.control b/noncore/games/kcheckers/opie-kcheckers.control index e228209..71f83af 100644 --- a/noncore/games/kcheckers/opie-kcheckers.control +++ b/noncore/games/kcheckers/opie-kcheckers.control | |||
@@ -1,10 +1,10 @@ | |||
1 | Package: opie-kcheckers | 1 | Package: opie-kcheckers |
2 | Files: bin/kcheckers apps/Games/kcheckers.desktop pics/kcheckers | 2 | Files: plugins/application/libkcheckers.so* bin/kcheckers apps/Games/kcheckers.desktop pics/kcheckers |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/games | 4 | Section: opie/games |
5 | Maintainer: leseb <prudhomme@laposte.net> | 5 | Maintainer: leseb <prudhomme@laposte.net> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Version: 0.3-$SUB_VERSION | 7 | Version: 0.3-$SUB_VERSION |
8 | Depends: task-opie-minimal | 8 | Depends: task-opie-minimal |
9 | Description: The game of Checkers | 9 | Description: The game of Checkers |
10 | A game for the Opie environment. | 10 | A game for the Opie environment. |
diff --git a/noncore/games/mindbreaker/main.cpp b/noncore/games/mindbreaker/main.cpp index 8ba0fde..2ca16e3 100644 --- a/noncore/games/mindbreaker/main.cpp +++ b/noncore/games/mindbreaker/main.cpp | |||
@@ -1,35 +1,35 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of the Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "mindbreaker.h" | 21 | #include "mindbreaker.h" |
22 | 22 | ||
23 | #include <qpe/qpeapplication.h> | 23 | #include <qtopia/qpeapplication.h> |
24 | 24 | ||
25 | int main( int argc, char **argv ) | 25 | int main( int argc, char **argv ) |
26 | { | 26 | { |
27 | QPEApplication a( argc, argv ); | 27 | QPEApplication a( argc, argv ); |
28 | 28 | ||
29 | MindBreaker w(0, "new window"); | 29 | MindBreaker w; |
30 | w.setCaption("Mind Breaker"); | 30 | w.setCaption(MindBreaker::tr("Mind Breaker")); |
31 | QPEApplication::setInputMethodHint( &w, QPEApplication::AlwaysOff ); | 31 | QPEApplication::setInputMethodHint( &w, QPEApplication::AlwaysOff ); |
32 | a.showMainWidget(&w); | 32 | a.showMainWidget(&w); |
33 | 33 | ||
34 | return a.exec(); | 34 | return a.exec(); |
35 | } | 35 | } |
diff --git a/noncore/games/mindbreaker/mindbreaker.cpp b/noncore/games/mindbreaker/mindbreaker.cpp index 7802e38..e1f43d0 100644 --- a/noncore/games/mindbreaker/mindbreaker.cpp +++ b/noncore/games/mindbreaker/mindbreaker.cpp | |||
@@ -1,818 +1,957 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of the Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "mindbreaker.h" | 21 | #include "mindbreaker.h" |
22 | 22 | ||
23 | #include <qpe/resource.h> | 23 | #include <qtopia/resource.h> |
24 | #include <qpe/config.h> | 24 | #include <qtopia/config.h> |
25 | #include <qtopia/qpeapplication.h> | ||
26 | #include <qtoolbar.h> | ||
25 | 27 | ||
26 | #include <qpainter.h> | 28 | #include <qpainter.h> |
27 | #include <qpixmap.h> | 29 | #include <qpixmap.h> |
28 | #include <qpe/qpetoolbar.h> | ||
29 | #include <qtoolbutton.h> | 30 | #include <qtoolbutton.h> |
30 | #include <qpushbutton.h> | 31 | #include <qpushbutton.h> |
31 | #include <qmessagebox.h> | 32 | #include <qmessagebox.h> |
32 | #include <qlabel.h> | 33 | #include <qlabel.h> |
33 | #include <qstyle.h> | 34 | #include <qlayout.h> |
35 | #include <qtimer.h> | ||
34 | 36 | ||
35 | #include <stdlib.h> | 37 | #include <stdlib.h> |
36 | #include <sys/time.h> | 38 | #include <sys/time.h> |
37 | #include <unistd.h> | 39 | #include <unistd.h> |
38 | 40 | ||
39 | static int pegRTTI = 3393393; | 41 | static int pegRTTI = 3393393; |
40 | 42 | ||
43 | static int adjusted_panel_height; | ||
44 | static int adjusted_panel_width; | ||
45 | |||
46 | static int adjusted_bin_margin; | ||
47 | static int adjusted_peg_size; | ||
48 | static int adjusted_answerpeg_size; | ||
49 | |||
50 | static int adjusted_title_height; | ||
51 | static int adjusted_title_width; | ||
52 | |||
53 | static int adjusted_first_peg_x_diff; | ||
54 | static int adjusted_first_peg_y_diff; | ||
55 | static int adjusted_peg_spacing; | ||
56 | |||
57 | static int adjusted_answerpegx; | ||
58 | static int adjusted_answerpegy; | ||
59 | static int adjusted_answerpeg_xdiff; | ||
60 | static int adjusted_answerpeg_ydiff; | ||
61 | |||
62 | static int adjusted_board_height; | ||
63 | static int adjusted_board_width; | ||
64 | |||
65 | static void setupBoardSize(int w, int h) | ||
66 | { | ||
67 | adjusted_panel_width = w * 3/4; | ||
68 | adjusted_title_width = w * 3/4; | ||
69 | |||
70 | adjusted_title_height = h/10; | ||
71 | adjusted_panel_height = (h-adjusted_title_height)/9; | ||
72 | |||
73 | adjusted_bin_margin = w * 10/240; | ||
74 | adjusted_peg_size = adjusted_panel_height*3/4; | ||
75 | adjusted_answerpeg_size = QMIN(adjusted_panel_width*15/180,adjusted_panel_height*15/25); | ||
76 | |||
77 | // looks a bit dodgy on larger sizes | ||
78 | if ( adjusted_peg_size > 40 ) | ||
79 | adjusted_peg_size = 40; | ||
80 | |||
81 | adjusted_first_peg_x_diff = w * 31/240-adjusted_peg_size/2; | ||
82 | adjusted_first_peg_y_diff = (adjusted_panel_height - adjusted_peg_size)/2; | ||
83 | adjusted_peg_spacing = w * 30/240; | ||
84 | |||
85 | // looks a bit dodgy on larger sizes (still does though, but not as much...) | ||
86 | if ( adjusted_answerpeg_size > 22 ) | ||
87 | adjusted_answerpeg_size = 22; | ||
88 | |||
89 | adjusted_answerpegx = adjusted_panel_width * 159/180 - adjusted_answerpeg_size/2; | ||
90 | adjusted_answerpegy = adjusted_panel_height/3 - adjusted_answerpeg_size/2; | ||
91 | adjusted_answerpeg_xdiff = adjusted_panel_width * 10/180; | ||
92 | adjusted_answerpeg_ydiff = adjusted_panel_height * 9/25; | ||
93 | |||
94 | adjusted_board_height = adjusted_title_height + (adjusted_panel_height * 9); | ||
95 | adjusted_board_width = adjusted_panel_width + (adjusted_bin_margin * 2) + adjusted_peg_size; | ||
96 | |||
97 | // qDebug("Adjusted width %d height %d", adjusted_board_width, adjusted_board_height); | ||
98 | } | ||
99 | |||
100 | |||
41 | /* helper class, */ | 101 | /* helper class, */ |
42 | class Peg : public QCanvasRectangle | 102 | class Peg : public QCanvasRectangle |
43 | { | 103 | { |
44 | public: | 104 | public: |
45 | Peg(QCanvas *canvas, int type, int go = -1, int pos = -1); | 105 | Peg(QCanvas *canvas, int type, int go = -1, int pos = -1); |
46 | int rtti() const {return pegRTTI; } | 106 | int rtti() const {return pegRTTI; } |
47 | void advance(int phase); | 107 | void advance(int phase); |
48 | 108 | ||
49 | bool hit( const QPoint &) const; | 109 | bool hit( const QPoint &) const; |
50 | 110 | ||
51 | /* a placed peg is one that has been set down on the board correctly and | 111 | /* a placed peg is one that has been set down on the board correctly and |
52 | should not be moved, only copied */ | 112 | should not be moved, only copied */ |
53 | bool placed() const; | 113 | bool placed() const; |
54 | void setPlaced(bool); | 114 | void setPlaced(bool); |
55 | 115 | ||
56 | int pegGo() const; | 116 | int pegGo() const; |
57 | int pegPos() const; | 117 | int pegPos() const; |
58 | void setPegPos(int); | 118 | void setPegPos(int); |
59 | 119 | ||
60 | int type() const; | 120 | int type() const; |
61 | 121 | ||
62 | static void buildImages(); | 122 | static void buildImages(); |
63 | static QImage imageForType(int t); | 123 | static QImage imageForType(int t); |
64 | 124 | ||
65 | static int eggLevel; | 125 | static int eggLevel; |
66 | 126 | ||
67 | protected: | 127 | protected: |
68 | void drawShape(QPainter &); | 128 | void drawShape(QPainter &); |
69 | private: | 129 | private: |
70 | static QVector<QImage> normalPegs; | 130 | static QVector<QImage> normalPegs; |
71 | static QVector<QImage> specialPegs; | 131 | static QVector<QImage> specialPegs; |
72 | 132 | ||
73 | bool isplaced; | 133 | bool isplaced; |
74 | int pegtype; | 134 | int pegtype; |
75 | int peg_go; | 135 | int peg_go; |
76 | int peg_pos; | 136 | int peg_pos; |
77 | 137 | ||
78 | int aniStep; | 138 | int aniStep; |
79 | }; | 139 | }; |
80 | |||
81 | int Peg::eggLevel = 0; | 140 | int Peg::eggLevel = 0; |
82 | QVector<QImage> Peg::normalPegs; | 141 | QVector<QImage> Peg::normalPegs; |
83 | QVector<QImage> Peg::specialPegs; | 142 | QVector<QImage> Peg::specialPegs; |
84 | 143 | ||
85 | void Peg::buildImages() | 144 | void Peg::buildImages() |
86 | { | 145 | { |
87 | |||
88 | QImage pegs = Resource::loadImage("mindbreaker/pegs"); | 146 | QImage pegs = Resource::loadImage("mindbreaker/pegs"); |
89 | int x = 0; | 147 | int x = 0; |
90 | int y = 0; | 148 | int y = 0; |
91 | int i; | 149 | int i; |
92 | eggLevel = 0; | 150 | eggLevel = 0; |
93 | normalPegs.resize(10); | 151 | normalPegs.resize(10); |
94 | for (i = 0; i < 6; i++) { | 152 | for (i = 0; i < 6; i++) { |
95 | normalPegs.insert(i, new QImage(pegs.copy(x, y, peg_size, peg_size))); | 153 | normalPegs.insert(i, new QImage(pegs.copy(x, y, peg_size, peg_size). |
154 | smoothScale(adjusted_peg_size, adjusted_peg_size) )); | ||
96 | x += peg_size; | 155 | x += peg_size; |
97 | } | 156 | } |
98 | specialPegs.resize(5); | 157 | specialPegs.resize(5); |
99 | for (i = 0; i < 5; i++) { | 158 | for (i = 0; i < 5; i++) { |
100 | specialPegs.insert(i, new QImage(pegs.copy(x,y,peg_size, peg_size))); | 159 | specialPegs.insert(i, new QImage(pegs.copy(x,y,peg_size, peg_size). |
160 | smoothScale(adjusted_peg_size, adjusted_peg_size) )); | ||
101 | x += peg_size; | 161 | x += peg_size; |
102 | } | 162 | } |
103 | 163 | ||
104 | QImage image = Resource::loadImage("mindbreaker/mindbreaker"); | 164 | QImage image = Resource::loadImage("mindbreaker/mindbreaker"); |
105 | /* copy from master image to functional images */ | 165 | /* copy from master image to functional images */ |
106 | x = 0; | 166 | x = 0; |
107 | y = panel_height; | 167 | y = panel_height; |
108 | normalPegs.insert(8, | 168 | normalPegs.insert(8, |
109 | new QImage(image.copy(x, y, panel_width, panel_height))); | 169 | new QImage( image.copy(x, y, panel_width, panel_height). |
170 | smoothScale( adjusted_panel_width, adjusted_panel_height) | ||
171 | )); | ||
110 | y += panel_height; | 172 | y += panel_height; |
111 | y += title_height; | 173 | y += title_height; |
112 | normalPegs.insert(9, | 174 | normalPegs.insert(9, |
113 | new QImage(image.copy(x, y, title_width, title_height))); | 175 | new QImage(image.copy(x, y, title_width, title_height). |
176 | smoothScale( adjusted_title_width, adjusted_title_height) | ||
177 | )); | ||
114 | y += title_height; | 178 | y += title_height; |
115 | 179 | ||
116 | x = 6 * peg_size; | 180 | x = 6 * peg_size; |
117 | normalPegs.insert(6, | 181 | normalPegs.insert(6, |
118 | new QImage(image.copy(x, y, answerpeg_size, answerpeg_size))); | 182 | new QImage(image.copy(x, y, answerpeg_size, answerpeg_size). |
183 | smoothScale( adjusted_answerpeg_size, adjusted_answerpeg_size) )); | ||
119 | x += answerpeg_size; | 184 | x += answerpeg_size; |
120 | normalPegs.insert(7, | 185 | normalPegs.insert(7, |
121 | new QImage(image.copy(x, y, answerpeg_size, answerpeg_size))); | 186 | new QImage(image.copy(x, y, answerpeg_size, answerpeg_size). |
187 | smoothScale( adjusted_answerpeg_size, adjusted_answerpeg_size) )); | ||
122 | } | 188 | } |
123 | 189 | ||
124 | QImage Peg::imageForType(int t) | 190 | QImage Peg::imageForType(int t) |
125 | { | 191 | { |
126 | if (eggLevel > t ) { | 192 | if (eggLevel > t ) { |
127 | if( t < 5) { | 193 | if( t < 5) { |
128 | return *specialPegs[t]; | 194 | return *specialPegs[t]; |
129 | } else { | 195 | } else { |
130 | return *normalPegs[rand() % 6]; | 196 | return *normalPegs[rand() % 6]; |
131 | } | 197 | } |
132 | } | 198 | } |
133 | return *normalPegs[t]; | 199 | return *normalPegs[t]; |
134 | } | 200 | } |
135 | 201 | ||
136 | Peg::Peg(QCanvas *canvas , int t, int g, int p) | 202 | Peg::Peg(QCanvas *canvas , int t, int g, int p) |
137 | : QCanvasRectangle(canvas) | 203 | : QCanvasRectangle(canvas) |
138 | { | 204 | { |
139 | setSize(normalPegs[t]->width(), normalPegs[t]->height() ); | 205 | setSize(normalPegs[t]->width(), normalPegs[t]->height() ); |
140 | pegtype = t; | 206 | pegtype = t; |
141 | isplaced = FALSE; | 207 | isplaced = FALSE; |
142 | peg_pos = p; | 208 | peg_pos = p; |
143 | peg_go = g; | 209 | peg_go = g; |
144 | aniStep = rand() % 6; | 210 | aniStep = rand() % 6; |
145 | setAnimated(TRUE); | 211 | setAnimated(TRUE); |
146 | } | 212 | } |
147 | 213 | ||
148 | void Peg::advance(int phase) { | 214 | void Peg::advance(int phase) { |
149 | if (phase == 0) | 215 | if (phase == 0) |
150 | aniStep = (++aniStep) % 6; | 216 | aniStep = (++aniStep) % 6; |
151 | else { | 217 | else { |
152 | hide(); | 218 | hide(); |
153 | show(); | 219 | show(); |
154 | } | 220 | } |
155 | } | 221 | } |
156 | 222 | ||
157 | void Peg::drawShape(QPainter &p ) | 223 | void Peg::drawShape(QPainter &p ) |
158 | { | 224 | { |
159 | if ((pegtype == 5) && eggLevel > 5) { | 225 | if ((pegtype == 5) && eggLevel > 5) { |
160 | p.drawImage(x(), y(), *normalPegs[aniStep]); | 226 | p.drawImage(int(x()), int(y()), *normalPegs[aniStep]); |
161 | } else | 227 | } else |
162 | p.drawImage(x(), y(), imageForType(pegtype)); | 228 | p.drawImage(int(x()), int(y()), imageForType(pegtype)); |
163 | } | 229 | } |
164 | 230 | ||
165 | bool Peg::hit( const QPoint &p ) const | 231 | bool Peg::hit( const QPoint &p ) const |
166 | { | 232 | { |
167 | int ix = p.x() - int(x()); | 233 | int ix = p.x() - int(x()); |
168 | int iy = p.y() - int(y()); | 234 | int iy = p.y() - int(y()); |
169 | if (!normalPegs[pegtype]->valid(ix, iy)) | 235 | if (!normalPegs[pegtype]->valid(ix, iy)) |
170 | return FALSE; | 236 | return FALSE; |
171 | QRgb pixel = normalPegs[pegtype]->pixel(ix, iy); | 237 | QRgb pixel = normalPegs[pegtype]->pixel(ix, iy); |
172 | return (qAlpha(pixel ) != 0); | 238 | return (qAlpha(pixel ) != 0); |
173 | } | 239 | } |
174 | 240 | ||
175 | inline bool Peg::placed() const | 241 | inline bool Peg::placed() const |
176 | { | 242 | { |
177 | return isplaced; | 243 | return isplaced; |
178 | } | 244 | } |
179 | 245 | ||
180 | inline int Peg::pegGo() const | 246 | inline int Peg::pegGo() const |
181 | { | 247 | { |
182 | return peg_go; | 248 | return peg_go; |
183 | } | 249 | } |
184 | 250 | ||
185 | inline int Peg::pegPos() const | 251 | inline int Peg::pegPos() const |
186 | { | 252 | { |
187 | return peg_pos; | 253 | return peg_pos; |
188 | } | 254 | } |
189 | 255 | ||
190 | inline void Peg::setPegPos(int p) | 256 | inline void Peg::setPegPos(int p) |
191 | { | 257 | { |
192 | peg_pos = p; | 258 | peg_pos = p; |
193 | } | 259 | } |
194 | 260 | ||
195 | inline void Peg::setPlaced(bool p) | 261 | inline void Peg::setPlaced(bool p) |
196 | { | 262 | { |
197 | isplaced = p; | 263 | isplaced = p; |
198 | } | 264 | } |
199 | 265 | ||
200 | inline int Peg::type() const | 266 | inline int Peg::type() const |
201 | { | 267 | { |
202 | return pegtype; | 268 | return pegtype; |
203 | } | 269 | } |
204 | 270 | ||
205 | /* Load the main image, copy from it the pegs, the board, and the answer image | 271 | /* Load the main image, copy from it the pegs, the board, and the answer image |
206 | * and use these to create the tray, answer and board | 272 | * and use these to create the tray, answer and board |
207 | */ | 273 | */ |
208 | MindBreaker::MindBreaker( QWidget *parent, const char *name, int wFlags ) | 274 | MindBreaker::MindBreaker( QWidget *parent, const char *name, int wFlags ) |
209 | : QMainWindow(parent, name, wFlags), | 275 | : QMainWindow(parent, name, wFlags) |
210 | canvas(board_height, board_width) | ||
211 | { | 276 | { |
212 | MindBreakerBoard *m = new MindBreakerBoard(canvas, this); | 277 | setCaption( tr("Mind Breaker")); |
213 | setCentralWidget(m); | 278 | QPEApplication::setInputMethodHint( this, QPEApplication::AlwaysOff ); |
214 | 279 | setMinimumSize(160,210); | |
280 | |||
281 | QWidget *w = new QWidget( this ); | ||
282 | w->setBackgroundColor( black ); | ||
283 | QHBoxLayout *hb = new QHBoxLayout( w ); | ||
284 | hb->addStretch(); | ||
285 | board = new MindBreakerBoard(w); | ||
286 | hb->addWidget( board, 100 ); | ||
287 | hb->addStretch(); | ||
288 | |||
289 | setCentralWidget(w); | ||
290 | |||
215 | setToolBarsMovable( FALSE ); | 291 | setToolBarsMovable( FALSE ); |
216 | 292 | ||
217 | QToolBar *tb = new QToolBar(this); | 293 | QToolBar *tb = new QToolBar(this); |
218 | tb->setHorizontalStretchable( TRUE ); | 294 | tb->setHorizontalStretchable( TRUE ); |
219 | 295 | ||
220 | QPixmap newicon = Resource::loadPixmap("new"); | 296 | QIconSet newicon = Resource::loadIconSet("new"); |
221 | new QToolButton(newicon, tr("New Game"), 0, | 297 | new QToolButton(newicon, tr("New Game"), 0, |
222 | m, SLOT(clear()), tb, "NewGame"); | 298 | board, SLOT(clear()), tb, "NewGame"); |
223 | 299 | ||
224 | score = new QToolButton(tb); | 300 | score = new QToolButton(tb); |
225 | score->setText(""); | 301 | score->setText(""); |
226 | score->setMaximumHeight(20); | 302 | score->setMaximumHeight(20); |
227 | score->setUsesTextLabel(TRUE); | 303 | score->setUsesTextLabel(TRUE); |
228 | tb->setStretchableWidget(score); | 304 | tb->setStretchableWidget(score); |
229 | 305 | ||
230 | connect(m, SIGNAL(scoreChanged(int, int)), this, SLOT(setScore(int, int))); | 306 | connect(board, SIGNAL(scoreChanged(int,int)), this, SLOT(setScore(int,int))); |
231 | connect(score, SIGNAL(clicked()), m, SLOT(resetScore())); | 307 | connect(score, SIGNAL(clicked()), board, SLOT(resetScore())); |
232 | 308 | ||
233 | int a, b; | 309 | int a, b; |
234 | m->getScore(&a, &b); | 310 | board->getScore(&a, &b); |
235 | setScore(a,b); | 311 | setScore(a,b); |
312 | |||
313 | layout()->setResizeMode(QLayout::FreeResize); | ||
236 | } | 314 | } |
237 | 315 | ||
238 | void MindBreaker::setScore(int turns, int games) | 316 | void MindBreaker::setScore(int turns, int games) |
239 | { | 317 | { |
240 | double average; | 318 | double average; |
241 | double total_turns = turns; | 319 | double total_turns = turns; |
242 | double total_games = games; | 320 | double total_games = games; |
243 | 321 | ||
244 | if(total_games > 0) | 322 | if(total_games > 0) |
245 | average = total_turns / total_games; | 323 | average = total_turns / total_games; |
246 | else | 324 | else |
247 | average = 0.0; | 325 | average = 0.0; |
248 | 326 | ||
249 | score->setText(tr("win avg: %1 turns (%2 games)").arg(average).arg(games)); | 327 | score->setText(tr("win avg: %1 turns (%2 games)").arg(average).arg(games)); |
250 | } | 328 | } |
251 | 329 | ||
330 | void MindBreaker::resizeEvent( QResizeEvent *e ) | ||
331 | { | ||
332 | board->fixSize(); | ||
333 | QMainWindow::resizeEvent( e ); | ||
334 | } | ||
335 | |||
252 | 336 | ||
253 | MindBreakerBoard::MindBreakerBoard( QCanvas &canv, QWidget *parent, | 337 | MindBreakerBoard::MindBreakerBoard( QWidget *parent, |
254 | const char *name, int wFlags ) | 338 | const char *name, int wFlags ) |
255 | : QCanvasView(&canv, parent, name, wFlags) | 339 | : QCanvasView(0, parent, name, wFlags), |
340 | moving(0), game_over(FALSE), total_turns(0), total_games(0) | ||
256 | { | 341 | { |
257 | int i, x, y; | 342 | setFrameStyle( NoFrame ); |
343 | setupBoardSize(qApp->desktop()->width(),qApp->desktop()->height()); | ||
344 | cnv.resize(100,100); | ||
345 | setCanvas(&cnv); | ||
346 | setBackgroundColor( black ); | ||
347 | |||
258 | struct timeval tv; | 348 | struct timeval tv; |
259 | 349 | ||
260 | current_go = 0; | 350 | current_go = 0; |
261 | gettimeofday(&tv, 0); | 351 | gettimeofday(&tv, 0); |
262 | |||
263 | srand(tv.tv_usec); | 352 | srand(tv.tv_usec); |
264 | 353 | ||
265 | canvas()->setAdvancePeriod(500); | 354 | canvas()->setAdvancePeriod(500); |
355 | current_highlight = 0; | ||
266 | 356 | ||
267 | QImage image = Resource::loadImage("mindbreaker/mindbreaker"); | 357 | widthTimer = new QTimer( this ); |
268 | 358 | connect(widthTimer, SIGNAL(timeout()), this, SLOT(doFixSize()) ); | |
269 | /* copy from master image to functional images */ | ||
270 | x = 0; | ||
271 | y = 0; | ||
272 | panelImage = image.copy(x,y, panel_width, panel_height); | ||
273 | y += panel_height; | ||
274 | y += panel_height; | ||
275 | |||
276 | titleImage = image.copy(x, y, title_width, title_height); | ||
277 | |||
278 | Peg::buildImages(); // must be done BEFORE any pegs are made | ||
279 | |||
280 | current_highlight = new Peg(canvas(), 8); | ||
281 | current_highlight->setPlaced(TRUE); | ||
282 | current_highlight->setX(0); | ||
283 | current_highlight->setY(board_height - ((current_go + 1) * panel_height)); | ||
284 | current_highlight->setZ(0); | ||
285 | current_highlight->show(); | ||
286 | 359 | ||
360 | setMaximumWidth( QMIN(qApp->desktop()->height(),qApp->desktop()->width()) ); | ||
361 | //doFixSize(); // build images... needs to be done before reading config. | ||
362 | //readConfig(); // first read... to ensure initial labels and side look right. | ||
363 | } | ||
287 | 364 | ||
288 | /* set up the game */ | 365 | void MindBreakerBoard::readConfig() |
366 | { | ||
289 | Config c("MindBreaker", Config::User); | 367 | Config c("MindBreaker", Config::User); |
290 | c.setGroup("Board"); | 368 | c.setGroup("Board"); |
291 | game_over = FALSE; | 369 | game_over = FALSE; |
370 | int i; | ||
292 | if (c.readNumEntry("Answer0") < 0) { | 371 | if (c.readNumEntry("Answer0") < 0) { |
293 | for (i = 0; i < 4; i++) { | 372 | for (i = 0; i < 4; i++) { |
294 | answer[i] = rand() % 6; | 373 | answer[i] = rand() % 6; |
295 | current_guess[i] = 6; | 374 | current_guess[i] = 6; |
296 | } | 375 | } |
297 | total_turns = 0; | 376 | total_turns = 0; |
298 | total_games = 0; | 377 | total_games = 0; |
299 | } else { | 378 | } else { |
300 | int j; | 379 | int j; |
301 | c.setGroup("Score"); | 380 | c.setGroup("Score"); |
302 | total_turns = c.readNumEntry("Turns"); | 381 | total_turns = c.readNumEntry("Turns"); |
303 | total_games = c.readNumEntry("Games"); | 382 | total_games = c.readNumEntry("Games"); |
304 | if(total_turns < 0) | 383 | if(total_turns < 0) |
305 | total_turns = 0; | 384 | total_turns = 0; |
306 | if(total_games < 0) | 385 | if(total_games < 0) |
307 | total_games = 0; | 386 | total_games = 0; |
308 | 387 | ||
309 | 388 | ||
310 | checkScores(); | 389 | checkScores(); |
311 | c.setGroup("Board"); | 390 | c.setGroup("Board"); |
312 | for(i = 0; i < 4; i++) | 391 | for(i = 0; i < 4; i++) |
313 | answer[i] = c.readNumEntry(QString("Answer%1").arg(i)); | 392 | answer[i] = c.readNumEntry(QString("Answer%1").arg(i)); |
314 | /* read, and parse past guesses */ | 393 | /* read, and parse past guesses */ |
315 | current_go = 0; | 394 | current_go = 0; |
316 | for(j=0; j < 9; j++) { | 395 | for(j=0; j < 9; j++) { |
317 | current_guess[0] = c.readNumEntry(QString("Go%1p0").arg(j)); | 396 | current_guess[0] = c.readNumEntry(QString("Go%1p0").arg(j)); |
318 | if (current_guess[0] < 0) | 397 | if (current_guess[0] < 0) |
319 | break; | 398 | break; |
320 | placeGuessPeg(0, current_guess[0]); | 399 | placeGuessPeg(0, current_guess[0]); |
321 | current_guess[1] = c.readNumEntry(QString("Go%1p1").arg(j)); | 400 | current_guess[1] = c.readNumEntry(QString("Go%1p1").arg(j)); |
322 | placeGuessPeg(1, current_guess[1]); | 401 | placeGuessPeg(1, current_guess[1]); |
323 | current_guess[2] = c.readNumEntry(QString("Go%1p2").arg(j)); | 402 | current_guess[2] = c.readNumEntry(QString("Go%1p2").arg(j)); |
324 | placeGuessPeg(2, current_guess[2]); | 403 | placeGuessPeg(2, current_guess[2]); |
325 | current_guess[3] = c.readNumEntry(QString("Go%1p3").arg(j)); | 404 | current_guess[3] = c.readNumEntry(QString("Go%1p3").arg(j)); |
326 | placeGuessPeg(3, current_guess[3]); | 405 | placeGuessPeg(3, current_guess[3]); |
327 | checkGuess(); | 406 | checkGuess(); |
328 | } | 407 | } |
329 | for(i = 0; i < 4; i++) { | 408 | for(i = 0; i < 4; i++) { |
330 | current_guess[i] = c.readNumEntry(QString("CurrentGo%1").arg(i)); | 409 | current_guess[i] = c.readNumEntry(QString("CurrentGo%1").arg(i)); |
331 | if (current_guess[i] != 6) | 410 | if (current_guess[i] != 6) |
332 | placeGuessPeg(i, current_guess[i]); | 411 | placeGuessPeg(i, current_guess[i]); |
333 | } | 412 | } |
334 | } | 413 | } |
335 | |||
336 | /* draw initial screen */ | ||
337 | drawBackground(); | ||
338 | canvas()->update(); | ||
339 | } | 414 | } |
340 | 415 | ||
341 | MindBreakerBoard::~MindBreakerBoard() | 416 | MindBreakerBoard::~MindBreakerBoard() |
342 | { | 417 | { |
343 | int i, j; | 418 | int i; |
344 | if (game_over) { | 419 | if (game_over) { |
345 | current_go = 0; | 420 | current_go = 0; |
346 | /* clear the answer, clear the guess */ | 421 | /* clear the answer, clear the guess */ |
347 | for (i = 0; i < 4; i++) { | 422 | for (i = 0; i < 4; i++) { |
348 | answer[i] = rand() % 6; | 423 | answer[i] = rand() % 6; |
349 | current_guess[i] = 6; | 424 | current_guess[i] = 6; |
350 | } | 425 | } |
351 | } | 426 | } |
352 | 427 | writeConfig(); | |
428 | } | ||
429 | |||
430 | void MindBreakerBoard::writeConfig() | ||
431 | { | ||
353 | Config c("MindBreaker", Config::User); | 432 | Config c("MindBreaker", Config::User); |
354 | c.setGroup("Board"); | 433 | c.setGroup("Board"); |
355 | c.clearGroup(); | 434 | c.clearGroup(); |
356 | /* write the board */ | 435 | /* write the board */ |
436 | int i,j; | ||
357 | for (i = 0; i < current_go; i++) { | 437 | for (i = 0; i < current_go; i++) { |
358 | for(j = 0; j < 4; j++) | 438 | for(j = 0; j < 4; j++) |
359 | c.writeEntry(tr("Go%1p%2").arg(i).arg(j), past_guesses[4*i+j]); | 439 | c.writeEntry(QString("Go%1p%2").arg(i).arg(j), past_guesses[4*i+j]); |
360 | } | 440 | } |
361 | for(j = 0; j < 4; j++) | 441 | for(j = 0; j < 4; j++) |
362 | c.writeEntry(tr("CurrentGo%1").arg(j), current_guess[j]); | 442 | c.writeEntry(QString("CurrentGo%1").arg(j), current_guess[j]); |
363 | for(j = 0; j < 4; j++) | 443 | for(j = 0; j < 4; j++) |
364 | c.writeEntry(tr("Answer%1").arg(j), answer[j]); | 444 | c.writeEntry(QString("Answer%1").arg(j), answer[j]); |
365 | 445 | ||
366 | c.setGroup("Score"); | 446 | c.setGroup("Score"); |
367 | /* write the score */ | 447 | /* write the score */ |
368 | 448 | ||
369 | c.writeEntry("Turns", total_turns); | 449 | c.writeEntry("Turns", total_turns); |
370 | c.writeEntry("Games", total_games); | 450 | c.writeEntry("Games", total_games); |
371 | } | 451 | } |
372 | 452 | ||
373 | void MindBreakerBoard::getScore(int *a, int *b) | 453 | void MindBreakerBoard::getScore(int *a, int *b) |
374 | { | 454 | { |
375 | *a = total_turns; | 455 | *a = total_turns; |
376 | *b = total_games; | 456 | *b = total_games; |
377 | return; | 457 | return; |
378 | } | 458 | } |
379 | 459 | ||
460 | void MindBreakerBoard::fixSize() | ||
461 | { | ||
462 | hide(); | ||
463 | setMaximumWidth( parentWidget()->height() ); | ||
464 | widthTimer->start( 20, TRUE ); | ||
465 | } | ||
466 | |||
467 | void MindBreakerBoard::doFixSize() | ||
468 | { | ||
469 | QSize s = size(); | ||
470 | int fw = frameWidth(); | ||
471 | s.setWidth(s.width() - fw); | ||
472 | s.setHeight(s.height() - fw); | ||
473 | |||
474 | /* min size is 200 x 260 */ | ||
475 | /* | ||
476 | if (s.width() < adjusted_board_width) | ||
477 | s.setWidth(adjusted_board_width); | ||
478 | |||
479 | if (s.height() < adjusted_board_height) | ||
480 | s.setHeight(adjusted_board_height); | ||
481 | */ | ||
482 | |||
483 | if ( current_highlight ) // non-first resize | ||
484 | writeConfig(); | ||
485 | |||
486 | setupBoardSize(s.width() - fw, s.height() - fw); | ||
487 | canvas()->resize(s.width() - fw, s.height() - fw); | ||
488 | Peg::buildImages(); // must be done BEFORE any pegs are made | ||
489 | |||
490 | QImage image = Resource::loadImage("mindbreaker/mindbreaker"); | ||
491 | |||
492 | /* copy from master image to functional images */ | ||
493 | int x = 0; | ||
494 | int y = 0; | ||
495 | panelImage = image.copy(x, y, panel_width, panel_height). | ||
496 | smoothScale( adjusted_panel_width, adjusted_panel_height); | ||
497 | |||
498 | y += panel_height; | ||
499 | y += panel_height; | ||
500 | |||
501 | titleImage = image.copy(x, y, title_width, title_height). | ||
502 | smoothScale( adjusted_title_width, adjusted_title_height); | ||
503 | show(); | ||
504 | |||
505 | delete current_highlight; | ||
506 | current_highlight = new Peg(canvas(), 8); | ||
507 | current_highlight->setPlaced(TRUE); | ||
508 | current_highlight->setX(0); | ||
509 | current_highlight->setY(adjusted_board_height - ((current_go + 1) * adjusted_panel_height)); | ||
510 | current_highlight->setZ(0); | ||
511 | current_highlight->show(); | ||
512 | |||
513 | /* set up the game */ | ||
514 | //readConfig(); | ||
515 | |||
516 | /* draw initial screen */ | ||
517 | //drawBackground(); | ||
518 | //canvas()->update(); | ||
519 | clear(); | ||
520 | |||
521 | readConfig(); | ||
522 | } | ||
523 | |||
380 | void MindBreakerBoard::placeGuessPeg(int pos, int pegId) | 524 | void MindBreakerBoard::placeGuessPeg(int pos, int pegId) |
381 | { | 525 | { |
382 | int x = first_peg_x_diff + (pos * peg_spacing); | 526 | int x = adjusted_first_peg_x_diff + (pos * adjusted_peg_spacing); |
383 | int y = board_height - ((current_go + 1) * panel_height) | 527 | int y = adjusted_board_height - ((current_go + 1) * adjusted_panel_height) |
384 | + first_peg_y_diff; | 528 | + adjusted_first_peg_y_diff; |
385 | 529 | ||
386 | Peg *peg = new Peg(canvas(), pegId, current_go, pos); | 530 | Peg *peg = new Peg(canvas(), pegId, current_go, pos); |
387 | peg->setPegPos(pos); | 531 | peg->setPegPos(pos); |
388 | peg->setPlaced(TRUE); | 532 | peg->setPlaced(TRUE); |
389 | peg->setX(x); | 533 | peg->setX(x); |
390 | peg->setY(y); | 534 | peg->setY(y); |
391 | peg->setZ(2); | 535 | peg->setZ(2); |
392 | peg->show(); | 536 | peg->show(); |
393 | } | 537 | } |
394 | 538 | ||
395 | void MindBreakerBoard::drawBackground() | 539 | void MindBreakerBoard::drawBackground() |
396 | { | 540 | { |
397 | int i, j, x, y, x_gap, y_gap; | 541 | int i, j, x, y, x_gap, y_gap; |
398 | QPixmap background = QPixmap(canvas()->width(), canvas()->height()); | 542 | QPixmap background = QPixmap(canvas()->width(), canvas()->height()); |
399 | 543 | ||
400 | QPainter painter(&background); | 544 | QPainter painter(&background); |
401 | 545 | ||
402 | painter.fillRect(0, 0, canvas()->width(), canvas()->height(), QColor(0,0,0)); | 546 | painter.fillRect(0, 0, canvas()->width(), canvas()->height(), QColor(0,0,0)); |
403 | /* very first thing is to draw the bins, as everything else needs | 547 | /* very first thing is to draw the bins, as everything else needs |
404 | * to be drawn over them */ | 548 | * to be drawn over them */ |
405 | 549 | ||
406 | QPen pen(QColor(85, 45, 27), 4); | 550 | QPen pen(QColor(85, 45, 27), 4); |
407 | painter.setPen(pen); | 551 | painter.setPen(pen); |
408 | x_gap = canvas()->width() - (panel_width + (2 * bin_margin)); | 552 | x_gap = canvas()->width() - (adjusted_panel_width + (2 * adjusted_bin_margin)); |
409 | //x_gap += peg_size >> 1; | 553 | //x_gap += peg_size >> 1; |
410 | if (x_gap < 1) | 554 | if (x_gap < 1) |
411 | x_gap = 1; | 555 | x_gap = 1; |
412 | 556 | ||
413 | y_gap = board_height / 6; | 557 | y_gap = adjusted_board_height / 6; |
414 | y_gap -= (2 * bin_margin); | 558 | y_gap -= (2 * adjusted_bin_margin); |
415 | //y_gap += peg_size >> 1; | 559 | //y_gap += peg_size >> 1; |
416 | if (y_gap < 1) | 560 | if (y_gap < 1) |
417 | y_gap = 1; | 561 | y_gap = 1; |
418 | x = panel_width + bin_margin - (peg_size >> 1); | 562 | x = adjusted_panel_width + adjusted_bin_margin - (adjusted_peg_size >> 1); |
419 | y = bin_margin - (peg_size >> 1) + 2; | 563 | y = adjusted_bin_margin - (adjusted_peg_size >> 1) + 2; |
420 | 564 | ||
421 | for (i = 0; i < 6; i++) { | 565 | for (i = 0; i < 6; i++) { |
422 | for (j = 0; j < 10; j++) { | 566 | for (j = 0; j < 10; j++) { |
423 | int rx = x + (rand() % x_gap); | 567 | int rx = x + (rand() % x_gap); |
424 | int ry = y + (rand() % y_gap); | 568 | int ry = y + (rand() % y_gap); |
425 | painter.drawImage(rx,ry, Peg::imageForType(i)); | 569 | painter.drawImage(rx,ry, Peg::imageForType(i)); |
426 | } | 570 | } |
427 | y += board_height / 6; | 571 | y += adjusted_board_height / 6; |
428 | } | 572 | } |
429 | /* now draw the surrounding boxes */ | 573 | /* now draw the surrounding boxes */ |
430 | x_gap = canvas()->width() - panel_width; | 574 | x_gap = canvas()->width() - adjusted_panel_width; |
431 | if (x_gap < 1) x_gap = 1; | 575 | if (x_gap < 1) x_gap = 1; |
432 | y_gap = board_height / 6; | 576 | y_gap = adjusted_board_height / 6; |
433 | x = panel_width; | 577 | x = adjusted_panel_width; |
434 | y = 1; | 578 | y = 1; |
435 | 579 | ||
436 | for (i = 0; i < 6; i++) { | 580 | for (i = 0; i < 6; i++) { |
437 | painter.drawRect(x, y, x_gap, y_gap); | 581 | painter.drawRect(x, y, x_gap, y_gap); |
438 | y += y_gap; | 582 | y += y_gap; |
439 | } | 583 | } |
440 | 584 | ||
441 | x = 0; | 585 | x = 0; |
442 | y = 0; | 586 | y = 0; |
443 | 587 | ||
444 | painter.drawImage(x,y, titleImage); | 588 | painter.drawImage(x,y, titleImage); |
445 | y = title_height; | 589 | y = adjusted_title_height; |
446 | /* now nine gues panels */ | 590 | /* now nine gues panels */ |
447 | for (i = 0; i < 9; i ++) { | 591 | for (i = 0; i < 9; i ++) { |
448 | painter.drawImage(x, y, panelImage); | 592 | painter.drawImage(x, y, panelImage); |
449 | y += panel_height; | 593 | y += adjusted_panel_height; |
450 | } | 594 | } |
451 | 595 | ||
452 | painter.flush(); | 596 | painter.flush(); |
453 | canvas()->setBackgroundPixmap(background); | 597 | canvas()->setBackgroundPixmap(background); |
454 | } | 598 | } |
455 | 599 | ||
456 | void MindBreakerBoard::checkGuess() | 600 | void MindBreakerBoard::checkGuess() |
457 | { | 601 | { |
458 | int i,j; | 602 | int i,j; |
459 | int num_white = 0; | 603 | int num_white = 0; |
460 | int num_black = 0; | 604 | int num_black = 0; |
461 | int copy_answer[4]; | 605 | int copy_answer[4]; |
462 | int copy_guess[4]; | 606 | int copy_guess[4]; |
463 | 607 | ||
464 | for(i = 0; i < 4; i++) { | 608 | for(i = 0; i < 4; i++) { |
465 | copy_answer[i] = answer[i]; | 609 | copy_answer[i] = answer[i]; |
466 | copy_guess[i] = current_guess[i]; | 610 | copy_guess[i] = current_guess[i]; |
467 | if (current_guess[i] == 6) | 611 | if (current_guess[i] == 6) |
468 | return; | 612 | return; |
469 | if (answer[i] == current_guess[i]) { | 613 | if (answer[i] == current_guess[i]) { |
470 | num_black++; | 614 | num_black++; |
471 | copy_answer[i] = 6; | 615 | copy_answer[i] = 6; |
472 | copy_guess[i] = 7; | 616 | copy_guess[i] = 7; |
473 | } | 617 | } |
474 | } | 618 | } |
475 | 619 | ||
476 | /* now sure that user has completed a 'guess' */ | 620 | /* now sure that user has completed a 'guess' */ |
477 | for (i = 0; i < 4; i++) { | 621 | for (i = 0; i < 4; i++) { |
478 | if (copy_guess[i] == 7) | 622 | if (copy_guess[i] == 7) |
479 | continue; // already marked for a black | 623 | continue; // already marked for a black |
480 | for (j = 0; j < 4; j++) { | 624 | for (j = 0; j < 4; j++) { |
481 | if(copy_guess[i] == copy_answer[j]) { | 625 | if(copy_guess[i] == copy_answer[j]) { |
482 | copy_answer[j] = 6; | 626 | copy_answer[j] = 6; |
483 | num_white++; | 627 | num_white++; |
484 | break; | 628 | break; |
485 | } | 629 | } |
486 | } | 630 | } |
487 | } | 631 | } |
488 | 632 | ||
489 | int x = answerpegx; | 633 | int x = adjusted_answerpegx; |
490 | int y = (board_height - ((current_go + 1) * panel_height)) + answerpegy; | 634 | int y = (adjusted_board_height - ((current_go + 1) * adjusted_panel_height)) + adjusted_answerpegy; |
491 | 635 | ||
492 | if (num_black == 4) | 636 | if (num_black == 4) |
493 | game_over = TRUE; | 637 | game_over = TRUE; |
494 | 638 | ||
495 | while(num_black > 0) { | 639 | while(num_black > 0) { |
496 | Peg *p = new Peg(canvas(), 7); | 640 | Peg *p = new Peg(canvas(), 7); |
497 | p->setPlaced(TRUE); | 641 | p->setPlaced(TRUE); |
498 | p->setX(x); | 642 | p->setX(x); |
499 | p->setY(y); | 643 | p->setY(y); |
500 | p->setZ(1); | 644 | p->setZ(1); |
501 | p->show(); | 645 | p->show(); |
502 | num_black--; | 646 | num_black--; |
503 | 647 | ||
504 | if (x == answerpegx) | 648 | if (x == adjusted_answerpegx) |
505 | x = answerpegx + answerpeg_diff; | 649 | x = adjusted_answerpegx + adjusted_answerpeg_xdiff; |
506 | else { | 650 | else { |
507 | x = answerpegx; | 651 | x = adjusted_answerpegx; |
508 | y += answerpeg_diff; | 652 | y += adjusted_answerpeg_ydiff; |
509 | } | 653 | } |
510 | } | 654 | } |
511 | while(num_white > 0){ | 655 | while(num_white > 0){ |
512 | Peg *p = new Peg(canvas(), 6); | 656 | Peg *p = new Peg(canvas(), 6); |
513 | p->setPlaced(TRUE); | 657 | p->setPlaced(TRUE); |
514 | p->setX(x); | 658 | p->setX(x); |
515 | p->setY(y); | 659 | p->setY(y); |
516 | p->setZ(1); | 660 | p->setZ(1); |
517 | p->show(); | 661 | p->show(); |
518 | num_white--; | 662 | num_white--; |
519 | 663 | ||
520 | if (x == answerpegx) | 664 | if (x == adjusted_answerpegx) |
521 | x = answerpegx + answerpeg_diff; | 665 | x = adjusted_answerpegx + adjusted_answerpeg_xdiff; |
522 | else { | 666 | else { |
523 | x = answerpegx; | 667 | x = adjusted_answerpegx; |
524 | y += answerpeg_diff; | 668 | y += adjusted_answerpeg_ydiff; |
525 | } | 669 | } |
526 | } | 670 | } |
527 | /* move to next go */ | 671 | /* move to next go */ |
528 | for(i = 0; i < 4; i++) { | 672 | for(i = 0; i < 4; i++) { |
529 | past_guesses[4*current_go+i] = current_guess[i]; | 673 | past_guesses[4*current_go+i] = current_guess[i]; |
530 | current_guess[i] = 6; | 674 | current_guess[i] = 6; |
531 | } | 675 | } |
532 | 676 | ||
533 | current_go++; | 677 | current_go++; |
534 | if((current_go > 8) || game_over) { | 678 | if((current_go > 8) || game_over) { |
535 | total_games++; | 679 | total_games++; |
536 | if(!game_over) | 680 | if(!game_over) |
537 | total_turns += 10; | 681 | total_turns += 10; |
538 | else | 682 | else |
539 | total_turns += current_go; | 683 | total_turns += current_go; |
540 | 684 | ||
541 | emit scoreChanged(total_turns, total_games); | 685 | emit scoreChanged(total_turns, total_games); |
542 | Peg *p = new Peg(canvas(), 9); | 686 | Peg *p = new Peg(canvas(), 9); |
543 | game_over = TRUE; | 687 | game_over = TRUE; |
544 | p->setPlaced(TRUE); | 688 | p->setPlaced(TRUE); |
545 | p->setX(0); | 689 | p->setX(0); |
546 | p->setY(0); | 690 | p->setY(0); |
547 | p->setZ(0); | 691 | p->setZ(0); |
548 | p->show(); | 692 | p->show(); |
549 | 693 | ||
550 | for (i = 0; i < 4; i++) { | 694 | for (i = 0; i < 4; i++) { |
551 | p = new Peg(canvas(), answer[i], -1); | 695 | p = new Peg(canvas(), answer[i], -1); |
552 | p->setX(first_peg_x_diff + (i * peg_spacing)); | 696 | p->setX(adjusted_first_peg_x_diff + (i * adjusted_peg_spacing)); |
553 | p->setY(5); | 697 | p->setY(adjusted_first_peg_y_diff); |
554 | p->setZ(3); | 698 | p->setZ(3); |
555 | p->show(); | 699 | p->show(); |
556 | } | 700 | } |
557 | } else { | 701 | } else { |
558 | current_highlight->setY(board_height - ((current_go + 1) * panel_height)); | 702 | current_highlight->setY(adjusted_board_height - ((current_go + 1) * adjusted_panel_height)); |
559 | } | 703 | } |
560 | canvas()->update(); | 704 | canvas()->update(); |
561 | } | 705 | } |
562 | 706 | ||
563 | void MindBreakerBoard::clear() | 707 | void MindBreakerBoard::clear() |
564 | { | 708 | { |
565 | if(!game_over) { | 709 | if(!game_over) { |
566 | total_games++; | 710 | total_games++; |
567 | total_turns += 10; | 711 | total_turns += 10; |
568 | emit scoreChanged(total_turns, total_games); | 712 | emit scoreChanged(total_turns, total_games); |
569 | } | 713 | } |
570 | int i; | 714 | int i; |
571 | /* reset the game board */ | 715 | /* reset the game board */ |
572 | game_over = FALSE; | 716 | game_over = FALSE; |
573 | /* clear the answer, clear the guess */ | 717 | /* clear the answer, clear the guess */ |
574 | for (i = 0; i < 4; i++) { | 718 | for (i = 0; i < 4; i++) { |
575 | answer[i] = rand() % 6; | 719 | answer[i] = rand() % 6; |
576 | current_guess[i] = 6; | 720 | current_guess[i] = 6; |
577 | } | 721 | } |
578 | current_go = 0; | 722 | current_go = 0; |
579 | 723 | ||
580 | QCanvasItemList list = canvas()->allItems(); | 724 | QCanvasItemList list = canvas()->allItems(); |
581 | QCanvasItemList::Iterator it = list.begin(); | 725 | QCanvasItemList::Iterator it = list.begin(); |
582 | for (; it != list.end(); ++it) { | 726 | for (; it != list.end(); ++it) { |
583 | if (*it == current_highlight) | 727 | if (*it == current_highlight) |
584 | continue; | 728 | continue; |
585 | if (*it) | 729 | if (*it) |
586 | delete *it; | 730 | delete *it; |
587 | } | 731 | } |
588 | 732 | ||
589 | current_highlight->setY(board_height - ((current_go + 1) * panel_height)); | 733 | current_highlight->setY(adjusted_board_height - ((current_go + 1) * adjusted_panel_height)); |
590 | checkScores(); | 734 | checkScores(); |
591 | drawBackground(); | 735 | drawBackground(); |
592 | canvas()->update(); | 736 | canvas()->update(); |
593 | } | 737 | } |
594 | 738 | ||
595 | void MindBreakerBoard::resetScore() | 739 | void MindBreakerBoard::resetScore() |
596 | { | 740 | { |
597 | /* are u sure */ | 741 | /* are u sure */ |
598 | 742 | ||
599 | if (QMessageBox::information(this, tr( "Reset Statistics" ), | 743 | if (QMessageBox::information(this, tr( "Reset Statistics" ), |
600 | tr( "Reset the win ratio?" ), | 744 | tr( "Reset the win ratio?" ), |
601 | tr( "OK" ), tr( "Cancel" ) ) == 0) { | 745 | tr( "OK" ), tr( "Cancel" ) ) == 0) { |
602 | total_turns = 0; | 746 | total_turns = 0; |
603 | total_games = 0; | 747 | total_games = 0; |
604 | Peg::eggLevel = 0; | 748 | Peg::eggLevel = 0; |
605 | drawBackground(); | 749 | drawBackground(); |
606 | canvas()->update(); | 750 | canvas()->update(); |
607 | emit scoreChanged(total_turns, total_games); | 751 | emit scoreChanged(total_turns, total_games); |
608 | } | 752 | } |
609 | } | 753 | } |
610 | 754 | ||
611 | /* EVENTS */ | 755 | /* EVENTS */ |
612 | 756 | ||
613 | void MindBreakerBoard::contentsMousePressEvent(QMouseEvent *e) | 757 | void MindBreakerBoard::contentsMousePressEvent(QMouseEvent *e) |
614 | { | 758 | { |
759 | if (game_over) { | ||
760 | null_press = TRUE; | ||
761 | null_point = e->pos(); | ||
762 | moving = 0; | ||
763 | return; | ||
764 | } | ||
765 | |||
615 | copy_press = FALSE; | 766 | copy_press = FALSE; |
616 | null_press = FALSE; | 767 | null_press = FALSE; |
617 | /* ok, first work out if it is one of the bins that | 768 | /* ok, first work out if it is one of the bins that |
618 | got clicked */ | 769 | got clicked */ |
619 | if (e->x() > panel_width) { | 770 | if (e->x() > adjusted_panel_width) { |
620 | /* its a bin, but which bin */ | 771 | /* its a bin, but which bin */ |
621 | if(e->y() > board_height) | 772 | int bin = (e->y() + 2) / (adjusted_board_height / 6); |
773 | if (bin > 5) | ||
622 | return; // missed everything | 774 | return; // missed everything |
623 | int bin = (e->y() + 2) / (board_height / 6); | ||
624 | 775 | ||
625 | /* make new peg... set it moving */ | 776 | /* make new peg... set it moving */ |
626 | moving_pos = e->pos(); | 777 | moving_pos = e->pos(); |
627 | moving = new Peg(canvas(), bin, current_go); | 778 | moving = new Peg(canvas(), bin, current_go); |
628 | moving->setX(e->x() - (peg_size >> 1)); | 779 | moving->setX(e->x() - (adjusted_peg_size >> 1)); |
629 | moving->setY(e->y() - (peg_size >> 1)); | 780 | moving->setY(e->y() - (adjusted_peg_size >> 1)); |
630 | moving->setZ(5); | 781 | moving->setZ(5); |
631 | moving->show(); | 782 | moving->show(); |
632 | canvas()->update(); | 783 | canvas()->update(); |
633 | return; | 784 | return; |
634 | } | 785 | } |
635 | 786 | ||
636 | QCanvasItemList l = canvas()->collisions(e->pos()); | 787 | QCanvasItemList l = canvas()->collisions(e->pos()); |
637 | for (QCanvasItemList::Iterator it=l.begin(); it !=l.end(); ++it) { | 788 | for (QCanvasItemList::Iterator it=l.begin(); it !=l.end(); ++it) { |
638 | if ( (*it)->rtti() == pegRTTI ) { | 789 | if ( (*it)->rtti() == pegRTTI ) { |
639 | Peg *item = (Peg *)(*it); | 790 | Peg *item = (Peg *)(*it); |
640 | if (!item->hit(e->pos())) | 791 | if (!item->hit(e->pos())) |
641 | continue; | 792 | continue; |
642 | if (item->type() > 5) { | 793 | if (item->type() > 5) { |
643 | null_press = TRUE; | 794 | null_press = TRUE; |
644 | null_point = e->pos(); | 795 | null_point = e->pos(); |
645 | continue; /* not a color peg */ | 796 | continue; /* not a color peg */ |
646 | } | 797 | } |
647 | if (item->placed()) { | 798 | if (item->placed()) { |
648 | /* copy */ | 799 | /* copy */ |
649 | if(item->pegGo() == -1) | 800 | if(item->pegGo() == -1) |
650 | return; | 801 | return; |
651 | if(item->pegGo() == current_go) { | 802 | if(item->pegGo() == current_go) { |
652 | copy_press = TRUE; | 803 | copy_press = TRUE; |
653 | copy_peg = item; | 804 | copy_peg = item; |
654 | } | 805 | } |
655 | moving = new Peg(canvas(), | 806 | moving = new Peg(canvas(), |
656 | item->type(), current_go); | 807 | item->type(), current_go); |
657 | moving->setX(e->x() - (peg_size >> 1)); | 808 | moving->setX(e->x() - (adjusted_peg_size >> 1)); |
658 | moving->setY(e->y() - (peg_size >> 1)); | 809 | moving->setY(e->y() - (adjusted_peg_size >> 1)); |
659 | moving->setZ(5); | 810 | moving->setZ(5); |
660 | moving->show(); | 811 | moving->show(); |
661 | moving_pos = QPoint(e->x(), e->y()); | 812 | moving_pos = QPoint(e->x(), e->y()); |
662 | canvas()->update(); | 813 | canvas()->update(); |
663 | return; | 814 | return; |
664 | } | 815 | } |
665 | moving = (Peg *)*it; | 816 | moving = (Peg *)*it; |
666 | moving_pos = e->pos(); | 817 | moving_pos = e->pos(); |
667 | canvas()->update(); | 818 | canvas()->update(); |
668 | return; | 819 | return; |
669 | } | 820 | } |
670 | } | 821 | } |
671 | null_press = TRUE; | 822 | null_press = TRUE; |
672 | null_point = e->pos(); | 823 | null_point = e->pos(); |
673 | moving = 0; | 824 | moving = 0; |
674 | } | 825 | } |
675 | 826 | ||
676 | void MindBreakerBoard::contentsMouseMoveEvent(QMouseEvent* e) | 827 | void MindBreakerBoard::contentsMouseMoveEvent(QMouseEvent* e) |
677 | { | 828 | { |
678 | if (moving ) { | 829 | if (moving ) { |
679 | moving->moveBy(e->pos().x() - moving_pos.x(), | 830 | moving->moveBy(e->pos().x() - moving_pos.x(), |
680 | e->pos().y() - moving_pos.y()); | 831 | e->pos().y() - moving_pos.y()); |
681 | moving_pos = e->pos(); | 832 | moving_pos = e->pos(); |
682 | canvas()->update(); | 833 | canvas()->update(); |
683 | return; | 834 | return; |
684 | } | 835 | } |
685 | } | 836 | } |
686 | 837 | ||
687 | void MindBreakerBoard::contentsMouseReleaseEvent(QMouseEvent* e) | 838 | void MindBreakerBoard::contentsMouseReleaseEvent(QMouseEvent* e) |
688 | { | 839 | { |
689 | /* time to put down the peg */ | 840 | /* time to put down the peg */ |
690 | if(moving) { | 841 | if(moving) { |
691 | if(copy_press) { | 842 | if(copy_press) { |
692 | /* check if collided with original. if so, delete both */ | 843 | /* check if collided with original. if so, delete both */ |
693 | copy_press = FALSE; | 844 | copy_press = FALSE; |
694 | QCanvasItemList l = canvas()->collisions(e->pos()); | 845 | QCanvasItemList l = canvas()->collisions(e->pos()); |
695 | for (QCanvasItemList::Iterator it=l.begin(); it !=l.end(); ++it) { | 846 | for (QCanvasItemList::Iterator it=l.begin(); it !=l.end(); ++it) { |
696 | if (*it == copy_peg) | 847 | if (*it == copy_peg) |
697 | copy_press = TRUE; | 848 | copy_press = TRUE; |
698 | } | 849 | } |
699 | if (copy_press) { | 850 | if (copy_press) { |
700 | current_guess[copy_peg->pegPos()] = 6; | 851 | current_guess[copy_peg->pegPos()] = 6; |
701 | delete copy_peg; | 852 | delete copy_peg; |
702 | delete moving; | 853 | delete moving; |
703 | copy_press = FALSE; | 854 | copy_press = FALSE; |
704 | moving = 0; | 855 | moving = 0; |
705 | copy_peg = 0; | 856 | copy_peg = 0; |
706 | canvas()->update(); | 857 | canvas()->update(); |
707 | return; | 858 | return; |
708 | } | 859 | } |
709 | } | 860 | } |
710 | 861 | ||
711 | /* first work out if in y */ | 862 | /* first work out if in y */ |
712 | if (e->y() > (board_height - (current_go * panel_height))) { | 863 | if (e->y() > (adjusted_board_height - (current_go * adjusted_panel_height))) { |
713 | delete moving; | 864 | delete moving; |
714 | moving = 0; | 865 | moving = 0; |
715 | canvas()->update(); | 866 | canvas()->update(); |
716 | return; | 867 | return; |
717 | } | 868 | } |
718 | if (e->y() < (board_height - ((current_go + 1) * panel_height))) { | 869 | if (e->y() < (adjusted_board_height - ((current_go + 1) * adjusted_panel_height))) { |
719 | delete moving; | 870 | delete moving; |
720 | moving = 0; | 871 | moving = 0; |
721 | canvas()->update(); | 872 | canvas()->update(); |
722 | return; | 873 | return; |
723 | } | 874 | } |
724 | /* ok, a valid go, but which peg */ | 875 | /* ok, a valid go, but which peg */ |
725 | int x_bar = first_peg_x_diff - (peg_size >> 1); | 876 | int x_bar = adjusted_first_peg_x_diff - (adjusted_peg_size >> 1); |
726 | x_bar += peg_spacing; | 877 | x_bar += adjusted_peg_spacing; |
727 | int pos = 0; | 878 | int pos = 0; |
728 | if (e->x() > x_bar) | 879 | if (e->x() > x_bar) |
729 | pos = 1; | 880 | pos = 1; |
730 | x_bar += peg_spacing; | 881 | x_bar += adjusted_peg_spacing; |
731 | if (e->x() > x_bar) | 882 | if (e->x() > x_bar) |
732 | pos = 2; | 883 | pos = 2; |
733 | x_bar += peg_spacing; | 884 | x_bar += adjusted_peg_spacing; |
734 | if (e->x() > x_bar) | 885 | if (e->x() > x_bar) |
735 | pos = 3; | 886 | pos = 3; |
736 | x_bar += peg_spacing; | 887 | x_bar += adjusted_peg_spacing; |
737 | 888 | ||
738 | if (e->x() > x_bar) { | 889 | if (e->x() > x_bar) { |
739 | /* invalid x */ | 890 | /* invalid x */ |
740 | delete moving; | 891 | delete moving; |
741 | moving = 0; | 892 | moving = 0; |
742 | canvas()->update(); | 893 | canvas()->update(); |
743 | return; | 894 | return; |
744 | } | 895 | } |
745 | 896 | ||
746 | int x = first_peg_x_diff + (pos * peg_spacing); | 897 | int x = adjusted_first_peg_x_diff + (pos * adjusted_peg_spacing); |
747 | int y = board_height - ((current_go + 1) * panel_height) | 898 | int y = adjusted_board_height - ((current_go + 1) * adjusted_panel_height) |
748 | + first_peg_y_diff; | 899 | + adjusted_first_peg_y_diff; |
749 | moving->setPegPos(pos); | 900 | moving->setPegPos(pos); |
750 | moving->setX(x); | 901 | moving->setX(x); |
751 | moving->setY(y); | 902 | moving->setY(y); |
752 | moving->setZ(2); | 903 | moving->setZ(2); |
753 | 904 | ||
754 | /* remove all other pegs from this position */ | 905 | /* remove all other pegs from this position */ |
755 | QCanvasItemList l = canvas()->collisions(QPoint(x,y)); | 906 | QCanvasItemList l = canvas()->collisions(QPoint(x,y)); |
756 | for (QCanvasItemList::Iterator it=l.begin(); it !=l.end(); ++it) { | 907 | for (QCanvasItemList::Iterator it=l.begin(); it !=l.end(); ++it) { |
757 | if ( (*it)->rtti() == pegRTTI ) { | 908 | if ( (*it)->rtti() == pegRTTI ) { |
758 | Peg *item = (Peg *)(*it); | 909 | Peg *item = (Peg *)(*it); |
759 | if ((item != moving) && (item != current_highlight)) | 910 | if ((item != moving) && (item != current_highlight)) |
760 | delete item; | 911 | delete item; |
761 | } | 912 | } |
762 | } | 913 | } |
763 | current_guess[pos] = ((Peg *)moving)->type(); | 914 | current_guess[pos] = ((Peg *)moving)->type(); |
764 | 915 | ||
765 | ((Peg *)moving)->setPlaced(true); | 916 | ((Peg *)moving)->setPlaced(true); |
766 | canvas()->update(); | 917 | canvas()->update(); |
767 | return; | 918 | return; |
768 | } | 919 | } |
769 | moving = 0; | 920 | moving = 0; |
770 | null_point -= e->pos(); | 921 | null_point -= e->pos(); |
771 | if(null_point.manhattanLength() < 6) { | 922 | if(null_point.manhattanLength() < 6) { |
772 | if (game_over) | 923 | if (game_over) |
773 | clear(); | 924 | clear(); |
774 | else | 925 | else |
775 | checkGuess(); | 926 | checkGuess(); |
776 | } | 927 | } |
777 | } | 928 | } |
778 | 929 | ||
779 | void MindBreakerBoard::resizeEvent(QResizeEvent *e) | 930 | void MindBreakerBoard::resizeEvent(QResizeEvent *e) |
780 | { | 931 | { |
781 | QSize s = e->size(); | 932 | QCanvasView::resizeEvent(e); |
782 | int fw = style().defaultFrameWidth(); | 933 | fixSize(); |
783 | s.setWidth(s.width() - fw); | ||
784 | s.setHeight(s.height() - fw); | ||
785 | |||
786 | /* min size is 200 x 260 */ | ||
787 | if (s.width() < board_width) | ||
788 | s.setWidth(board_width); | ||
789 | |||
790 | if (s.height() < board_height) | ||
791 | s.setHeight(board_height); | ||
792 | |||
793 | canvas()->resize(s.width() - fw, s.height() - fw); | ||
794 | drawBackground(); | ||
795 | } | 934 | } |
796 | 935 | ||
797 | 936 | ||
798 | /* Easter egg function... beat the clock */ | 937 | /* Easter egg function... beat the clock */ |
799 | void MindBreakerBoard::checkScores() | 938 | void MindBreakerBoard::checkScores() |
800 | { | 939 | { |
801 | double games = total_games; | 940 | double games = total_games; |
802 | double turns = total_turns; | 941 | double turns = total_turns; |
803 | double g = games / 10.0; | 942 | double g = games / 10.0; |
804 | Peg::eggLevel = 0; | 943 | Peg::eggLevel = 0; |
805 | 944 | ||
806 | double break_even = 5.0; | 945 | double break_even = 5.0; |
807 | if (g < 1.0) | 946 | if (g < 1.0) |
808 | return; | 947 | return; |
809 | double avg = turns / games; | 948 | double avg = turns / games; |
810 | g--; | 949 | g--; |
811 | while (break_even >= 0.0) { | 950 | while (break_even >= 0.0) { |
812 | if (avg >= (break_even + g)) | 951 | if (avg >= (break_even + g)) |
813 | return; | 952 | return; |
814 | // score a peg. | 953 | // score a peg. |
815 | break_even -= 1.0; | 954 | break_even -= 1.0; |
816 | Peg::eggLevel = int(5.0 - break_even); | 955 | Peg::eggLevel = int(5.0 - break_even); |
817 | } | 956 | } |
818 | } | 957 | } |
diff --git a/noncore/games/mindbreaker/mindbreaker.h b/noncore/games/mindbreaker/mindbreaker.h index fca649a..3132e80 100644 --- a/noncore/games/mindbreaker/mindbreaker.h +++ b/noncore/games/mindbreaker/mindbreaker.h | |||
@@ -1,122 +1,139 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000-2002 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of the Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #ifndef MINDBREAKER_H | 21 | #ifndef MINDBREAKER_H |
22 | #define MINDBREAKER_H | 22 | #define MINDBREAKER_H |
23 | 23 | ||
24 | #include <qwidget.h> | 24 | #include <qwidget.h> |
25 | #include <qmainwindow.h> | 25 | #include <qmainwindow.h> |
26 | #include <qimage.h> | 26 | #include <qimage.h> |
27 | #include <qvector.h> | 27 | #include <qvector.h> |
28 | #include <qcanvas.h> | 28 | #include <qcanvas.h> |
29 | #include <qlabel.h> | 29 | #include <qlabel.h> |
30 | 30 | ||
31 | static const int panel_height = 26; | 31 | static const int panel_height = 26; |
32 | static const int panel_width = 180; | 32 | static const int panel_width = 180; |
33 | 33 | ||
34 | static const int title_height = 25; | 34 | static const int title_height = 25; |
35 | static const int title_width = 180; | 35 | static const int title_width = 180; |
36 | 36 | ||
37 | static const int bin_margin = 10; | 37 | static const int bin_margin = 10; |
38 | static const int peg_size = 20; | 38 | static const int peg_size = 20; |
39 | static const int answerpeg_size = 13; | 39 | static const int answerpeg_size = 13; |
40 | 40 | ||
41 | static const int first_peg_x_diff = 21; | 41 | static const int first_peg_x_diff = 21; |
42 | static const int first_peg_y_diff = ((panel_height - peg_size) >> 1); | 42 | static const int first_peg_y_diff = ((panel_height - peg_size) >> 1); |
43 | static const int peg_spacing = 30; | 43 | static const int peg_spacing = 30; |
44 | 44 | ||
45 | static const int answerpegx = 152; | 45 | static const int answerpegx = 152; |
46 | static const int answerpegy = 2; | 46 | static const int answerpegy = 2; |
47 | static const int answerpeg_diff = 9; | 47 | static const int answerpeg_diff = 9; |
48 | 48 | ||
49 | static const int board_height = (title_height + (panel_height * 9)); | 49 | static const int board_height = (title_height + (panel_height * 9)); |
50 | static const int board_width = (panel_width + (bin_margin * 2) + peg_size); | 50 | static const int board_width = (panel_width + (bin_margin * 2) + peg_size); |
51 | 51 | ||
52 | class Peg; | 52 | class Peg; |
53 | class QToolButton; | 53 | class QToolButton; |
54 | class QTimer; | ||
54 | 55 | ||
55 | class MindBreakerBoard : public QCanvasView // QWidget | 56 | class MindBreakerBoard : public QCanvasView // QWidget |
56 | { | 57 | { |
57 | Q_OBJECT | 58 | Q_OBJECT |
58 | public: | 59 | public: |
59 | MindBreakerBoard(QCanvas &c, QWidget *parent=0, const char *name=0, int wFlags=0 ); | 60 | MindBreakerBoard(QWidget *parent=0, const char *name=0, int wFlags=0 ); |
60 | ~MindBreakerBoard(); | 61 | ~MindBreakerBoard(); |
61 | 62 | ||
62 | void getScore(int *, int *); | 63 | void getScore(int *, int *); |
64 | |||
65 | void resizeEvent(QResizeEvent*); | ||
66 | void fixSize(); | ||
67 | |||
63 | signals: | 68 | signals: |
64 | void scoreChanged(int, int); | 69 | void scoreChanged(int, int); |
65 | 70 | ||
66 | public slots: | 71 | public slots: |
67 | void clear(); | 72 | void clear(); |
68 | void resetScore(); | 73 | void resetScore(); |
69 | 74 | ||
75 | private slots: | ||
76 | void doFixSize(); | ||
77 | |||
70 | protected: | 78 | protected: |
71 | void contentsMousePressEvent(QMouseEvent *); | 79 | void contentsMousePressEvent(QMouseEvent *); |
72 | void contentsMouseMoveEvent(QMouseEvent *); | 80 | void contentsMouseMoveEvent(QMouseEvent *); |
73 | void contentsMouseReleaseEvent(QMouseEvent *); | 81 | void contentsMouseReleaseEvent(QMouseEvent *); |
74 | void resizeEvent(QResizeEvent *); | ||
75 | 82 | ||
76 | private: | 83 | private: |
84 | QCanvas cnv; | ||
85 | |||
86 | void readConfig(); | ||
87 | void writeConfig(); | ||
88 | |||
77 | void drawBackground(); | 89 | void drawBackground(); |
78 | void checkGuess(); | 90 | void checkGuess(); |
79 | void checkScores(); | 91 | void checkScores(); |
80 | void placeGuessPeg(int pos, int pegId); | 92 | void placeGuessPeg(int pos, int pegId); |
81 | 93 | ||
82 | QImage panelImage; | 94 | QImage panelImage; |
83 | QImage titleImage; | 95 | QImage titleImage; |
84 | 96 | ||
85 | Peg *moving; | 97 | Peg *moving; |
86 | Peg *current_highlight; | 98 | Peg *current_highlight; |
87 | QPoint moving_pos; | 99 | QPoint moving_pos; |
88 | 100 | ||
89 | // the game stuff | 101 | // the game stuff |
90 | int answer[4]; | 102 | int answer[4]; |
91 | int current_guess[4]; | 103 | int current_guess[4]; |
92 | int past_guesses[4*9]; | 104 | int past_guesses[4*9]; |
93 | int current_go; | 105 | int current_go; |
94 | 106 | ||
95 | int null_press; | 107 | int null_press; |
96 | QPoint null_point; | 108 | QPoint null_point; |
97 | bool copy_press; | 109 | bool copy_press; |
98 | Peg *copy_peg; | 110 | Peg *copy_peg; |
99 | bool game_over; | 111 | bool game_over; |
100 | 112 | ||
101 | int total_turns; | 113 | int total_turns; |
102 | int total_games; | 114 | int total_games; |
115 | |||
116 | QTimer *widthTimer; | ||
103 | }; | 117 | }; |
104 | 118 | ||
105 | class MindBreaker : public QMainWindow // QWidget | 119 | class MindBreaker : public QMainWindow // QWidget |
106 | { | 120 | { |
107 | Q_OBJECT | 121 | Q_OBJECT |
108 | public: | 122 | public: |
109 | MindBreaker(QWidget *parent=0, const char *name=0, int wFlags=0 ); | 123 | MindBreaker(QWidget *parent=0, const char *name=0, int wFlags=0 ); |
110 | 124 | static QString appName() { return QString::fromLatin1("mindbreaker"); } | |
111 | public slots: | 125 | public slots: |
112 | void setScore(int, int); | 126 | void setScore(int, int); |
113 | 127 | ||
128 | protected: | ||
129 | void resizeEvent( QResizeEvent * ); | ||
130 | |||
114 | private: | 131 | private: |
115 | QCanvas canvas; | 132 | QCanvas canvas; |
116 | MindBreakerBoard *board; | 133 | MindBreakerBoard *board; |
117 | QToolButton *score; | 134 | QToolButton *score; |
118 | 135 | ||
119 | }; | 136 | }; |
120 | 137 | ||
121 | 138 | ||
122 | #endif | 139 | #endif |
diff --git a/noncore/games/mindbreaker/mindbreaker.pro b/noncore/games/mindbreaker/mindbreaker.pro index 4ca3b84..0a37fa7 100644 --- a/noncore/games/mindbreaker/mindbreaker.pro +++ b/noncore/games/mindbreaker/mindbreaker.pro | |||
@@ -1,12 +1,11 @@ | |||
1 | TEMPLATE = app | 1 | CONFIG += qt warn_on release quick-app |
2 | CONFIG += qt warn_on release | ||
3 | DESTDIR = $(OPIEDIR)/bin | ||
4 | HEADERS = mindbreaker.h | 2 | HEADERS = mindbreaker.h |
5 | SOURCES = main.cpp \ | 3 | SOURCES = main.cpp \ |
6 | mindbreaker.cpp | 4 | mindbreaker.cpp |
7 | TARGET = mindbreaker | 5 | TARGET = mindbreaker |
8 | INCLUDEPATH += $(OPIEDIR)/include | 6 | INCLUDEPATH += $(OPIEDIR)/include |
9 | DEPENDPATH += $(OPIEDIR)/include | 7 | DEPENDPATH += $(OPIEDIR)/include |
10 | LIBS += -lqpe | 8 | LIBS += -lqpe |
11 | 9 | ||
10 | |||
12 | include ( $(OPIEDIR)/include.pro ) | 11 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/mindbreaker/opie-mindbreaker.control b/noncore/games/mindbreaker/opie-mindbreaker.control index 7b5ead6..5b342da 100644 --- a/noncore/games/mindbreaker/opie-mindbreaker.control +++ b/noncore/games/mindbreaker/opie-mindbreaker.control | |||
@@ -1,10 +1,10 @@ | |||
1 | Package: opie-mindbreaker | 1 | Package: opie-mindbreaker |
2 | Files: bin/mindbreaker apps/Games/mindbreaker.desktop pics/mindbreaker | 2 | Files: plugins/application/libmindbreaker.so* bin/mindbreaker apps/Games/mindbreaker.desktop pics/mindbreaker |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/games | 4 | Section: opie/games |
5 | Maintainer: Martin Imobersteg <imm@gmx.ch> | 5 | Maintainer: Martin Imobersteg <imm@gmx.ch> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Depends: task-opie-minimal | 7 | Depends: task-opie-minimal |
8 | Description: Game: crack the coloured code | 8 | Description: Game: crack the coloured code |
9 | A game for the Opie environment. | 9 | A game for the Opie environment. |
10 | Version: $QPE_VERSION$EXTRAVERSION | 10 | Version: $QPE_VERSION$EXTRAVERSION |
diff --git a/noncore/games/minesweep/main.cpp b/noncore/games/minesweep/main.cpp index 83de9a3..bd70f7c 100644 --- a/noncore/games/minesweep/main.cpp +++ b/noncore/games/minesweep/main.cpp | |||
@@ -1,34 +1,27 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "minesweep.h" | 21 | #include "minesweep.h" |
22 | 22 | ||
23 | #include <qpe/qpeapplication.h> | 23 | #include <qpe/qpeapplication.h> |
24 | #include <opie/oapplicationfactory.h> | ||
24 | 25 | ||
25 | int main( int argc, char** argv ) | 26 | OPIE_EXPORT_APP( OApplicationFactory<MineSweep> ) |
26 | { | ||
27 | QPEApplication a( argc, argv ); | ||
28 | 27 | ||
29 | MineSweep ms; | ||
30 | QPEApplication::setInputMethodHint( &ms, QPEApplication::AlwaysOff ); | ||
31 | a.showMainWidget( &ms ); | ||
32 | |||
33 | return a.exec(); | ||
34 | } | ||
diff --git a/noncore/games/minesweep/minefield.cpp b/noncore/games/minesweep/minefield.cpp index eca1a36..04cfb97 100644 --- a/noncore/games/minesweep/minefield.cpp +++ b/noncore/games/minesweep/minefield.cpp | |||
@@ -324,65 +324,65 @@ void MineField::setup( int level ) | |||
324 | { | 324 | { |
325 | lev = level; | 325 | lev = level; |
326 | setState( Waiting ); | 326 | setState( Waiting ); |
327 | //viewport()->setUpdatesEnabled( FALSE ); | 327 | //viewport()->setUpdatesEnabled( FALSE ); |
328 | 328 | ||
329 | int i; | 329 | int i; |
330 | if ( mines ) | 330 | if ( mines ) |
331 | { | 331 | { |
332 | for ( i = 0; i < numCols*numRows; i++ ) | 332 | for ( i = 0; i < numCols*numRows; i++ ) |
333 | { | 333 | { |
334 | delete mines[i]; | 334 | delete mines[i]; |
335 | } | 335 | } |
336 | delete[] mines; | 336 | delete[] mines; |
337 | } | 337 | } |
338 | 338 | ||
339 | switch( lev ) { | 339 | switch( lev ) { |
340 | case 1: | 340 | case 1: |
341 | numRows = 9 ; | 341 | numRows = 9 ; |
342 | numCols = 9 ; | 342 | numCols = 9 ; |
343 | minecount = 12; | 343 | minecount = 12; |
344 | break; | 344 | break; |
345 | case 2: | 345 | case 2: |
346 | numRows = 16; | 346 | numRows = 16; |
347 | numCols = 16; | 347 | numCols = 16; |
348 | minecount = 45; | 348 | minecount = 45; |
349 | break; | 349 | break; |
350 | case 3: | 350 | case 3: |
351 | numCols = 18; | 351 | numCols = 18; |
352 | numRows = 18; | 352 | numRows = 18; |
353 | minecount = 66 ; | 353 | minecount = 66 ; |
354 | break; | 354 | break; |
355 | } | 355 | } |
356 | mines = new (Mine*)[numRows*numCols]; | 356 | mines = new Mine*[numRows*numCols]; |
357 | for ( i = 0; i < numCols*numRows; i++ ) | 357 | for ( i = 0; i < numCols*numRows; i++ ) |
358 | mines[i] = new Mine( this ); | 358 | mines[i] = new Mine( this ); |
359 | 359 | ||
360 | 360 | ||
361 | nonminecount = numRows*numCols - minecount; | 361 | nonminecount = numRows*numCols - minecount; |
362 | mineguess = minecount; | 362 | mineguess = minecount; |
363 | emit mineCount( mineguess ); | 363 | emit mineCount( mineguess ); |
364 | Mine::paletteChange(); | 364 | Mine::paletteChange(); |
365 | 365 | ||
366 | if ( availableRect.isValid() ) | 366 | if ( availableRect.isValid() ) |
367 | setCellSize(findCellSize()); | 367 | setCellSize(findCellSize()); |
368 | // viewport()->setUpdatesEnabled( TRUE ); | 368 | // viewport()->setUpdatesEnabled( TRUE ); |
369 | //viewport()->repaint( TRUE ); | 369 | //viewport()->repaint( TRUE ); |
370 | updateContents( 0, 0, numCols*cellSize, numRows*cellSize ); | 370 | updateContents( 0, 0, numCols*cellSize, numRows*cellSize ); |
371 | updateGeometry(); | 371 | updateGeometry(); |
372 | } | 372 | } |
373 | 373 | ||
374 | void MineField::drawContents( QPainter * p, int clipx, int clipy, int clipw, int cliph ) | 374 | void MineField::drawContents( QPainter * p, int clipx, int clipy, int clipw, int cliph ) |
375 | { | 375 | { |
376 | int c1 = clipx / cellSize; | 376 | int c1 = clipx / cellSize; |
377 | int c2 = ( clipx + clipw - 1 ) / cellSize; | 377 | int c2 = ( clipx + clipw - 1 ) / cellSize; |
378 | int r1 = clipy / cellSize; | 378 | int r1 = clipy / cellSize; |
379 | int r2 = ( clipy + cliph - 1 ) / cellSize; | 379 | int r2 = ( clipy + cliph - 1 ) / cellSize; |
380 | 380 | ||
381 | for ( int c = c1; c <= c2 ; c++ ) { | 381 | for ( int c = c1; c <= c2 ; c++ ) { |
382 | for ( int r = r1; r <= r2 ; r++ ) { | 382 | for ( int r = r1; r <= r2 ; r++ ) { |
383 | int x = c * cellSize; | 383 | int x = c * cellSize; |
384 | int y = r * cellSize; | 384 | int y = r * cellSize; |
385 | Mine *m = mine( r, c ); | 385 | Mine *m = mine( r, c ); |
386 | if ( m ) | 386 | if ( m ) |
387 | m->paint( p, colorGroup(), QRect(x, y, cellSize, cellSize ) ); | 387 | m->paint( p, colorGroup(), QRect(x, y, cellSize, cellSize ) ); |
388 | } | 388 | } |
diff --git a/noncore/games/minesweep/minesweep.cpp b/noncore/games/minesweep/minesweep.cpp index 48644b3..7214a73 100644 --- a/noncore/games/minesweep/minesweep.cpp +++ b/noncore/games/minesweep/minesweep.cpp | |||
@@ -1,55 +1,56 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "minesweep.h" | 21 | #include "minesweep.h" |
22 | #include "minefield.h" | 22 | #include "minefield.h" |
23 | 23 | ||
24 | #include <qpe/qpeapplication.h> | ||
24 | #include <qpe/resource.h> | 25 | #include <qpe/resource.h> |
25 | #include <qpe/config.h> | 26 | #include <qpe/config.h> |
26 | 27 | ||
27 | #include <qpe/qpetoolbar.h> | 28 | #include <qpe/qpetoolbar.h> |
28 | #include <qmenubar.h> | 29 | #include <qmenubar.h> |
29 | #include <qpopupmenu.h> | 30 | #include <qpopupmenu.h> |
30 | #include <qpushbutton.h> | 31 | #include <qpushbutton.h> |
31 | #include <qlcdnumber.h> | 32 | #include <qlcdnumber.h> |
32 | #include <qmessagebox.h> | 33 | #include <qmessagebox.h> |
33 | #include <qtimer.h> | 34 | #include <qtimer.h> |
34 | #include <qpalette.h> | 35 | #include <qpalette.h> |
35 | #include <qapplication.h> | 36 | #include <qapplication.h> |
36 | #include <qlayout.h> | 37 | #include <qlayout.h> |
37 | #include <qlabel.h> | 38 | #include <qlabel.h> |
38 | 39 | ||
39 | #include <stdlib.h> | 40 | #include <stdlib.h> |
40 | #include <time.h> | 41 | #include <time.h> |
41 | 42 | ||
42 | 43 | ||
43 | 44 | ||
44 | 45 | ||
45 | static const char *pix_new[]={ | 46 | static const char *pix_new[]={ |
46 | "20 20 3 1", | 47 | "20 20 3 1", |
47 | " c None", | 48 | " c None", |
48 | "# c #00FF00", | 49 | "# c #00FF00", |
49 | ". c #000000", | 50 | ". c #000000", |
50 | " ", | 51 | " ", |
51 | " ...... ", | 52 | " ...... ", |
52 | " ..######.. ", | 53 | " ..######.. ", |
53 | " .##########. ", | 54 | " .##########. ", |
54 | " .############. ", | 55 | " .############. ", |
55 | " .##############. ", | 56 | " .##############. ", |
@@ -126,206 +127,207 @@ static const char * worried_xpm[] = { | |||
126 | 127 | ||
127 | 128 | ||
128 | /* XPM */ | 129 | /* XPM */ |
129 | static const char * dead_xpm[] = { | 130 | static const char * dead_xpm[] = { |
130 | "20 20 3 1", | 131 | "20 20 3 1", |
131 | " c None", | 132 | " c None", |
132 | ".c #ffff3f", | 133 | ".c #ffff3f", |
133 | "#c #000000", | 134 | "#c #000000", |
134 | " ", | 135 | " ", |
135 | " ###### ", | 136 | " ###### ", |
136 | " ##......## ", | 137 | " ##......## ", |
137 | " #..........# ", | 138 | " #..........# ", |
138 | " #............# ", | 139 | " #............# ", |
139 | " #..............# ", | 140 | " #..............# ", |
140 | " #..#.#...#.#...# ", | 141 | " #..#.#...#.#...# ", |
141 | " #....#.....#.....# ", | 142 | " #....#.....#.....# ", |
142 | " #...#.#...#.#....# ", | 143 | " #...#.#...#.#....# ", |
143 | " #................# ", | 144 | " #................# ", |
144 | " #................# ", | 145 | " #................# ", |
145 | " #................# ", | 146 | " #................# ", |
146 | " #......####......# ", | 147 | " #......####......# ", |
147 | " #....# #....# ", | 148 | " #....# #....# ", |
148 | " #...#......#...# ", | 149 | " #...#......#...# ", |
149 | " #............# ", | 150 | " #............# ", |
150 | " #..........# ", | 151 | " #..........# ", |
151 | " ##......## ", | 152 | " ##......## ", |
152 | " ###### ", | 153 | " ###### ", |
153 | " "}; | 154 | " "}; |
154 | 155 | ||
155 | 156 | ||
156 | class ResultIndicator : private QLabel | 157 | class ResultIndicator : private QLabel |
157 | { | 158 | { |
158 | public: | 159 | public: |
159 | static void showResult( QWidget *ref, bool won ); | 160 | static void showResult( QWidget *ref, bool won ); |
160 | private: | 161 | private: |
161 | ResultIndicator( QWidget *parent, const char *name, WFlags f) | 162 | ResultIndicator( QWidget *parent, const char *name, WFlags f) |
162 | :QLabel( parent, name, f ) {} | 163 | :QLabel( parent, name, f ) {} |
163 | 164 | ||
164 | void timerEvent( QTimerEvent *); | 165 | void timerEvent( QTimerEvent *); |
165 | void center(); | 166 | void center(); |
166 | bool twoStage; | 167 | bool twoStage; |
167 | int timerId; | 168 | int timerId; |
168 | }; | 169 | }; |
169 | 170 | ||
170 | void ResultIndicator::showResult( QWidget *ref, bool won ) | 171 | void ResultIndicator::showResult( QWidget *ref, bool won ) |
171 | { | 172 | { |
172 | ResultIndicator *r = new ResultIndicator( ref, 0, WStyle_Customize | WStyle_Tool | WType_TopLevel ); | 173 | ResultIndicator *r = new ResultIndicator( ref, 0, WStyle_Customize | WStyle_Tool | WType_TopLevel ); |
173 | 174 | ||
174 | r->setAlignment( AlignCenter ); | 175 | r->setAlignment( AlignCenter ); |
175 | r->setFrameStyle( Sunken|StyledPanel ); | 176 | r->setFrameStyle( Sunken|StyledPanel ); |
176 | if ( won ) { | 177 | if ( won ) { |
177 | r->setText( MineSweep::tr("You won!") ); | 178 | r->setText( MineSweep::tr("You won!") ); |
178 | r->center(); | 179 | r->center(); |
179 | r->show(); | 180 | r->show(); |
180 | r->twoStage = FALSE; | 181 | r->twoStage = FALSE; |
181 | r->timerId = r->startTimer(1500); | 182 | r->timerId = r->startTimer(1500); |
182 | } else { | 183 | } else { |
183 | QPalette p( red ); | 184 | QPalette p( red ); |
184 | r->setPalette( p ); | 185 | r->setPalette( p ); |
185 | r->setText( MineSweep::tr("You exploded!") ); | 186 | r->setText( MineSweep::tr("You exploded!") ); |
186 | r->resize( ref->size() ); | 187 | r->resize( ref->size() ); |
187 | r->move( ref->mapToGlobal(QPoint(0,0)) ); | 188 | r->move( ref->mapToGlobal(QPoint(0,0)) ); |
188 | r->show(); | 189 | r->show(); |
189 | r->twoStage = TRUE; | 190 | r->twoStage = TRUE; |
190 | r->timerId =r->startTimer(200); | 191 | r->timerId =r->startTimer(200); |
191 | } | 192 | } |
192 | } | 193 | } |
193 | 194 | ||
194 | void ResultIndicator::center() | 195 | void ResultIndicator::center() |
195 | { | 196 | { |
196 | QWidget *w = parentWidget(); | 197 | QWidget *w = parentWidget(); |
197 | 198 | ||
198 | QPoint pp = w->mapToGlobal( QPoint(0,0) ); | 199 | QPoint pp = w->mapToGlobal( QPoint(0,0) ); |
199 | QSize s = sizeHint()*3; | 200 | QSize s = sizeHint()*3; |
200 | pp = QPoint( pp.x() + w->width()/2 - s.width()/2, | 201 | pp = QPoint( pp.x() + w->width()/2 - s.width()/2, |
201 | pp.y() + w->height()/ 2 - s.height()/2 ); | 202 | pp.y() + w->height()/ 2 - s.height()/2 ); |
202 | 203 | ||
203 | setGeometry( QRect(pp, s) ); | 204 | setGeometry( QRect(pp, s) ); |
204 | 205 | ||
205 | } | 206 | } |
206 | 207 | ||
207 | void ResultIndicator::timerEvent( QTimerEvent *te ) | 208 | void ResultIndicator::timerEvent( QTimerEvent *te ) |
208 | { | 209 | { |
209 | if ( te->timerId() != timerId ) | 210 | if ( te->timerId() != timerId ) |
210 | return; | 211 | return; |
211 | killTimer( timerId ); | 212 | killTimer( timerId ); |
212 | if ( twoStage ) { | 213 | if ( twoStage ) { |
213 | center(); | 214 | center(); |
214 | twoStage = FALSE; | 215 | twoStage = FALSE; |
215 | timerId = startTimer( 1000 ); | 216 | timerId = startTimer( 1000 ); |
216 | } else { | 217 | } else { |
217 | delete this; | 218 | delete this; |
218 | } | 219 | } |
219 | } | 220 | } |
220 | 221 | ||
221 | 222 | ||
222 | class MineFrame : public QFrame | 223 | class MineFrame : public QFrame |
223 | { | 224 | { |
224 | public: | 225 | public: |
225 | MineFrame( QWidget *parent, const char *name = 0 ) | 226 | MineFrame( QWidget *parent, const char *name = 0 ) |
226 | :QFrame( parent, name ) {} | 227 | :QFrame( parent, name ) {} |
227 | void setField( MineField *f ) { field = f; } | 228 | void setField( MineField *f ) { field = f; } |
228 | protected: | 229 | protected: |
229 | void resizeEvent( QResizeEvent *e ) { | 230 | void resizeEvent( QResizeEvent *e ) { |
230 | field->setAvailableRect( contentsRect()); | 231 | field->setAvailableRect( contentsRect()); |
231 | QFrame::resizeEvent(e); | 232 | QFrame::resizeEvent(e); |
232 | } | 233 | } |
233 | private: | 234 | private: |
234 | MineField *field; | 235 | MineField *field; |
235 | }; | 236 | }; |
236 | 237 | ||
237 | 238 | ||
238 | 239 | ||
239 | MineSweep::MineSweep( QWidget* parent, const char* name, WFlags f ) | 240 | MineSweep::MineSweep( QWidget* parent, const char* name, WFlags f ) |
240 | : QMainWindow( parent, name, f ) | 241 | : QMainWindow( parent, name, f ) |
241 | { | 242 | { |
243 | QPEApplication::setInputMethodHint(this, QPEApplication::AlwaysOff ); | ||
242 | srand(::time(0)); | 244 | srand(::time(0)); |
243 | setCaption( tr("Mine Hunt") ); | 245 | setCaption( tr("Mine Hunt") ); |
244 | setIcon( Resource::loadPixmap( "minesweep_icon" ) ); | 246 | setIcon( Resource::loadPixmap( "minesweep_icon" ) ); |
245 | 247 | ||
246 | QToolBar *toolBar = new QToolBar( this ); | 248 | QToolBar *toolBar = new QToolBar( this ); |
247 | toolBar->setHorizontalStretchable( TRUE ); | 249 | toolBar->setHorizontalStretchable( TRUE ); |
248 | 250 | ||
249 | QMenuBar *menuBar = new QMenuBar( toolBar ); | 251 | QMenuBar *menuBar = new QMenuBar( toolBar ); |
250 | 252 | ||
251 | QPopupMenu *gameMenu = new QPopupMenu( this ); | 253 | QPopupMenu *gameMenu = new QPopupMenu( this ); |
252 | gameMenu->insertItem( tr("Beginner"), this, SLOT( beginner() ) ); | 254 | gameMenu->insertItem( tr("Beginner"), this, SLOT( beginner() ) ); |
253 | gameMenu->insertItem( tr("Advanced"), this, SLOT( advanced() ) ); | 255 | gameMenu->insertItem( tr("Advanced"), this, SLOT( advanced() ) ); |
254 | gameMenu->insertItem( tr("Expert"), this, SLOT( expert() ) ); | 256 | gameMenu->insertItem( tr("Expert"), this, SLOT( expert() ) ); |
255 | 257 | ||
256 | menuBar->insertItem( tr("Game"), gameMenu ); | 258 | menuBar->insertItem( tr("Game"), gameMenu ); |
257 | 259 | ||
258 | guessLCD = new QLCDNumber( toolBar ); | 260 | guessLCD = new QLCDNumber( toolBar ); |
259 | toolBar->setStretchableWidget( guessLCD ); | 261 | toolBar->setStretchableWidget( guessLCD ); |
260 | 262 | ||
261 | QPalette lcdPal( red ); | 263 | QPalette lcdPal( red ); |
262 | lcdPal.setColor( QColorGroup::Background, QApplication::palette().active().background() ); | 264 | lcdPal.setColor( QColorGroup::Background, QApplication::palette().active().background() ); |
263 | lcdPal.setColor( QColorGroup::Button, QApplication::palette().active().button() ); | 265 | lcdPal.setColor( QColorGroup::Button, QApplication::palette().active().button() ); |
264 | 266 | ||
265 | // guessLCD->setPalette( lcdPal ); | 267 | // guessLCD->setPalette( lcdPal ); |
266 | guessLCD->setSegmentStyle( QLCDNumber::Flat ); | 268 | guessLCD->setSegmentStyle( QLCDNumber::Flat ); |
267 | guessLCD->setFrameStyle( QFrame::NoFrame ); | 269 | guessLCD->setFrameStyle( QFrame::NoFrame ); |
268 | guessLCD->setNumDigits( 2 ); | 270 | guessLCD->setNumDigits( 2 ); |
269 | guessLCD->setBackgroundMode( PaletteButton ); | 271 | guessLCD->setBackgroundMode( PaletteButton ); |
270 | newGameButton = new QPushButton( toolBar ); | 272 | newGameButton = new QPushButton( toolBar ); |
271 | newGameButton->setPixmap( QPixmap( pix_new ) ); | 273 | newGameButton->setPixmap( QPixmap( pix_new ) ); |
272 | newGameButton->setFocusPolicy(QWidget::NoFocus); | 274 | newGameButton->setFocusPolicy(QWidget::NoFocus); |
273 | connect( newGameButton, SIGNAL(clicked()), this, SLOT(newGame()) ); | 275 | connect( newGameButton, SIGNAL(clicked()), this, SLOT(newGame()) ); |
274 | 276 | ||
275 | timeLCD = new QLCDNumber( toolBar ); | 277 | timeLCD = new QLCDNumber( toolBar ); |
276 | // timeLCD->setPalette( lcdPal ); | 278 | // timeLCD->setPalette( lcdPal ); |
277 | timeLCD->setSegmentStyle( QLCDNumber::Flat ); | 279 | timeLCD->setSegmentStyle( QLCDNumber::Flat ); |
278 | timeLCD->setFrameStyle( QFrame::NoFrame ); | 280 | timeLCD->setFrameStyle( QFrame::NoFrame ); |
279 | timeLCD->setNumDigits( 5 ); // "mm:ss" | 281 | timeLCD->setNumDigits( 5 ); // "mm:ss" |
280 | timeLCD->setBackgroundMode( PaletteButton ); | 282 | timeLCD->setBackgroundMode( PaletteButton ); |
281 | 283 | ||
282 | setToolBarsMovable ( FALSE ); | 284 | setToolBarsMovable ( FALSE ); |
283 | 285 | ||
284 | addToolBar( toolBar ); | 286 | addToolBar( toolBar ); |
285 | 287 | ||
286 | MineFrame *mainframe = new MineFrame( this ); | 288 | MineFrame *mainframe = new MineFrame( this ); |
287 | mainframe->setFrameShape( QFrame::Box ); | 289 | mainframe->setFrameShape( QFrame::Box ); |
288 | mainframe->setFrameShadow( QFrame::Raised ); | 290 | mainframe->setFrameShadow( QFrame::Raised ); |
289 | 291 | ||
290 | mainframe->setLineWidth(2); | 292 | mainframe->setLineWidth(2); |
291 | 293 | ||
292 | field = new MineField( mainframe ); | 294 | field = new MineField( mainframe ); |
293 | mainframe->setField( field ); | 295 | mainframe->setField( field ); |
294 | QFont fnt = field->font(); | 296 | QFont fnt = field->font(); |
295 | fnt.setBold( TRUE ); | 297 | fnt.setBold( TRUE ); |
296 | field->setFont( QFont( fnt ) ); | 298 | field->setFont( QFont( fnt ) ); |
297 | field->setFocus(); | 299 | field->setFocus(); |
298 | setCentralWidget( mainframe ); | 300 | setCentralWidget( mainframe ); |
299 | 301 | ||
300 | connect( field, SIGNAL( gameOver( bool ) ), this, SLOT( gameOver( bool ) ) ); | 302 | connect( field, SIGNAL( gameOver( bool ) ), this, SLOT( gameOver( bool ) ) ); |
301 | connect( field, SIGNAL( mineCount( int ) ), this, SLOT( setCounter( int ) ) ); | 303 | connect( field, SIGNAL( mineCount( int ) ), this, SLOT( setCounter( int ) ) ); |
302 | connect( field, SIGNAL( gameStarted()), this, SLOT( startPlaying() ) ); | 304 | connect( field, SIGNAL( gameStarted()), this, SLOT( startPlaying() ) ); |
303 | 305 | ||
304 | timer = new QTimer( this ); | 306 | timer = new QTimer( this ); |
305 | 307 | ||
306 | connect( timer, SIGNAL( timeout() ), this, SLOT( updateTime() ) ); | 308 | connect( timer, SIGNAL( timeout() ), this, SLOT( updateTime() ) ); |
307 | 309 | ||
308 | readConfig(); | 310 | readConfig(); |
309 | } | 311 | } |
310 | 312 | ||
311 | MineSweep::~MineSweep() | 313 | MineSweep::~MineSweep() |
312 | { | 314 | { |
313 | writeConfig(); | 315 | writeConfig(); |
314 | } | 316 | } |
315 | 317 | ||
316 | void MineSweep::gameOver( bool won ) | 318 | void MineSweep::gameOver( bool won ) |
317 | { | 319 | { |
318 | field->showMines(); | 320 | field->showMines(); |
319 | if ( won ) { | 321 | if ( won ) { |
320 | newGameButton->setPixmap( QPixmap( happy_xpm ) ); | 322 | newGameButton->setPixmap( QPixmap( happy_xpm ) ); |
321 | } else { | 323 | } else { |
322 | newGameButton->setPixmap( QPixmap( dead_xpm ) ); | 324 | newGameButton->setPixmap( QPixmap( dead_xpm ) ); |
323 | } | 325 | } |
324 | ResultIndicator::showResult( this, won ); | 326 | ResultIndicator::showResult( this, won ); |
325 | timer->stop(); | 327 | timer->stop(); |
326 | } | 328 | } |
327 | 329 | ||
328 | void MineSweep::newGame() | 330 | void MineSweep::newGame() |
329 | { | 331 | { |
330 | newGame(field->level()); | 332 | newGame(field->level()); |
331 | } | 333 | } |
diff --git a/noncore/games/minesweep/minesweep.h b/noncore/games/minesweep/minesweep.h index e860573..527dc9e 100644 --- a/noncore/games/minesweep/minesweep.h +++ b/noncore/games/minesweep/minesweep.h | |||
@@ -2,64 +2,65 @@ | |||
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #ifndef MINESWEEP_H | 20 | #ifndef MINESWEEP_H |
21 | #define MINESWEEP_H | 21 | #define MINESWEEP_H |
22 | 22 | ||
23 | #include <qmainwindow.h> | 23 | #include <qmainwindow.h> |
24 | #include <qdatetime.h> | 24 | #include <qdatetime.h> |
25 | 25 | ||
26 | class MineField; | 26 | class MineField; |
27 | class QLCDNumber; | 27 | class QLCDNumber; |
28 | class QPushButton; | 28 | class QPushButton; |
29 | 29 | ||
30 | class MineSweep : public QMainWindow | 30 | class MineSweep : public QMainWindow |
31 | { | 31 | { |
32 | Q_OBJECT | 32 | Q_OBJECT |
33 | public: | 33 | public: |
34 | static QString appName() { return QString::fromLatin1("minesweep"); } | ||
34 | MineSweep( QWidget* parent = 0, const char* name = 0, WFlags f = 0 ); | 35 | MineSweep( QWidget* parent = 0, const char* name = 0, WFlags f = 0 ); |
35 | ~MineSweep(); | 36 | ~MineSweep(); |
36 | 37 | ||
37 | public slots: | 38 | public slots: |
38 | void gameOver( bool won ); | 39 | void gameOver( bool won ); |
39 | void newGame(); | 40 | void newGame(); |
40 | 41 | ||
41 | protected slots: | 42 | protected slots: |
42 | void setCounter( int ); | 43 | void setCounter( int ); |
43 | void updateTime(); | 44 | void updateTime(); |
44 | 45 | ||
45 | void beginner(); | 46 | void beginner(); |
46 | void advanced(); | 47 | void advanced(); |
47 | void expert(); | 48 | void expert(); |
48 | 49 | ||
49 | private slots: | 50 | private slots: |
50 | void startPlaying(); | 51 | void startPlaying(); |
51 | 52 | ||
52 | private: | 53 | private: |
53 | void readConfig(); | 54 | void readConfig(); |
54 | void writeConfig() const; | 55 | void writeConfig() const; |
55 | 56 | ||
56 | void newGame(int); | 57 | void newGame(int); |
57 | MineField* field; | 58 | MineField* field; |
58 | QLCDNumber* guessLCD; | 59 | QLCDNumber* guessLCD; |
59 | QLCDNumber* timeLCD; | 60 | QLCDNumber* timeLCD; |
60 | QPushButton* newGameButton; | 61 | QPushButton* newGameButton; |
61 | 62 | ||
62 | QDateTime starttime; | 63 | QDateTime starttime; |
63 | QTimer* timer; | 64 | QTimer* timer; |
64 | }; | 65 | }; |
65 | 66 | ||
diff --git a/noncore/games/minesweep/minesweep.pro b/noncore/games/minesweep/minesweep.pro index 8e4001e..9746651 100644 --- a/noncore/games/minesweep/minesweep.pro +++ b/noncore/games/minesweep/minesweep.pro | |||
@@ -1,15 +1,13 @@ | |||
1 | TEMPLATE= app | 1 | CONFIG = qt warn_on release quick-app |
2 | CONFIG = qt warn_on release | 2 | HEADERS = minefield.h \ |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | minesweep.h |
4 | HEADERS = minefield.h \ | 4 | SOURCES = main.cpp \ |
5 | minesweep.h | 5 | minefield.cpp \ |
6 | SOURCES = main.cpp \ | 6 | minesweep.cpp |
7 | minefield.cpp \ | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | minesweep.cpp | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | INCLUDEPATH += $(OPIEDIR)/include | 9 | LIBS += -lqpe |
10 | DEPENDPATH+= $(OPIEDIR)/include | 10 | INTERFACES= |
11 | LIBS += -lqpe | 11 | TARGET = minesweep |
12 | INTERFACES= | 12 | |
13 | TARGET = minesweep | 13 | include ( $(OPIEDIR)/include.pro ) |
14 | |||
15 | include ( $(OPIEDIR)/include.pro ) | ||
diff --git a/noncore/games/minesweep/opie-minesweep.control b/noncore/games/minesweep/opie-minesweep.control index 32f0352..91343ea 100644 --- a/noncore/games/minesweep/opie-minesweep.control +++ b/noncore/games/minesweep/opie-minesweep.control | |||
@@ -1,10 +1,10 @@ | |||
1 | Package: opie-minesweep | 1 | Package: opie-minesweep |
2 | Files: bin/minesweep apps/Games/minesweep.desktop pics/minesweep | 2 | Files: plugins/application/libminesweep.so* bin/minesweep apps/Games/minesweep.desktop pics/minesweep |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/games | 4 | Section: opie/games |
5 | Maintainer: Martin Imobersteg <imm@gmx.ch> | 5 | Maintainer: Martin Imobersteg <imm@gmx.ch> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Depends: task-opie-minimal | 7 | Depends: task-opie-minimal |
8 | Description: Game: find the mines | 8 | Description: Game: find the mines |
9 | A game for the Opie environment. | 9 | A game for the Opie environment. |
10 | Version: $QPE_VERSION$EXTRAVERSION | 10 | Version: $QPE_VERSION$EXTRAVERSION |
diff --git a/noncore/games/parashoot/interface.cpp b/noncore/games/parashoot/interface.cpp index db98720..a40426d 100644 --- a/noncore/games/parashoot/interface.cpp +++ b/noncore/games/parashoot/interface.cpp | |||
@@ -1,247 +1,250 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "interface.h" | 21 | #include "interface.h" |
22 | #include "man.h" | 22 | #include "man.h" |
23 | 23 | ||
24 | #include <qpe/resource.h> | 24 | #include <qpe/resource.h> |
25 | #include <qpe/qpeapplication.h> | ||
25 | 26 | ||
26 | #include <qlabel.h> | 27 | #include <qlabel.h> |
27 | #include <qmessagebox.h> | 28 | #include <qmessagebox.h> |
28 | #include <qapplication.h> | 29 | #include <qapplication.h> |
29 | #include <qstyle.h> | 30 | #include <qstyle.h> |
30 | #include <qpe/qpetoolbar.h> | 31 | #include <qpe/qpetoolbar.h> |
31 | #include <qtoolbutton.h> | 32 | #include <qtoolbutton.h> |
32 | 33 | ||
33 | ParaShoot::ParaShoot(QWidget* parent, const char* name, WFlags f) : | 34 | ParaShoot::ParaShoot(QWidget* parent, const char* name, WFlags f) : |
34 | QMainWindow(parent,name,f), | 35 | QMainWindow(parent,name,f), |
35 | canvas(232, 258), | 36 | canvas(232, 258), |
36 | fanfare("level_up"), | 37 | fanfare("level_up"), |
37 | score(0) | 38 | score(0) |
38 | { | 39 | { |
40 | QPEApplication::grabKeyboard(); | ||
41 | QPEApplication::setInputMethodHint(this, QPEApplication::AlwaysOff ); | ||
39 | canvas.setAdvancePeriod(80); | 42 | canvas.setAdvancePeriod(80); |
40 | QPixmap bg = Resource::loadPixmap("parashoot/sky"); | 43 | QPixmap bg = Resource::loadPixmap("parashoot/sky"); |
41 | canvas.setBackgroundPixmap(bg); | 44 | canvas.setBackgroundPixmap(bg); |
42 | 45 | ||
43 | pb = new QCanvasView(&canvas, this); | 46 | pb = new QCanvasView(&canvas, this); |
44 | pb->setFocus(); | 47 | pb->setFocus(); |
45 | 48 | ||
46 | setToolBarsMovable( FALSE ); | 49 | setToolBarsMovable( FALSE ); |
47 | 50 | ||
48 | QToolBar* toolbar = new QToolBar(this); | 51 | QToolBar* toolbar = new QToolBar(this); |
49 | toolbar->setHorizontalStretchable( TRUE ); | 52 | toolbar->setHorizontalStretchable( TRUE ); |
50 | 53 | ||
51 | setCaption( tr("ParaShoot") ); | 54 | setCaption( tr("ParaShoot") ); |
52 | QPixmap newicon = Resource::loadPixmap("parashoot/manicon"); | 55 | QPixmap newicon = Resource::loadPixmap("parashoot/manicon"); |
53 | setIcon(newicon); | 56 | setIcon(newicon); |
54 | new QToolButton(newicon, tr("New Game"), 0, | 57 | new QToolButton(newicon, tr("New Game"), 0, |
55 | this, SLOT(newGame()), toolbar, "New Game"); | 58 | this, SLOT(newGame()), toolbar, "New Game"); |
56 | 59 | ||
57 | levelscore = new QLabel(toolbar); | 60 | levelscore = new QLabel(toolbar); |
58 | levelscore->setBackgroundMode( PaletteButton ); | 61 | levelscore->setBackgroundMode( PaletteButton ); |
59 | levelscore->setAlignment( AlignRight | AlignVCenter | ExpandTabs ); | 62 | levelscore->setAlignment( AlignRight | AlignVCenter | ExpandTabs ); |
60 | toolbar->setStretchableWidget( levelscore ); | 63 | toolbar->setStretchableWidget( levelscore ); |
61 | showScore(0,0); | 64 | showScore(0,0); |
62 | 65 | ||
63 | setCentralWidget(pb); | 66 | setCentralWidget(pb); |
64 | 67 | ||
65 | autoDropTimer = new QTimer(this); | 68 | autoDropTimer = new QTimer(this); |
66 | connect (autoDropTimer, SIGNAL(timeout()), this, SLOT(play()) ); | 69 | connect (autoDropTimer, SIGNAL(timeout()), this, SLOT(play()) ); |
67 | 70 | ||
68 | pauseTimer = new QTimer(this); | 71 | pauseTimer = new QTimer(this); |
69 | connect(pauseTimer, SIGNAL(timeout()), this, SLOT(wait()) ); | 72 | connect(pauseTimer, SIGNAL(timeout()), this, SLOT(wait()) ); |
70 | 73 | ||
71 | setFocusPolicy(StrongFocus); | 74 | setFocusPolicy(StrongFocus); |
72 | 75 | ||
73 | newGame(); | 76 | newGame(); |
74 | } | 77 | } |
75 | 78 | ||
76 | 79 | ||
77 | void ParaShoot::resizeEvent(QResizeEvent *) | 80 | void ParaShoot::resizeEvent(QResizeEvent *) |
78 | { | 81 | { |
79 | QSize s = centralWidget()->size(); | 82 | QSize s = centralWidget()->size(); |
80 | int fw = style().defaultFrameWidth(); | 83 | int fw = style().defaultFrameWidth(); |
81 | canvas.resize( s.width() - fw - 2, s.height() - fw - 2); | 84 | canvas.resize( s.width() - fw - 2, s.height() - fw - 2); |
82 | } | 85 | } |
83 | 86 | ||
84 | 87 | ||
85 | void ParaShoot::showScore( int score, int level ) | 88 | void ParaShoot::showScore( int score, int level ) |
86 | { | 89 | { |
87 | levelscore->setText(tr(" Level: %1 Score: %2 ").arg(score).arg(level) ); | 90 | levelscore->setText(tr(" Level: %1 Score: %2 ").arg(score).arg(level) ); |
88 | } | 91 | } |
89 | 92 | ||
90 | 93 | ||
91 | void ParaShoot::newGame() | 94 | void ParaShoot::newGame() |
92 | { | 95 | { |
93 | clear(); | 96 | clear(); |
94 | if (pauseTimer->isActive()) | 97 | if (pauseTimer->isActive()) |
95 | pauseTimer->stop(); | 98 | pauseTimer->stop(); |
96 | clear(); | 99 | clear(); |
97 | Man::setManCount(0); | 100 | Man::setManCount(0); |
98 | score = 0; | 101 | score = 0; |
99 | Bullet::setShotCount(0); | 102 | Bullet::setShotCount(0); |
100 | Bullet::setNobullets(0); | 103 | Bullet::setNobullets(0); |
101 | nomen = 2; | 104 | nomen = 2; |
102 | Bullet::setLimit(nomen); | 105 | Bullet::setLimit(nomen); |
103 | level = 0; | 106 | level = 0; |
104 | updatespeed = 80; | 107 | updatespeed = 80; |
105 | showScore(0,0); | 108 | showScore(0,0); |
106 | gamestopped = false; | 109 | gamestopped = false; |
107 | Helicopter::deleteAll(); | 110 | Helicopter::deleteAll(); |
108 | waitover = true; | 111 | waitover = true; |
109 | base = new Base(&canvas); | 112 | base = new Base(&canvas); |
110 | cannon = new Cannon(&canvas); | 113 | cannon = new Cannon(&canvas); |
111 | connect( cannon, SIGNAL(score(int)), this, SLOT(increaseScore(int))); | 114 | connect( cannon, SIGNAL(score(int)), this, SLOT(increaseScore(int))); |
112 | autoDropTimer->start(100); | 115 | autoDropTimer->start(100); |
113 | } | 116 | } |
114 | 117 | ||
115 | 118 | ||
116 | void ParaShoot::clear() | 119 | void ParaShoot::clear() |
117 | { | 120 | { |
118 | autoDropTimer->stop(); | 121 | autoDropTimer->stop(); |
119 | // QCanvasItem* item; | 122 | // QCanvasItem* item; |
120 | QCanvasItemList l = canvas.allItems(); | 123 | QCanvasItemList l = canvas.allItems(); |
121 | for (QCanvasItemList::Iterator it=l.begin(); it!=l.end(); ++it) { | 124 | for (QCanvasItemList::Iterator it=l.begin(); it!=l.end(); ++it) { |
122 | delete *it; | 125 | delete *it; |
123 | } | 126 | } |
124 | } | 127 | } |
125 | 128 | ||
126 | void ParaShoot::gameOver() | 129 | void ParaShoot::gameOver() |
127 | { | 130 | { |
128 | QCanvasItem* item; | 131 | QCanvasItem* item; |
129 | QCanvasItemList l = canvas.allItems(); | 132 | QCanvasItemList l = canvas.allItems(); |
130 | for (QCanvasItemList::Iterator it=l.begin(); it!=l.end(); ++it) { | 133 | for (QCanvasItemList::Iterator it=l.begin(); it!=l.end(); ++it) { |
131 | item = *it; | 134 | item = *it; |
132 | if ((item->rtti()==1500) || (item->rtti()==1600) || item->rtti()==1900) | 135 | if ((item->rtti()==1500) || (item->rtti()==1600) || item->rtti()==1900) |
133 | item->setAnimated(false); | 136 | item->setAnimated(false); |
134 | } | 137 | } |
135 | autoDropTimer->stop(); | 138 | autoDropTimer->stop(); |
136 | Helicopter::silenceAll(); | 139 | Helicopter::silenceAll(); |
137 | 140 | ||
138 | int shots = Bullet::getShotCount(); | 141 | int shots = Bullet::getShotCount(); |
139 | 142 | ||
140 | int shotsFired = cannon->shotsFired(); | 143 | int shotsFired = cannon->shotsFired(); |
141 | if ( shotsFired == 0 ) | 144 | if ( shotsFired == 0 ) |
142 | shotsFired = 1; | 145 | shotsFired = 1; |
143 | QCanvasText* gameover = new QCanvasText( | 146 | QCanvasText* gameover = new QCanvasText( |
144 | tr( " GAME OVER!\n" | 147 | tr( " GAME OVER!\n" |
145 | " Your Score: %1\n" | 148 | " Your Score: %1\n" |
146 | " Parachuters Killed: %2\n" | 149 | " Parachuters Killed: %2\n" |
147 | " Accuracy: %3% " ).arg(score).arg(shots).arg(shots * 100 / shotsFired ), | 150 | " Accuracy: %3% " ).arg(score).arg(shots).arg(shots * 100 / shotsFired ), |
148 | &canvas); | 151 | &canvas); |
149 | gameover->setColor(red); | 152 | gameover->setColor(red); |
150 | gameover->setFont( QFont("times", 18, QFont::Bold) ); | 153 | gameover->setFont( QFont("times", 18, QFont::Bold) ); |
151 | gameover->move(canvas.width()/2 -110, canvas.height()/2 -50); | 154 | gameover->move(canvas.width()/2 -110, canvas.height()/2 -50); |
152 | gameover->setZ(500); | 155 | gameover->setZ(500); |
153 | gameover->show(); | 156 | gameover->show(); |
154 | gamestopped = true; | 157 | gamestopped = true; |
155 | waitover = false; | 158 | waitover = false; |
156 | pauseTimer->start(3000); | 159 | pauseTimer->start(3000); |
157 | } | 160 | } |
158 | 161 | ||
159 | void ParaShoot::wait() | 162 | void ParaShoot::wait() |
160 | { | 163 | { |
161 | waitover = true; | 164 | waitover = true; |
162 | pauseTimer->stop(); | 165 | pauseTimer->stop(); |
163 | } | 166 | } |
164 | 167 | ||
165 | void ParaShoot::play() | 168 | void ParaShoot::play() |
166 | { | 169 | { |
167 | if (Man::getManCount() < nomen ) { | 170 | if (Man::getManCount() < nomen ) { |
168 | new Man(&canvas); | 171 | new Man(&canvas); |
169 | } | 172 | } |
170 | if (Base::baseDestroyed()) { | 173 | if (Base::baseDestroyed()) { |
171 | gameOver(); | 174 | gameOver(); |
172 | return; | 175 | return; |
173 | } | 176 | } |
174 | } | 177 | } |
175 | 178 | ||
176 | void ParaShoot::increaseScore(int x) | 179 | void ParaShoot::increaseScore(int x) |
177 | { | 180 | { |
178 | score += x; | 181 | score += x; |
179 | if ( score / 150 != (score-x) / 150 ) | 182 | if ( score / 150 != (score-x) / 150 ) |
180 | levelUp(); | 183 | levelUp(); |
181 | showScore(level,score); | 184 | showScore(level,score); |
182 | } | 185 | } |
183 | 186 | ||
184 | void ParaShoot::levelUp() | 187 | void ParaShoot::levelUp() |
185 | { | 188 | { |
186 | level++; | 189 | level++; |
187 | int stage = level % 3; | 190 | int stage = level % 3; |
188 | switch(stage) { | 191 | switch(stage) { |
189 | case 0: | 192 | case 0: |
190 | nomen++; | 193 | nomen++; |
191 | Bullet::setLimit(nomen); | 194 | Bullet::setLimit(nomen); |
192 | fanfare.play(); | 195 | fanfare.play(); |
193 | break; | 196 | break; |
194 | case 1: | 197 | case 1: |
195 | new Helicopter(&canvas); | 198 | new Helicopter(&canvas); |
196 | break; | 199 | break; |
197 | case 2: | 200 | case 2: |
198 | moveFaster(); | 201 | moveFaster(); |
199 | fanfare.play(); | 202 | fanfare.play(); |
200 | break; | 203 | break; |
201 | default: return; | 204 | default: return; |
202 | } | 205 | } |
203 | } | 206 | } |
204 | 207 | ||
205 | void ParaShoot::moveFaster() | 208 | void ParaShoot::moveFaster() |
206 | { | 209 | { |
207 | if (updatespeed > 50) | 210 | if (updatespeed > 50) |
208 | updatespeed = updatespeed-5; | 211 | updatespeed = updatespeed-5; |
209 | else | 212 | else |
210 | updatespeed = updatespeed-3; | 213 | updatespeed = updatespeed-3; |
211 | canvas.setAdvancePeriod(updatespeed); | 214 | canvas.setAdvancePeriod(updatespeed); |
212 | } | 215 | } |
213 | 216 | ||
214 | void ParaShoot::keyPressEvent(QKeyEvent* event) | 217 | void ParaShoot::keyPressEvent(QKeyEvent* event) |
215 | { | 218 | { |
216 | if (gamestopped) { | 219 | if (gamestopped) { |
217 | if (waitover) | 220 | if (waitover) |
218 | newGame(); | 221 | newGame(); |
219 | else | 222 | else |
220 | return; | 223 | return; |
221 | } else { | 224 | } else { |
222 | switch(event->key()) { | 225 | switch(event->key()) { |
223 | case Key_Up: | 226 | case Key_Up: |
224 | case Key_F1: | 227 | case Key_F1: |
225 | case Key_F9: | 228 | case Key_F9: |
226 | case Key_Space: | 229 | case Key_Space: |
227 | cannon->shoot(); | 230 | cannon->shoot(); |
228 | break; | 231 | break; |
229 | case Key_Left: | 232 | case Key_Left: |
230 | cannon->pointCannon(Cannon::Left); | 233 | cannon->pointCannon(Cannon::Left); |
231 | lastcannonkey=Key_Left; | 234 | lastcannonkey=Key_Left; |
232 | break; | 235 | break; |
233 | case Key_Right: | 236 | case Key_Right: |
234 | cannon->pointCannon(Cannon::Right); | 237 | cannon->pointCannon(Cannon::Right); |
235 | lastcannonkey=Key_Right; | 238 | lastcannonkey=Key_Right; |
236 | break; | 239 | break; |
237 | default: | 240 | default: |
238 | return; | 241 | return; |
239 | } | 242 | } |
240 | } | 243 | } |
241 | } | 244 | } |
242 | 245 | ||
243 | void ParaShoot::keyReleaseEvent(QKeyEvent* event) | 246 | void ParaShoot::keyReleaseEvent(QKeyEvent* event) |
244 | { | 247 | { |
245 | if ( lastcannonkey == event->key() ) | 248 | if ( lastcannonkey == event->key() ) |
246 | cannon->pointCannon(Cannon::NoDir); | 249 | cannon->pointCannon(Cannon::NoDir); |
247 | } | 250 | } |
diff --git a/noncore/games/parashoot/interface.h b/noncore/games/parashoot/interface.h index 3f36d0b..5abbe0b 100644 --- a/noncore/games/parashoot/interface.h +++ b/noncore/games/parashoot/interface.h | |||
@@ -9,64 +9,65 @@ | |||
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "cannon.h" | 21 | #include "cannon.h" |
22 | #include "base.h" | 22 | #include "base.h" |
23 | #include "helicopter.h" | 23 | #include "helicopter.h" |
24 | 24 | ||
25 | #include <qpe/sound.h> | 25 | #include <qpe/sound.h> |
26 | 26 | ||
27 | #include <qmainwindow.h> | 27 | #include <qmainwindow.h> |
28 | #include <qtimer.h> | 28 | #include <qtimer.h> |
29 | #include <qlabel.h> | 29 | #include <qlabel.h> |
30 | 30 | ||
31 | class QCanvas; | 31 | class QCanvas; |
32 | class Helicopter; | 32 | class Helicopter; |
33 | 33 | ||
34 | //enum Direction{ | 34 | //enum Direction{ |
35 | // left, right, up, down }; | 35 | // left, right, up, down }; |
36 | 36 | ||
37 | class ParaShoot : public QMainWindow { | 37 | class ParaShoot : public QMainWindow { |
38 | Q_OBJECT | 38 | Q_OBJECT |
39 | 39 | ||
40 | public: | 40 | public: |
41 | static QString appName() { return QString::fromLatin1("parashoot"); } | ||
41 | ParaShoot(QWidget* parent=0, const char* name=0, WFlags f=0); | 42 | ParaShoot(QWidget* parent=0, const char* name=0, WFlags f=0); |
42 | 43 | ||
43 | void clear(); | 44 | void clear(); |
44 | void gameOver(); | 45 | void gameOver(); |
45 | int mancount; | 46 | int mancount; |
46 | void levelUp(); | 47 | void levelUp(); |
47 | void moveFaster(); | 48 | void moveFaster(); |
48 | 49 | ||
49 | protected: | 50 | protected: |
50 | virtual void keyPressEvent(QKeyEvent*); | 51 | virtual void keyPressEvent(QKeyEvent*); |
51 | virtual void keyReleaseEvent(QKeyEvent*); | 52 | virtual void keyReleaseEvent(QKeyEvent*); |
52 | virtual void resizeEvent(QResizeEvent *e); | 53 | virtual void resizeEvent(QResizeEvent *e); |
53 | 54 | ||
54 | private slots: | 55 | private slots: |
55 | void increaseScore(int); | 56 | void increaseScore(int); |
56 | void newGame(); | 57 | void newGame(); |
57 | void play(); | 58 | void play(); |
58 | void wait(); | 59 | void wait(); |
59 | 60 | ||
60 | private: | 61 | private: |
61 | void showScore( int score, int level ); | 62 | void showScore( int score, int level ); |
62 | QCanvasView* pb; | 63 | QCanvasView* pb; |
63 | QCanvas canvas; | 64 | QCanvas canvas; |
64 | Cannon* cannon; | 65 | Cannon* cannon; |
65 | Base* base; | 66 | Base* base; |
66 | QCanvasText* gameover; | 67 | QCanvasText* gameover; |
67 | QLabel* levelscore; | 68 | QLabel* levelscore; |
68 | int nomen; | 69 | int nomen; |
69 | int level; | 70 | int level; |
70 | int oldscore; | 71 | int oldscore; |
71 | int updatespeed; | 72 | int updatespeed; |
72 | QTimer* autoDropTimer; | 73 | QTimer* autoDropTimer; |
diff --git a/noncore/games/parashoot/main.cpp b/noncore/games/parashoot/main.cpp index 60eea18..ee36d26 100644 --- a/noncore/games/parashoot/main.cpp +++ b/noncore/games/parashoot/main.cpp | |||
@@ -1,36 +1,27 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "interface.h" | 21 | #include "interface.h" |
22 | 22 | ||
23 | #include <qpe/qpeapplication.h> | 23 | #include <qpe/qpeapplication.h> |
24 | #include <opie/oapplicationfactory.h> | ||
24 | 25 | ||
25 | int main(int argc, char **argv) | 26 | OPIE_EXPORT_APP( OApplicationFactory<ParaShoot> ) |
26 | { | ||
27 | QPEApplication app(argc,argv); | ||
28 | 27 | ||
29 | QPEApplication::grabKeyboard(); | ||
30 | |||
31 | ParaShoot m; | ||
32 | QPEApplication::setInputMethodHint( &m, QPEApplication::AlwaysOff ); | ||
33 | app.showMainWidget(&m); | ||
34 | |||
35 | return app.exec(); | ||
36 | } | ||
diff --git a/noncore/games/parashoot/opie-parashoot.control b/noncore/games/parashoot/opie-parashoot.control index 758d24d..139dd3c 100644 --- a/noncore/games/parashoot/opie-parashoot.control +++ b/noncore/games/parashoot/opie-parashoot.control | |||
@@ -1,10 +1,10 @@ | |||
1 | Package: opie-parashoot | 1 | Package: opie-parashoot |
2 | Files: bin/parashoot apps/Games/parashoot.desktop pics/parashoot | 2 | Files: plugins/application/libparashoot.so* bin/parashoot apps/Games/parashoot.desktop pics/parashoot |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/games | 4 | Section: opie/games |
5 | Maintainer: Martin Imobersteg <imm@gmx.ch> | 5 | Maintainer: Martin Imobersteg <imm@gmx.ch> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Depends: task-opie-minimal | 7 | Depends: task-opie-minimal |
8 | Description: Game: shoot the parachutists | 8 | Description: Game: shoot the parachutists |
9 | A game for the Opie environment. | 9 | A game for the Opie environment. |
10 | Version: $QPE_VERSION$EXTRAVERSION | 10 | Version: $QPE_VERSION$EXTRAVERSION |
diff --git a/noncore/games/parashoot/parashoot.pro b/noncore/games/parashoot/parashoot.pro index c2746f9..f5d103a 100644 --- a/noncore/games/parashoot/parashoot.pro +++ b/noncore/games/parashoot/parashoot.pro | |||
@@ -1,11 +1,11 @@ | |||
1 | TEMPLATE= app | 1 | CONFIG += qt warn_on release quick-app |
2 | CONFIG += qt warn_on release | ||
3 | DESTDIR = $(OPIEDIR)/bin | ||
4 | HEADERS = interface.h man.h cannon.h base.h bullet.h helicopter.h | 2 | HEADERS = interface.h man.h cannon.h base.h bullet.h helicopter.h |
5 | SOURCES = main.cpp interface.cpp man.cpp cannon.cpp base.cpp bullet.cpp helicopter.cpp | 3 | SOURCES = main.cpp interface.cpp man.cpp cannon.cpp base.cpp bullet.cpp helicopter.cpp |
6 | TARGET = parashoot | 4 | TARGET = parashoot |
7 | INCLUDEPATH += $(OPIEDIR)/include | 5 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 6 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 7 | LIBS += -lqpe |
10 | 8 | ||
9 | |||
10 | |||
11 | include ( $(OPIEDIR)/include.pro ) | 11 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/qasteroids/main.cpp b/noncore/games/qasteroids/main.cpp index 7d1682c..c762990 100644 --- a/noncore/games/qasteroids/main.cpp +++ b/noncore/games/qasteroids/main.cpp | |||
@@ -1,36 +1,27 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "toplevel.h" | 21 | #include "toplevel.h" |
22 | 22 | ||
23 | #include <qpe/qpeapplication.h> | 23 | #include <qpe/qpeapplication.h> |
24 | #include <opie/oapplicationfactory.h> | ||
24 | 25 | ||
25 | int main( int argc, char *argv[] ) | ||
26 | { | ||
27 | QPEApplication app( argc, argv ); | ||
28 | |||
29 | QPEApplication::grabKeyboard(); | ||
30 | |||
31 | KAstTopLevel *mainWidget = new KAstTopLevel(); | ||
32 | app.showMainWidget( mainWidget ); | ||
33 | |||
34 | app.exec(); | ||
35 | } | ||
36 | 26 | ||
27 | OPIE_EXPORT_APP( OApplicationFactory<KAstTopLevel> ) | ||
diff --git a/noncore/games/qasteroids/opie-qasteroids.control b/noncore/games/qasteroids/opie-qasteroids.control index 25a49b4..8764578 100644 --- a/noncore/games/qasteroids/opie-qasteroids.control +++ b/noncore/games/qasteroids/opie-qasteroids.control | |||
@@ -1,10 +1,10 @@ | |||
1 | Package: opie-qasteroids | 1 | Package: opie-qasteroids |
2 | Files: bin/qasteroids apps/Games/qasteroids.desktop pics/qasteroids/* | 2 | Files: plugins/application/libqasteroids.so* bin/qasteroids apps/Games/qasteroids.desktop pics/qasteroids/* |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/games | 4 | Section: opie/games |
5 | Maintainer: Martin Jones <mjones@trolltech.com> | 5 | Maintainer: Martin Jones <mjones@trolltech.com> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Depends: task-opie-minimal | 7 | Depends: task-opie-minimal |
8 | Description: Game: shoot the asteroids | 8 | Description: Game: shoot the asteroids |
9 | A game for the Opie environment. | 9 | A game for the Opie environment. |
10 | Version: $QPE_VERSION$EXTRAVERSION | 10 | Version: $QPE_VERSION$EXTRAVERSION |
diff --git a/noncore/games/qasteroids/qasteroids.pro b/noncore/games/qasteroids/qasteroids.pro index 1a3a8d5..aafc701 100644 --- a/noncore/games/qasteroids/qasteroids.pro +++ b/noncore/games/qasteroids/qasteroids.pro | |||
@@ -1,11 +1,11 @@ | |||
1 | TEMPLATE= app | 1 | CONFIG += qt warn_on release quick-app |
2 | CONFIG += qt warn_on release | ||
3 | DESTDIR = $(OPIEDIR)/bin | ||
4 | HEADERS = ledmeter.h sprites.h toplevel.h view.h | 2 | HEADERS = ledmeter.h sprites.h toplevel.h view.h |
5 | SOURCES = ledmeter.cpp toplevel.cpp view.cpp main.cpp | 3 | SOURCES = ledmeter.cpp toplevel.cpp view.cpp main.cpp |
6 | TARGET = qasteroids | 4 | TARGET = qasteroids |
7 | INCLUDEPATH += $(OPIEDIR)/include | 5 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 6 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 7 | LIBS += -lqpe |
10 | 8 | ||
9 | |||
10 | |||
11 | include ( $(OPIEDIR)/include.pro ) | 11 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/qasteroids/toplevel.cpp b/noncore/games/qasteroids/toplevel.cpp index 71daf60..c4fea89 100644 --- a/noncore/games/qasteroids/toplevel.cpp +++ b/noncore/games/qasteroids/toplevel.cpp | |||
@@ -40,89 +40,92 @@ | |||
40 | 40 | ||
41 | #define SB_SCORE1 | 41 | #define SB_SCORE1 |
42 | #define SB_LEVEL2 | 42 | #define SB_LEVEL2 |
43 | #define SB_SHIPS3 | 43 | #define SB_SHIPS3 |
44 | 44 | ||
45 | struct SLevel | 45 | struct SLevel |
46 | { | 46 | { |
47 | int nrocks; | 47 | int nrocks; |
48 | double rockSpeed; | 48 | double rockSpeed; |
49 | }; | 49 | }; |
50 | 50 | ||
51 | #define MAX_LEVELS16 | 51 | #define MAX_LEVELS16 |
52 | 52 | ||
53 | SLevel levels[MAX_LEVELS] = | 53 | SLevel levels[MAX_LEVELS] = |
54 | { | 54 | { |
55 | { 1, 0.4 }, | 55 | { 1, 0.4 }, |
56 | { 1, 0.6 }, | 56 | { 1, 0.6 }, |
57 | { 2, 0.5 }, | 57 | { 2, 0.5 }, |
58 | { 2, 0.7 }, | 58 | { 2, 0.7 }, |
59 | { 2, 0.8 }, | 59 | { 2, 0.8 }, |
60 | { 3, 0.6 }, | 60 | { 3, 0.6 }, |
61 | { 3, 0.7 }, | 61 | { 3, 0.7 }, |
62 | { 3, 0.8 }, | 62 | { 3, 0.8 }, |
63 | { 4, 0.6 }, | 63 | { 4, 0.6 }, |
64 | { 4, 0.7 }, | 64 | { 4, 0.7 }, |
65 | { 4, 0.8 }, | 65 | { 4, 0.8 }, |
66 | { 5, 0.7 }, | 66 | { 5, 0.7 }, |
67 | { 5, 0.8 }, | 67 | { 5, 0.8 }, |
68 | { 5, 0.9 }, | 68 | { 5, 0.9 }, |
69 | { 5, 1.0 } | 69 | { 5, 1.0 } |
70 | }; | 70 | }; |
71 | 71 | ||
72 | const char *soundEvents[] = | 72 | const char *soundEvents[] = |
73 | { | 73 | { |
74 | "ShipDestroyed", | 74 | "ShipDestroyed", |
75 | "RockDestroyed", | 75 | "RockDestroyed", |
76 | 0 | 76 | 0 |
77 | }; | 77 | }; |
78 | 78 | ||
79 | const char *soundDefaults[] = | 79 | const char *soundDefaults[] = |
80 | { | 80 | { |
81 | "Explosion.wav", | 81 | "Explosion.wav", |
82 | "ploop.wav", | 82 | "ploop.wav", |
83 | 0 | 83 | 0 |
84 | }; | 84 | }; |
85 | 85 | ||
86 | 86 | ||
87 | KAstTopLevel::KAstTopLevel( QWidget *parent, const char *_name ) | 87 | KAstTopLevel::KAstTopLevel( QWidget *parent, const char *_name, WFlags fl ) |
88 | : QMainWindow( parent, _name ) | 88 | : QMainWindow( parent, _name, fl ) |
89 | { | 89 | { |
90 | setCaption( tr("Asteroids") ); | 90 | setCaption( tr("Asteroids") ); |
91 | |||
92 | QPEApplication::grabKeyboard(); | ||
93 | |||
91 | QWidget *border = new QWidget( this ); | 94 | QWidget *border = new QWidget( this ); |
92 | border->setBackgroundColor( black ); | 95 | border->setBackgroundColor( black ); |
93 | setCentralWidget( border ); | 96 | setCentralWidget( border ); |
94 | 97 | ||
95 | QVBoxLayout *borderLayout = new QVBoxLayout( border ); | 98 | QVBoxLayout *borderLayout = new QVBoxLayout( border ); |
96 | 99 | ||
97 | QWidget *mainWin = new QWidget( border ); | 100 | QWidget *mainWin = new QWidget( border ); |
98 | borderLayout->addWidget( mainWin, 2, AlignHCenter ); | 101 | borderLayout->addWidget( mainWin, 2, AlignHCenter ); |
99 | 102 | ||
100 | view = new KAsteroidsView( mainWin ); | 103 | view = new KAsteroidsView( mainWin ); |
101 | connect( view, SIGNAL( shipKilled() ), SLOT( slotShipKilled() ) ); | 104 | connect( view, SIGNAL( shipKilled() ), SLOT( slotShipKilled() ) ); |
102 | connect( view, SIGNAL( rockHit(int) ), SLOT( slotRockHit(int) ) ); | 105 | connect( view, SIGNAL( rockHit(int) ), SLOT( slotRockHit(int) ) ); |
103 | connect( view, SIGNAL( rocksRemoved() ), SLOT( slotRocksRemoved() ) ); | 106 | connect( view, SIGNAL( rocksRemoved() ), SLOT( slotRocksRemoved() ) ); |
104 | connect( view, SIGNAL( updateVitals() ), SLOT( slotUpdateVitals() ) ); | 107 | connect( view, SIGNAL( updateVitals() ), SLOT( slotUpdateVitals() ) ); |
105 | 108 | ||
106 | QVBoxLayout *vb = new QVBoxLayout( mainWin ); | 109 | QVBoxLayout *vb = new QVBoxLayout( mainWin ); |
107 | QHBoxLayout *hb = new QHBoxLayout; | 110 | QHBoxLayout *hb = new QHBoxLayout; |
108 | QHBoxLayout *hbd = new QHBoxLayout; | 111 | QHBoxLayout *hbd = new QHBoxLayout; |
109 | vb->addLayout( hb ); | 112 | vb->addLayout( hb ); |
110 | 113 | ||
111 | QFont labelFont( "helvetica", 12 ); | 114 | QFont labelFont( "helvetica", 12 ); |
112 | QColorGroup grp( darkGreen, black, QColor( 128, 128, 128 ), | 115 | QColorGroup grp( darkGreen, black, QColor( 128, 128, 128 ), |
113 | QColor( 64, 64, 64 ), black, darkGreen, black ); | 116 | QColor( 64, 64, 64 ), black, darkGreen, black ); |
114 | QPalette pal( grp, grp, grp ); | 117 | QPalette pal( grp, grp, grp ); |
115 | 118 | ||
116 | mainWin->setPalette( pal ); | 119 | mainWin->setPalette( pal ); |
117 | 120 | ||
118 | QLabel *label; | 121 | QLabel *label; |
119 | label = new QLabel( tr("Score"), mainWin ); | 122 | label = new QLabel( tr("Score"), mainWin ); |
120 | label->setFont( labelFont ); | 123 | label->setFont( labelFont ); |
121 | label->setPalette( pal ); | 124 | label->setPalette( pal ); |
122 | // label->setFixedWidth( label->sizeHint().width() ); | 125 | // label->setFixedWidth( label->sizeHint().width() ); |
123 | hb->addWidget( label ); | 126 | hb->addWidget( label ); |
124 | 127 | ||
125 | scoreLCD = new QLCDNumber( 5, mainWin ); | 128 | scoreLCD = new QLCDNumber( 5, mainWin ); |
126 | scoreLCD->setFrameStyle( QFrame::NoFrame ); | 129 | scoreLCD->setFrameStyle( QFrame::NoFrame ); |
127 | scoreLCD->setSegmentStyle( QLCDNumber::Flat ); | 130 | scoreLCD->setSegmentStyle( QLCDNumber::Flat ); |
128 | scoreLCD->setFixedHeight( 16 ); | 131 | scoreLCD->setFixedHeight( 16 ); |
@@ -228,65 +231,65 @@ KAstTopLevel::KAstTopLevel( QWidget *parent, const char *_name ) | |||
228 | 231 | ||
229 | hbd->addStretch( 1 ); | 232 | hbd->addStretch( 1 ); |
230 | 233 | ||
231 | label = new QLabel( tr( "Fuel" ), mainWin ); | 234 | label = new QLabel( tr( "Fuel" ), mainWin ); |
232 | label->setFont( smallFont ); | 235 | label->setFont( smallFont ); |
233 | label->setFixedWidth( label->sizeHint().width() + 5 ); | 236 | label->setFixedWidth( label->sizeHint().width() + 5 ); |
234 | label->setPalette( pal ); | 237 | label->setPalette( pal ); |
235 | hbd->addWidget( label ); | 238 | hbd->addWidget( label ); |
236 | 239 | ||
237 | powerMeter = new KALedMeter( mainWin ); | 240 | powerMeter = new KALedMeter( mainWin ); |
238 | powerMeter->setFrameStyle( QFrame::Box | QFrame::Plain ); | 241 | powerMeter->setFrameStyle( QFrame::Box | QFrame::Plain ); |
239 | powerMeter->setRange( MAX_POWER_LEVEL ); | 242 | powerMeter->setRange( MAX_POWER_LEVEL ); |
240 | powerMeter->addColorRange( 10, darkRed ); | 243 | powerMeter->addColorRange( 10, darkRed ); |
241 | powerMeter->addColorRange( 20, QColor(160, 96, 0) ); | 244 | powerMeter->addColorRange( 20, QColor(160, 96, 0) ); |
242 | powerMeter->addColorRange( 70, darkGreen ); | 245 | powerMeter->addColorRange( 70, darkGreen ); |
243 | powerMeter->setCount( 15 ); | 246 | powerMeter->setCount( 15 ); |
244 | powerMeter->setPalette( pal ); | 247 | powerMeter->setPalette( pal ); |
245 | powerMeter->setFixedSize( 60, 12 ); | 248 | powerMeter->setFixedSize( 60, 12 ); |
246 | hbd->addWidget( powerMeter ); | 249 | hbd->addWidget( powerMeter ); |
247 | 250 | ||
248 | shipsRemain = 3; | 251 | shipsRemain = 3; |
249 | showHiscores = FALSE; | 252 | showHiscores = FALSE; |
250 | 253 | ||
251 | actions.insert( Qt::Key_Up, Thrust ); | 254 | actions.insert( Qt::Key_Up, Thrust ); |
252 | actions.insert( Qt::Key_Left, RotateLeft ); | 255 | actions.insert( Qt::Key_Left, RotateLeft ); |
253 | actions.insert( Qt::Key_Right, RotateRight ); | 256 | actions.insert( Qt::Key_Right, RotateRight ); |
254 | actions.insert( Qt::Key_Enter, Shoot ); | 257 | actions.insert( Qt::Key_Enter, Shoot ); |
255 | actions.insert( Qt::Key_Z, Teleport ); | 258 | actions.insert( Qt::Key_Z, Teleport ); |
256 | actions.insert( Qt::Key_Down, Brake ); | 259 | actions.insert( Qt::Key_Down, Brake ); |
257 | actions.insert( Qt::Key_P, Pause ); | 260 | actions.insert( Qt::Key_P, Pause ); |
258 | 261 | ||
259 | 262 | ||
260 | struct utsname name; /* check for embedix kernel running on the zaurus, if | 263 | struct utsname name; /* check for embedix kernel running on the zaurus, if |
261 | lineo change string, this break | 264 | lineo change string, this break |
262 | */ | 265 | */ |
263 | if (uname(&name) != -1) { | 266 | if (uname(&name) != -1) { |
264 | QString release=name.release; | 267 | QString release=name.release; |
265 | if(release.find("embedix",0,TRUE) !=-1) { | 268 | if(release.find("embedix",0,TRUE) !=-1) { |
266 | actions.insert( Key_F12, Launch ); | 269 | actions.insert( Key_F12, Launch ); |
267 | actions.insert( Key_F11, Shield ); | 270 | actions.insert( Key_F11, Shield ); |
268 | actions.insert( Key_F9, NewGame ); | 271 | actions.insert( Key_F9, NewGame ); |
269 | } else { | 272 | } else { |
270 | // ipaq | 273 | // ipaq |
271 | actions.insert( Key_F12, Shoot ); | 274 | actions.insert( Key_F12, Shoot ); |
272 | actions.insert( Key_F11, Shield ); | 275 | actions.insert( Key_F11, Shield ); |
273 | actions.insert( Key_F10, Launch ); | 276 | actions.insert( Key_F10, Launch ); |
274 | actions.insert( Key_F9, NewGame ); | 277 | actions.insert( Key_F9, NewGame ); |
275 | } | 278 | } |
276 | } | 279 | } |
277 | 280 | ||
278 | // actions.insert( Qt::Key_S, Shield ); | 281 | // actions.insert( Qt::Key_S, Shield ); |
279 | // actions.insert( Qt::Key_X, Brake ); | 282 | // actions.insert( Qt::Key_X, Brake ); |
280 | // actions.insert( Qt::Key_L, Launch ); | 283 | // actions.insert( Qt::Key_L, Launch ); |
281 | actions.insert( Qt::Key_Space, Shoot ); | 284 | actions.insert( Qt::Key_Space, Shoot ); |
282 | 285 | ||
283 | view->showText( tr( "Press Calendar to start playing" ), yellow ); | 286 | view->showText( tr( "Press Calendar to start playing" ), yellow ); |
284 | 287 | ||
285 | setFocusPolicy( StrongFocus ); | 288 | setFocusPolicy( StrongFocus ); |
286 | 289 | ||
287 | slotNewGame(); | 290 | slotNewGame(); |
288 | } | 291 | } |
289 | 292 | ||
290 | KAstTopLevel::~KAstTopLevel() | 293 | KAstTopLevel::~KAstTopLevel() |
291 | { | 294 | { |
292 | } | 295 | } |
@@ -366,65 +369,65 @@ void KAstTopLevel::keyReleaseEvent( QKeyEvent *event ) | |||
366 | view->thrust( FALSE ); | 369 | view->thrust( FALSE ); |
367 | break; | 370 | break; |
368 | 371 | ||
369 | case Shoot: | 372 | case Shoot: |
370 | view->shoot( FALSE ); | 373 | view->shoot( FALSE ); |
371 | break; | 374 | break; |
372 | 375 | ||
373 | case Brake: | 376 | case Brake: |
374 | view->brake( FALSE ); | 377 | view->brake( FALSE ); |
375 | break; | 378 | break; |
376 | 379 | ||
377 | case Shield: | 380 | case Shield: |
378 | view->setShield( FALSE ); | 381 | view->setShield( FALSE ); |
379 | break; | 382 | break; |
380 | 383 | ||
381 | case Teleport: | 384 | case Teleport: |
382 | view->teleport( FALSE ); | 385 | view->teleport( FALSE ); |
383 | break; | 386 | break; |
384 | 387 | ||
385 | case Launch: | 388 | case Launch: |
386 | if ( waitShip ) | 389 | if ( waitShip ) |
387 | { | 390 | { |
388 | view->newShip(); | 391 | view->newShip(); |
389 | waitShip = FALSE; | 392 | waitShip = FALSE; |
390 | view->hideText(); | 393 | view->hideText(); |
391 | } | 394 | } |
392 | else | 395 | else |
393 | { | 396 | { |
394 | event->ignore(); | 397 | event->ignore(); |
395 | return; | 398 | return; |
396 | } | 399 | } |
397 | break; | 400 | break; |
398 | 401 | ||
399 | case NewGame: | 402 | case NewGame: |
400 | slotNewGame(); | 403 | slotNewGame(); |
401 | break; | 404 | break; |
402 | /* | 405 | /* |
403 | case Pause: | 406 | case Pause: |
404 | { | 407 | { |
405 | view->pause( TRUE ); | 408 | view->pause( TRUE ); |
406 | QMessageBox::information( this, | 409 | QMessageBox::information( this, |
407 | tr("KAsteroids is paused"), | 410 | tr("KAsteroids is paused"), |
408 | tr("Paused") ); | 411 | tr("Paused") ); |
409 | view->pause( FALSE ); | 412 | view->pause( FALSE ); |
410 | } | 413 | } |
411 | break; | 414 | break; |
412 | */ | 415 | */ |
413 | default: | 416 | default: |
414 | event->ignore(); | 417 | event->ignore(); |
415 | return; | 418 | return; |
416 | } | 419 | } |
417 | 420 | ||
418 | event->accept(); | 421 | event->accept(); |
419 | } | 422 | } |
420 | 423 | ||
421 | void KAstTopLevel::showEvent( QShowEvent *e ) | 424 | void KAstTopLevel::showEvent( QShowEvent *e ) |
422 | { | 425 | { |
423 | QMainWindow::showEvent( e ); | 426 | QMainWindow::showEvent( e ); |
424 | view->pause( FALSE ); | 427 | view->pause( FALSE ); |
425 | setFocus(); | 428 | setFocus(); |
426 | } | 429 | } |
427 | 430 | ||
428 | void KAstTopLevel::hideEvent( QHideEvent *e ) | 431 | void KAstTopLevel::hideEvent( QHideEvent *e ) |
429 | { | 432 | { |
430 | QMainWindow::hideEvent( e ); | 433 | QMainWindow::hideEvent( e ); |
diff --git a/noncore/games/qasteroids/toplevel.h b/noncore/games/qasteroids/toplevel.h index 4e1ac9c..0270763 100644 --- a/noncore/games/qasteroids/toplevel.h +++ b/noncore/games/qasteroids/toplevel.h | |||
@@ -10,66 +10,68 @@ | |||
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************//* | 19 | **********************************************************************//* |
20 | * KAsteroids - Copyright (c) Martin R. Jones 1997 | 20 | * KAsteroids - Copyright (c) Martin R. Jones 1997 |
21 | * | 21 | * |
22 | * Part of the KDE project | 22 | * Part of the KDE project |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #ifndef __KAST_TOPLEVEL_H__ | 25 | #ifndef __KAST_TOPLEVEL_H__ |
26 | #define __KAST_TOPLEVEL_H__ | 26 | #define __KAST_TOPLEVEL_H__ |
27 | 27 | ||
28 | #include <qmainwindow.h> | 28 | #include <qmainwindow.h> |
29 | #include <qdict.h> | 29 | #include <qdict.h> |
30 | #include <qmap.h> | 30 | #include <qmap.h> |
31 | 31 | ||
32 | #include "view.h" | 32 | #include "view.h" |
33 | 33 | ||
34 | 34 | ||
35 | class KALedMeter; | 35 | class KALedMeter; |
36 | class QLCDNumber; | 36 | class QLCDNumber; |
37 | 37 | ||
38 | class KAstTopLevel : public QMainWindow | 38 | class KAstTopLevel : public QMainWindow |
39 | { | 39 | { |
40 | Q_OBJECT | 40 | Q_OBJECT |
41 | public: | 41 | public: |
42 | KAstTopLevel( QWidget *parent=0, const char *name=0 ); | 42 | KAstTopLevel( QWidget *parent=0, const char *name=0, WFlags fl = 0 ); |
43 | virtual ~KAstTopLevel(); | 43 | virtual ~KAstTopLevel(); |
44 | static QString appName() { return QString::fromLatin1("qasteroids"); } | ||
45 | |||
44 | 46 | ||
45 | private: | 47 | private: |
46 | void playSound( const char *snd ); | 48 | void playSound( const char *snd ); |
47 | void readSoundMapping(); | 49 | void readSoundMapping(); |
48 | void doStats(); | 50 | void doStats(); |
49 | 51 | ||
50 | protected: | 52 | protected: |
51 | virtual void showEvent( QShowEvent * ); | 53 | virtual void showEvent( QShowEvent * ); |
52 | virtual void hideEvent( QHideEvent * ); | 54 | virtual void hideEvent( QHideEvent * ); |
53 | virtual void keyPressEvent( QKeyEvent *event ); | 55 | virtual void keyPressEvent( QKeyEvent *event ); |
54 | virtual void keyReleaseEvent( QKeyEvent *event ); | 56 | virtual void keyReleaseEvent( QKeyEvent *event ); |
55 | virtual void focusInEvent( QFocusEvent *event ); | 57 | virtual void focusInEvent( QFocusEvent *event ); |
56 | virtual void focusOutEvent( QFocusEvent *event ); | 58 | virtual void focusOutEvent( QFocusEvent *event ); |
57 | 59 | ||
58 | private slots: | 60 | private slots: |
59 | void slotNewGame(); | 61 | void slotNewGame(); |
60 | 62 | ||
61 | void slotShipKilled(); | 63 | void slotShipKilled(); |
62 | void slotRockHit( int size ); | 64 | void slotRockHit( int size ); |
63 | void slotRocksRemoved(); | 65 | void slotRocksRemoved(); |
64 | 66 | ||
65 | void slotUpdateVitals(); | 67 | void slotUpdateVitals(); |
66 | 68 | ||
67 | private: | 69 | private: |
68 | KAsteroidsView *view; | 70 | KAsteroidsView *view; |
69 | QLCDNumber *scoreLCD; | 71 | QLCDNumber *scoreLCD; |
70 | QLCDNumber *levelLCD; | 72 | QLCDNumber *levelLCD; |
71 | QLCDNumber *shipsLCD; | 73 | QLCDNumber *shipsLCD; |
72 | 74 | ||
73 | QLCDNumber *teleportsLCD; | 75 | QLCDNumber *teleportsLCD; |
74 | // QLCDNumber *bombsLCD; | 76 | // QLCDNumber *bombsLCD; |
75 | QLCDNumber *brakesLCD; | 77 | QLCDNumber *brakesLCD; |
diff --git a/noncore/games/snake/interface.cpp b/noncore/games/snake/interface.cpp index f1227cb..2c60693 100644 --- a/noncore/games/snake/interface.cpp +++ b/noncore/games/snake/interface.cpp | |||
@@ -1,67 +1,69 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "interface.h" | 21 | #include "interface.h" |
22 | 22 | ||
23 | #include <qpe/resource.h> | 23 | #include <qpe/resource.h> |
24 | #include <qpe/qpeapplication.h> | ||
24 | 25 | ||
25 | #include <qpe/qpetoolbar.h> | 26 | #include <qpe/qpetoolbar.h> |
26 | #include <qtoolbutton.h> | 27 | #include <qtoolbutton.h> |
27 | #include <qstyle.h> | 28 | #include <qstyle.h> |
28 | #include <qapplication.h> | 29 | #include <qapplication.h> |
29 | #include <qmessagebox.h> | 30 | #include <qmessagebox.h> |
30 | 31 | ||
31 | SnakeGame::SnakeGame(QWidget* parent, const char* name, WFlags f) : | 32 | SnakeGame::SnakeGame(QWidget* parent, const char* name, WFlags f) : |
32 | QMainWindow(parent,name,f), | 33 | QMainWindow(parent,name,f), |
33 | canvas(232, 258) | 34 | canvas(232, 258) |
34 | { | 35 | { |
35 | setCaption( tr("Snake") ); | 36 | setCaption( tr("Snake") ); |
37 | QPEApplication::setInputMethodHint(this, QPEApplication::AlwaysOff ); | ||
36 | QPixmap bg = Resource::loadPixmap("snake/grass"); | 38 | QPixmap bg = Resource::loadPixmap("snake/grass"); |
37 | canvas.setBackgroundPixmap(bg); | 39 | canvas.setBackgroundPixmap(bg); |
38 | canvas.setUpdatePeriod(100); | 40 | canvas.setUpdatePeriod(100); |
39 | snake = 0; | 41 | snake = 0; |
40 | 42 | ||
41 | cv = new QCanvasView(&canvas, this); | 43 | cv = new QCanvasView(&canvas, this); |
42 | 44 | ||
43 | pauseTimer = new QTimer(this); | 45 | pauseTimer = new QTimer(this); |
44 | connect(pauseTimer, SIGNAL(timeout()), this, SLOT(wait()) ); | 46 | connect(pauseTimer, SIGNAL(timeout()), this, SLOT(wait()) ); |
45 | 47 | ||
46 | setToolBarsMovable( FALSE ); | 48 | setToolBarsMovable( FALSE ); |
47 | 49 | ||
48 | QToolBar* toolbar = new QToolBar( this); | 50 | QToolBar* toolbar = new QToolBar( this); |
49 | toolbar->setHorizontalStretchable( TRUE ); | 51 | toolbar->setHorizontalStretchable( TRUE ); |
50 | 52 | ||
51 | QPixmap newicon = Resource::loadPixmap("ksnake"); | 53 | QPixmap newicon = Resource::loadPixmap("ksnake"); |
52 | setIcon(newicon); | 54 | setIcon(newicon); |
53 | (void)new QToolButton(newicon, tr("New Game"), 0, | 55 | (void)new QToolButton(newicon, tr("New Game"), 0, |
54 | this, SLOT(newGame()), toolbar, "New Game"); | 56 | this, SLOT(newGame()), toolbar, "New Game"); |
55 | 57 | ||
56 | scorelabel = new QLabel(toolbar); | 58 | scorelabel = new QLabel(toolbar); |
57 | showScore(0); | 59 | showScore(0); |
58 | scorelabel->setBackgroundMode( PaletteButton ); | 60 | scorelabel->setBackgroundMode( PaletteButton ); |
59 | scorelabel->setAlignment( AlignRight | AlignVCenter | ExpandTabs ); | 61 | scorelabel->setAlignment( AlignRight | AlignVCenter | ExpandTabs ); |
60 | toolbar->setStretchableWidget( scorelabel ); | 62 | toolbar->setStretchableWidget( scorelabel ); |
61 | 63 | ||
62 | setFocusPolicy(StrongFocus); | 64 | setFocusPolicy(StrongFocus); |
63 | 65 | ||
64 | setCentralWidget(cv); | 66 | setCentralWidget(cv); |
65 | 67 | ||
66 | QTimer::singleShot( 16, this, SLOT(welcomescreen()) ); | 68 | QTimer::singleShot( 16, this, SLOT(welcomescreen()) ); |
67 | gamestopped = true; | 69 | gamestopped = true; |
diff --git a/noncore/games/snake/interface.h b/noncore/games/snake/interface.h index 454d4ee..fa1dee4 100644 --- a/noncore/games/snake/interface.h +++ b/noncore/games/snake/interface.h | |||
@@ -1,69 +1,72 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #include <qmainwindow.h> | 20 | #include <qmainwindow.h> |
21 | #include <qpe/qpeapplication.h> | ||
21 | #include <qcanvas.h> | 22 | #include <qcanvas.h> |
22 | #include <qlabel.h> | 23 | #include <qlabel.h> |
23 | 24 | ||
24 | #include "snake.h" | 25 | #include "snake.h" |
25 | #include "target.h" | 26 | #include "target.h" |
26 | #include "obstacle.h" | 27 | #include "obstacle.h" |
27 | 28 | ||
28 | // class QCanvas; | 29 | // class QCanvas; |
29 | 30 | ||
30 | class SnakeGame : public QMainWindow { | 31 | class SnakeGame : public QMainWindow { |
31 | Q_OBJECT | 32 | Q_OBJECT |
32 | 33 | ||
33 | public: | 34 | public: |
34 | SnakeGame(QWidget* parent=0, const char* name=0, WFlags f=0); | 35 | SnakeGame(QWidget* parent=0, const char* name=0, WFlags f=0); |
35 | ~SnakeGame(); | 36 | ~SnakeGame(); |
36 | 37 | ||
37 | void clear(); | 38 | void clear(); |
38 | void createTargets(); | 39 | void createTargets(); |
39 | 40 | ||
41 | static QString appName() { return QString::fromLatin1("snake"); } | ||
42 | |||
40 | protected: | 43 | protected: |
41 | virtual void keyPressEvent(QKeyEvent*); | 44 | virtual void keyPressEvent(QKeyEvent*); |
42 | virtual void resizeEvent(QResizeEvent *e); | 45 | virtual void resizeEvent(QResizeEvent *e); |
43 | 46 | ||
44 | signals: | 47 | signals: |
45 | void moveFaster(); | 48 | void moveFaster(); |
46 | 49 | ||
47 | private slots: | 50 | private slots: |
48 | void newGame(); | 51 | void newGame(); |
49 | void gameOver(); | 52 | void gameOver(); |
50 | void wait(); | 53 | void wait(); |
51 | void levelUp(); | 54 | void levelUp(); |
52 | void scoreInc(); | 55 | void scoreInc(); |
53 | void welcomescreen(); | 56 | void welcomescreen(); |
54 | 57 | ||
55 | private: | 58 | private: |
56 | void showScore(int); | 59 | void showScore(int); |
57 | QCanvasView* cv; | 60 | QCanvasView* cv; |
58 | QLabel* scorelabel; | 61 | QLabel* scorelabel; |
59 | QCanvas canvas; | 62 | QCanvas canvas; |
60 | QTimer* pauseTimer; | 63 | QTimer* pauseTimer; |
61 | Snake* snake; | 64 | Snake* snake; |
62 | int last; | 65 | int last; |
63 | int level; | 66 | int level; |
64 | int stage; | 67 | int stage; |
65 | int targetamount; | 68 | int targetamount; |
66 | int notargets; | 69 | int notargets; |
67 | bool waitover; | 70 | bool waitover; |
68 | bool gamestopped; | 71 | bool gamestopped; |
69 | }; | 72 | }; |
diff --git a/noncore/games/snake/main.cpp b/noncore/games/snake/main.cpp index 90a93b7..77a2769 100644 --- a/noncore/games/snake/main.cpp +++ b/noncore/games/snake/main.cpp | |||
@@ -1,35 +1,29 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "interface.h" | 21 | #include "interface.h" |
22 | 22 | ||
23 | #include <qpe/qpeapplication.h> | 23 | #include <qpe/qpeapplication.h> |
24 | #include <opie/oapplicationfactory.h> | ||
25 | |||
24 | 26 | ||
27 | OPIE_EXPORT_APP( OApplicationFactory<SnakeGame> ) | ||
25 | 28 | ||
26 | int main(int argc, char **argv) | ||
27 | { | ||
28 | QPEApplication app(argc,argv); | ||
29 | 29 | ||
30 | SnakeGame* m = new SnakeGame; | ||
31 | QPEApplication::setInputMethodHint( m, QPEApplication::AlwaysOff ); | ||
32 | app.showMainWidget(m); | ||
33 | |||
34 | return app.exec(); | ||
35 | } | ||
diff --git a/noncore/games/snake/opie-snake.control b/noncore/games/snake/opie-snake.control index ef4fc61..f110acd 100644 --- a/noncore/games/snake/opie-snake.control +++ b/noncore/games/snake/opie-snake.control | |||
@@ -1,10 +1,10 @@ | |||
1 | Package: opie-snake | 1 | Package: opie-snake |
2 | Files: bin/snake apps/Games/snake.desktop pics/snake | 2 | Files: plugins/application/libsnake.so* bin/snake apps/Games/snake.desktop pics/snake |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/games | 4 | Section: opie/games |
5 | Maintainer: Martin Imobersteg <imm@gmx.ch> | 5 | Maintainer: Martin Imobersteg <imm@gmx.ch> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Depends: task-opie-minimal | 7 | Depends: task-opie-minimal |
8 | Description: Game: control the snake | 8 | Description: Game: control the snake |
9 | A game for the Opie environment. | 9 | A game for the Opie environment. |
10 | Version: $QPE_VERSION$EXTRAVERSION | 10 | Version: $QPE_VERSION$EXTRAVERSION |
diff --git a/noncore/games/snake/snake.pro b/noncore/games/snake/snake.pro index 3da8631..2b7444c 100644 --- a/noncore/games/snake/snake.pro +++ b/noncore/games/snake/snake.pro | |||
@@ -1,11 +1,10 @@ | |||
1 | TEMPLATE= app | 1 | CONFIG += qt warn_on release quick-app |
2 | CONFIG += qt warn_on release | ||
3 | DESTDIR = $(OPIEDIR)/bin | ||
4 | HEADERS = snake.h target.h obstacle.h interface.h codes.h | 2 | HEADERS = snake.h target.h obstacle.h interface.h codes.h |
5 | SOURCES = snake.cpp target.cpp obstacle.cpp interface.cpp main.cpp | 3 | SOURCES = snake.cpp target.cpp obstacle.cpp interface.cpp main.cpp |
6 | TARGET = snake | 4 | TARGET = snake |
7 | INCLUDEPATH += $(OPIEDIR)/include | 5 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 6 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 7 | LIBS += -lqpe |
10 | 8 | ||
9 | |||
11 | include ( $(OPIEDIR)/include.pro ) | 10 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/solitaire/canvascardwindow.cpp b/noncore/games/solitaire/canvascardwindow.cpp index dec5591..c12344a 100644 --- a/noncore/games/solitaire/canvascardwindow.cpp +++ b/noncore/games/solitaire/canvascardwindow.cpp | |||
@@ -8,146 +8,147 @@ | |||
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "canvascardwindow.h" | 21 | #include "canvascardwindow.h" |
22 | #include "patiencecardgame.h" | 22 | #include "patiencecardgame.h" |
23 | #include "freecellcardgame.h" | 23 | #include "freecellcardgame.h" |
24 | #include "chicanecardgame.h" | 24 | #include "chicanecardgame.h" |
25 | #include "harpcardgame.h" | 25 | #include "harpcardgame.h" |
26 | #include "teeclubcardgame.h" | 26 | #include "teeclubcardgame.h" |
27 | 27 | ||
28 | #include <qpe/resource.h> | 28 | #include <qpe/resource.h> |
29 | 29 | ||
30 | #include <qmainwindow.h> | 30 | #include <qmainwindow.h> |
31 | #include <qpopupmenu.h> | 31 | #include <qpopupmenu.h> |
32 | #include <qstyle.h> | 32 | #include <qstyle.h> |
33 | 33 | ||
34 | 34 | ||
35 | CanvasCardWindow::CanvasCardWindow(QWidget* parent, const char* name, WFlags f) : | 35 | CanvasCardWindow::CanvasCardWindow(QWidget* parent, const char* name, WFlags f) : |
36 | QMainWindow(parent, name, f), canvas(230, 260), snapOn(TRUE), cardBack(4), gameType(0), | 36 | QMainWindow(parent, name, f), canvas(230, 260), snapOn(TRUE), cardBack(4), gameType(0), |
37 | cardGame(NULL) | 37 | cardGame(NULL) |
38 | { | 38 | { |
39 | setIcon( Resource::loadPixmap( "cards" ) ); | 39 | setIcon( Resource::loadPixmap( "cards" ) ); |
40 | setCaption(tr("Patience")); | ||
40 | 41 | ||
41 | // Create Playing Area for Games | 42 | // Create Playing Area for Games |
42 | if ( QPixmap::defaultDepth() < 12 ) { | 43 | if ( QPixmap::defaultDepth() < 12 ) { |
43 | // canvas.setBackgroundColor(QColor(0x51, 0x74, 0x6B)); | 44 | // canvas.setBackgroundColor(QColor(0x51, 0x74, 0x6B)); |
44 | // canvas.setBackgroundColor(QColor(0x20, 0xb0, 0x50)); | 45 | // canvas.setBackgroundColor(QColor(0x20, 0xb0, 0x50)); |
45 | canvas.setBackgroundColor(QColor(0x08, 0x98, 0x2D)); | 46 | canvas.setBackgroundColor(QColor(0x08, 0x98, 0x2D)); |
46 | } else { | 47 | } else { |
47 | QPixmap bg; | 48 | QPixmap bg; |
48 | bg.convertFromImage( Resource::loadImage( "table_pattern" ), ThresholdDither ); | 49 | bg.convertFromImage( Resource::loadImage( "table_pattern" ), ThresholdDither ); |
49 | canvas.setBackgroundPixmap(bg); | 50 | canvas.setBackgroundPixmap(bg); |
50 | } | 51 | } |
51 | 52 | ||
52 | #if defined( QT_QWS_CASSIOPEIA ) | 53 | #if defined( QT_QWS_CASSIOPEIA ) |
53 | canvas.setAdvancePeriod(70); | 54 | canvas.setAdvancePeriod(70); |
54 | #else | 55 | #else |
55 | canvas.setAdvancePeriod(30); | 56 | canvas.setAdvancePeriod(30); |
56 | #endif | 57 | #endif |
57 | 58 | ||
58 | 59 | ||
59 | #ifdef _PATIENCE_USE_ACCELS_ | 60 | #ifdef _PATIENCE_USE_ACCELS_ |
60 | QMenuBar* menu = menuBar(); | 61 | QMenuBar* menu = menuBar(); |
61 | 62 | ||
62 | QPopupMenu* file = new QPopupMenu; | 63 | QPopupMenu* file = new QPopupMenu; |
63 | file->insertItem(tr("Patience"), this, SLOT(initPatience()), CTRL+Key_F); | 64 | file->insertItem(tr("Patience"), this, SLOT(initPatience()), CTRL+Key_F); |
64 | file->insertItem(tr("Freecell"), this, SLOT(initFreecell()), CTRL+Key_F); | 65 | file->insertItem(tr("Freecell"), this, SLOT(initFreecell()), CTRL+Key_F); |
65 | file->insertItem(tr("Chicane"), this, SLOT(initChicane()), CTRL+Key_F); | 66 | file->insertItem(tr("Chicane"), this, SLOT(initChicane()), CTRL+Key_F); |
66 | file->insertItem(tr("Harp"), this, SLOT(initHarp()), CTRL+Key_F); | 67 | file->insertItem(tr("Harp"), this, SLOT(initHarp()), CTRL+Key_F); |
67 | file->insertItem(tr("Teeclub"), this, SLOT(initTeeclub()), CTRL+Key_F); | 68 | file->insertItem(tr("Teeclub"), this, SLOT(initTeeclub()), CTRL+Key_F); |
68 | menu->insertItem(tr("&Game"), file); | 69 | menu->insertItem(tr("&Game"), file); |
69 | 70 | ||
70 | menu->insertSeparator(); | 71 | menu->insertSeparator(); |
71 | 72 | ||
72 | settings = new QPopupMenu; | 73 | settings = new QPopupMenu; |
73 | settings->insertItem(tr("&Change card backs"), this, SLOT(changeCardBacks()), Key_F2); | 74 | settings->insertItem(tr("&Change card backs"), this, SLOT(changeCardBacks()), Key_F2); |
74 | snap_id = settings->insertItem(tr("&Snap to position"), this, SLOT(snapToggle()), Key_F3); | 75 | snap_id = settings->insertItem(tr("&Snap to position"), this, SLOT(snapToggle()), Key_F3); |
75 | settings->setCheckable(TRUE); | 76 | settings->setCheckable(TRUE); |
76 | menu->insertItem(tr("&Settings"),settings); | 77 | menu->insertItem(tr("&Settings"),settings); |
77 | 78 | ||
78 | menu->insertSeparator(); | 79 | menu->insertSeparator(); |
79 | 80 | ||
80 | QPopupMenu* help = new QPopupMenu; | 81 | QPopupMenu* help = new QPopupMenu; |
81 | help->insertItem(tr("&About"), this, SLOT(help()), Key_F1); | 82 | help->insertItem(tr("&About"), this, SLOT(help()), Key_F1); |
82 | help->setItemChecked(dbf_id, TRUE); | 83 | help->setItemChecked(dbf_id, TRUE); |
83 | menu->insertItem(tr("&Help"),help); | 84 | menu->insertItem(tr("&Help"),help); |
84 | #else | 85 | #else |
85 | QMenuBar* menu = menuBar(); | 86 | QMenuBar* menu = menuBar(); |
86 | 87 | ||
87 | QPopupMenu* file = new QPopupMenu; | 88 | QPopupMenu* file = new QPopupMenu; |
88 | file->insertItem(tr("Patience"), this, SLOT(initPatience())); | 89 | file->insertItem(tr("Patience"), this, SLOT(initPatience())); |
89 | file->insertItem(tr("Freecell"), this, SLOT(initFreecell())); | 90 | file->insertItem(tr("Freecell"), this, SLOT(initFreecell())); |
90 | file->insertItem(tr("Chicane"), this, SLOT(initChicane())); | 91 | file->insertItem(tr("Chicane"), this, SLOT(initChicane())); |
91 | file->insertItem(tr("Harp"), this, SLOT(initHarp())); | 92 | file->insertItem(tr("Harp"), this, SLOT(initHarp())); |
92 | file->insertItem(tr("Teeclub"), this, SLOT(initTeeclub())); | 93 | file->insertItem(tr("Teeclub"), this, SLOT(initTeeclub())); |
93 | menu->insertItem(tr("Play"), file); | 94 | menu->insertItem(tr("Play"), file); |
94 | 95 | ||
95 | menu->insertSeparator(); | 96 | menu->insertSeparator(); |
96 | 97 | ||
97 | settings = new QPopupMenu; | 98 | settings = new QPopupMenu; |
98 | settings->setCheckable(TRUE); | 99 | settings->setCheckable(TRUE); |
99 | settings->insertItem(tr("Change card backs"), this, SLOT(changeCardBacks())); | 100 | settings->insertItem(tr("Change card backs"), this, SLOT(changeCardBacks())); |
100 | snap_id = settings->insertItem(tr("Snap to position"), this, SLOT(snapToggle())); | 101 | snap_id = settings->insertItem(tr("Snap to position"), this, SLOT(snapToggle())); |
101 | QString m; | 102 | QString m; |
102 | 103 | ||
103 | drawId = settings->insertItem(tr("Turn one card"), this, SLOT(drawnToggle())); | 104 | drawId = settings->insertItem(tr("Turn one card"), this, SLOT(drawnToggle())); |
104 | menu->insertItem(tr("Settings"),settings); | 105 | menu->insertItem(tr("Settings"),settings); |
105 | settings->setCheckable(TRUE); | 106 | settings->setCheckable(TRUE); |
106 | 107 | ||
107 | #endif | 108 | #endif |
108 | 109 | ||
109 | menu->show(); | 110 | menu->show(); |
110 | 111 | ||
111 | Config cfg( "Patience" ); | 112 | Config cfg( "Patience" ); |
112 | cfg.setGroup( "GlobalSettings" ); | 113 | cfg.setGroup( "GlobalSettings" ); |
113 | snapOn = cfg.readBoolEntry( "SnapOn", TRUE); | 114 | snapOn = cfg.readBoolEntry( "SnapOn", TRUE); |
114 | settings->setItemChecked(snap_id, snapOn); | 115 | settings->setItemChecked(snap_id, snapOn); |
115 | 116 | ||
116 | gameType = cfg.readNumEntry( "GameType", -1 ); | 117 | gameType = cfg.readNumEntry( "GameType", -1 ); |
117 | drawThree = cfg.readBoolEntry( "DrawThree", FALSE); | 118 | drawThree = cfg.readBoolEntry( "DrawThree", FALSE); |
118 | if ( gameType == 0 ) { | 119 | if ( gameType == 0 ) { |
119 | cardGame = new PatienceCardGame( &canvas, snapOn, this ); | 120 | cardGame = new PatienceCardGame( &canvas, snapOn, this ); |
120 | cardGame->setNumberToDraw(drawThree ? 3 : 1); | 121 | cardGame->setNumberToDraw(drawThree ? 3 : 1); |
121 | 122 | ||
122 | setCaption(tr("Patience")); | 123 | setCaption(tr("Patience")); |
123 | setCentralWidget(cardGame); | 124 | setCentralWidget(cardGame); |
124 | cardGame->readConfig( cfg ); | 125 | cardGame->readConfig( cfg ); |
125 | setCardBacks(); | 126 | setCardBacks(); |
126 | } else if ( gameType == 1 ) { | 127 | } else if ( gameType == 1 ) { |
127 | cardGame = new FreecellCardGame( &canvas, snapOn, this ); | 128 | cardGame = new FreecellCardGame( &canvas, snapOn, this ); |
128 | setCaption(tr("Freecell")); | 129 | setCaption(tr("Freecell")); |
129 | setCentralWidget(cardGame); | 130 | setCentralWidget(cardGame); |
130 | //cardGame->newGame(); // Until we know how to handle reading freecell config | 131 | //cardGame->newGame(); // Until we know how to handle reading freecell config |
131 | cardGame->readConfig( cfg ); | 132 | cardGame->readConfig( cfg ); |
132 | setCardBacks(); | 133 | setCardBacks(); |
133 | } else if ( gameType == 2 ) { | 134 | } else if ( gameType == 2 ) { |
134 | cardGame = new ChicaneCardGame( &canvas, snapOn, this ); | 135 | cardGame = new ChicaneCardGame( &canvas, snapOn, this ); |
135 | cardGame->setNumberToDraw(1); | 136 | cardGame->setNumberToDraw(1); |
136 | setCaption(tr("Chicane")); | 137 | setCaption(tr("Chicane")); |
137 | setCentralWidget(cardGame); | 138 | setCentralWidget(cardGame); |
138 | cardGame->readConfig( cfg ); | 139 | cardGame->readConfig( cfg ); |
139 | setCardBacks(); | 140 | setCardBacks(); |
140 | } else if ( gameType == 3 ) { | 141 | } else if ( gameType == 3 ) { |
141 | cardGame = new HarpCardGame( &canvas, snapOn, this ); | 142 | cardGame = new HarpCardGame( &canvas, snapOn, this ); |
142 | cardGame->setNumberToDraw(1); | 143 | cardGame->setNumberToDraw(1); |
143 | setCaption(tr("Harp")); | 144 | setCaption(tr("Harp")); |
144 | setCentralWidget(cardGame); | 145 | setCentralWidget(cardGame); |
145 | cardGame->readConfig( cfg ); | 146 | cardGame->readConfig( cfg ); |
146 | setCardBacks(); | 147 | setCardBacks(); |
147 | } else if ( gameType == 4 ) { | 148 | } else if ( gameType == 4 ) { |
148 | cardGame = new TeeclubCardGame( &canvas, snapOn, this ); | 149 | cardGame = new TeeclubCardGame( &canvas, snapOn, this ); |
149 | cardGame->setNumberToDraw(1); | 150 | cardGame->setNumberToDraw(1); |
150 | setCaption(tr("Teeclub")); | 151 | setCaption(tr("Teeclub")); |
151 | setCentralWidget(cardGame); | 152 | setCentralWidget(cardGame); |
152 | cardGame->readConfig( cfg ); | 153 | cardGame->readConfig( cfg ); |
153 | setCardBacks(); | 154 | setCardBacks(); |
@@ -157,65 +158,65 @@ CanvasCardWindow::CanvasCardWindow(QWidget* parent, const char* name, WFlags f) | |||
157 | initPatience(); | 158 | initPatience(); |
158 | } | 159 | } |
159 | 160 | ||
160 | updateDraw(); | 161 | updateDraw(); |
161 | } | 162 | } |
162 | 163 | ||
163 | 164 | ||
164 | CanvasCardWindow::~CanvasCardWindow() | 165 | CanvasCardWindow::~CanvasCardWindow() |
165 | { | 166 | { |
166 | if (cardGame) { | 167 | if (cardGame) { |
167 | Config cfg("Patience"); | 168 | Config cfg("Patience"); |
168 | cfg.setGroup( "GlobalSettings" ); | 169 | cfg.setGroup( "GlobalSettings" ); |
169 | cfg.writeEntry( "GameType", gameType ); | 170 | cfg.writeEntry( "GameType", gameType ); |
170 | cfg.writeEntry( "SnapOn", snapOn ); | 171 | cfg.writeEntry( "SnapOn", snapOn ); |
171 | cfg.writeEntry( "DrawThree", drawThree); | 172 | cfg.writeEntry( "DrawThree", drawThree); |
172 | cfg.write(); | 173 | cfg.write(); |
173 | cardGame->writeConfig( cfg ); | 174 | cardGame->writeConfig( cfg ); |
174 | delete cardGame; | 175 | delete cardGame; |
175 | } | 176 | } |
176 | } | 177 | } |
177 | 178 | ||
178 | 179 | ||
179 | void CanvasCardWindow::resizeEvent(QResizeEvent *) | 180 | void CanvasCardWindow::resizeEvent(QResizeEvent *) |
180 | { | 181 | { |
181 | QSize s = centralWidget()->size(); | 182 | QSize s = centralWidget()->size(); |
182 | int fw = style().defaultFrameWidth(); | 183 | int fw = style().defaultFrameWidth(); |
183 | canvas.resize( s.width() - fw - 2, s.height() - fw - 2); | 184 | canvas.resize( s.width() - fw - 2, s.height() - fw - 2); |
184 | } | 185 | } |
185 | 186 | ||
186 | 187 | ||
187 | void CanvasCardWindow::initPatience() | 188 | void CanvasCardWindow::initPatience() |
188 | { | 189 | { |
189 | // Create New Game | 190 | // Create New Game |
190 | if ( cardGame ) | 191 | if ( cardGame ) |
191 | delete cardGame; | 192 | delete cardGame; |
192 | cardGame = new PatienceCardGame( &canvas, snapOn, this ); | 193 | cardGame = new PatienceCardGame( &canvas, snapOn, this ); |
193 | cardGame->setNumberToDraw(drawThree ? 3 : 1); | 194 | cardGame->setNumberToDraw(drawThree ? 3 : 1); |
194 | gameType = 0; | 195 | gameType = 0; |
195 | setCaption(tr("Patience")); | 196 | setCaption(tr("Patience")); |
196 | setCentralWidget(cardGame); | 197 | setCentralWidget(cardGame); |
197 | cardGame->newGame(); | 198 | cardGame->newGame(); |
198 | setCardBacks(); | 199 | setCardBacks(); |
199 | updateDraw(); | 200 | updateDraw(); |
200 | } | 201 | } |
201 | 202 | ||
202 | 203 | ||
203 | void CanvasCardWindow::initFreecell() | 204 | void CanvasCardWindow::initFreecell() |
204 | { | 205 | { |
205 | // Create New Game | 206 | // Create New Game |
206 | if ( cardGame ) { | 207 | if ( cardGame ) { |
207 | delete cardGame; | 208 | delete cardGame; |
208 | } | 209 | } |
209 | cardGame = new FreecellCardGame( &canvas, snapOn, this ); | 210 | cardGame = new FreecellCardGame( &canvas, snapOn, this ); |
210 | gameType = 1; | 211 | gameType = 1; |
211 | setCaption(tr("Freecell")); | 212 | setCaption(tr("Freecell")); |
212 | setCentralWidget(cardGame); | 213 | setCentralWidget(cardGame); |
213 | cardGame->newGame(); | 214 | cardGame->newGame(); |
214 | setCardBacks(); | 215 | setCardBacks(); |
215 | } | 216 | } |
216 | 217 | ||
217 | 218 | ||
218 | void CanvasCardWindow::initChicane() | 219 | void CanvasCardWindow::initChicane() |
219 | { | 220 | { |
220 | // Create New Game | 221 | // Create New Game |
221 | if ( cardGame ) { | 222 | if ( cardGame ) { |
@@ -224,71 +225,71 @@ void CanvasCardWindow::initChicane() | |||
224 | cardGame = new ChicaneCardGame( &canvas, snapOn, this ); | 225 | cardGame = new ChicaneCardGame( &canvas, snapOn, this ); |
225 | cardGame->setNumberToDraw(1); | 226 | cardGame->setNumberToDraw(1); |
226 | gameType = 2; | 227 | gameType = 2; |
227 | setCaption(tr("Chicane")); | 228 | setCaption(tr("Chicane")); |
228 | setCentralWidget(cardGame); | 229 | setCentralWidget(cardGame); |
229 | cardGame->newGame(); | 230 | cardGame->newGame(); |
230 | setCardBacks(); | 231 | setCardBacks(); |
231 | } | 232 | } |
232 | 233 | ||
233 | void CanvasCardWindow::initHarp() | 234 | void CanvasCardWindow::initHarp() |
234 | { | 235 | { |
235 | // Create New Game | 236 | // Create New Game |
236 | if ( cardGame ) { | 237 | if ( cardGame ) { |
237 | delete cardGame; | 238 | delete cardGame; |
238 | } | 239 | } |
239 | cardGame = new HarpCardGame( &canvas, snapOn, this ); | 240 | cardGame = new HarpCardGame( &canvas, snapOn, this ); |
240 | cardGame->setNumberToDraw(1); | 241 | cardGame->setNumberToDraw(1); |
241 | gameType = 3; | 242 | gameType = 3; |
242 | setCaption(tr("Harp")); | 243 | setCaption(tr("Harp")); |
243 | setCentralWidget(cardGame); | 244 | setCentralWidget(cardGame); |
244 | cardGame->newGame(); | 245 | cardGame->newGame(); |
245 | setCardBacks(); | 246 | setCardBacks(); |
246 | } | 247 | } |
247 | 248 | ||
248 | 249 | ||
249 | void CanvasCardWindow::initTeeclub() | 250 | void CanvasCardWindow::initTeeclub() |
250 | { | 251 | { |
251 | // Create New Game | 252 | // Create New Game |
252 | if ( cardGame ) { | 253 | if ( cardGame ) { |
253 | delete cardGame; | 254 | delete cardGame; |
254 | } | 255 | } |
255 | cardGame = new TeeclubCardGame( &canvas, snapOn, this ); | 256 | cardGame = new TeeclubCardGame( &canvas, snapOn, this ); |
256 | cardGame->setNumberToDraw(1); | 257 | cardGame->setNumberToDraw(1); |
257 | gameType = 4; | 258 | gameType = 4; |
258 | setCaption(tr("Teeclub")); | 259 | setCaption(tr("Teeclub")); |
259 | setCentralWidget(cardGame); | 260 | setCentralWidget(cardGame); |
260 | cardGame->newGame(); | 261 | cardGame->newGame(); |
261 | setCardBacks(); | 262 | setCardBacks(); |
262 | } | 263 | } |
263 | 264 | ||
264 | 265 | ||
265 | void CanvasCardWindow::snapToggle() | 266 | void CanvasCardWindow::snapToggle() |
266 | { | 267 | { |
267 | snapOn = !snapOn; | 268 | snapOn = !snapOn; |
268 | settings->setItemChecked(snap_id, snapOn); | 269 | settings->setItemChecked(snap_id, snapOn); |
269 | cardGame->toggleSnap(); | 270 | cardGame->toggleSnap(); |
270 | } | 271 | } |
271 | 272 | ||
272 | 273 | ||
273 | void CanvasCardWindow::drawnToggle() | 274 | void CanvasCardWindow::drawnToggle() |
274 | { | 275 | { |
275 | drawThree=!drawThree; | 276 | drawThree=!drawThree; |
276 | Config cfg( "Patience" ); | 277 | Config cfg( "Patience" ); |
277 | cfg.setGroup( "GlobalSettings" ); | 278 | cfg.setGroup( "GlobalSettings" ); |
278 | cardGame->toggleCardsDrawn(); | 279 | cardGame->toggleCardsDrawn(); |
279 | updateDraw(); | 280 | updateDraw(); |
280 | cfg.writeEntry( "DrawThree", drawThree); | 281 | cfg.writeEntry( "DrawThree", drawThree); |
281 | cfg.write(); | 282 | cfg.write(); |
282 | } | 283 | } |
283 | 284 | ||
284 | void CanvasCardWindow::updateDraw() { | 285 | void CanvasCardWindow::updateDraw() { |
285 | if(cardGame->cardsDrawn() == 3){ | 286 | if(cardGame->cardsDrawn() == 3){ |
286 | settings->changeItem(drawId, tr("Turn one card")); | 287 | settings->changeItem(drawId, tr("Turn one card")); |
287 | } else { | 288 | } else { |
288 | settings->changeItem(drawId, tr("Turn three cards")); | 289 | settings->changeItem(drawId, tr("Turn three cards")); |
289 | } | 290 | } |
290 | } | 291 | } |
291 | 292 | ||
292 | 293 | ||
293 | void CanvasCardWindow::setCardBacks() | 294 | void CanvasCardWindow::setCardBacks() |
294 | { | 295 | { |
diff --git a/noncore/games/solitaire/canvascardwindow.h b/noncore/games/solitaire/canvascardwindow.h index eddb184..abd6af6 100644 --- a/noncore/games/solitaire/canvascardwindow.h +++ b/noncore/games/solitaire/canvascardwindow.h | |||
@@ -4,64 +4,65 @@ | |||
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #ifndef CANVAS_CARD_WINDOW_H | 20 | #ifndef CANVAS_CARD_WINDOW_H |
21 | #define CANVAS_CARD_WINDOW_H | 21 | #define CANVAS_CARD_WINDOW_H |
22 | 22 | ||
23 | 23 | ||
24 | #include <qmainwindow.h> | 24 | #include <qmainwindow.h> |
25 | #include <qcanvas.h> | 25 | #include <qcanvas.h> |
26 | 26 | ||
27 | 27 | ||
28 | class CanvasCardGame; | 28 | class CanvasCardGame; |
29 | class QPopupMenu; | 29 | class QPopupMenu; |
30 | 30 | ||
31 | 31 | ||
32 | class CanvasCardWindow : public QMainWindow { | 32 | class CanvasCardWindow : public QMainWindow { |
33 | Q_OBJECT | 33 | Q_OBJECT |
34 | 34 | ||
35 | public: | 35 | public: |
36 | static QString appName() { return QString::fromLatin1("patience"); } | ||
36 | CanvasCardWindow(QWidget* parent=0, const char* name=0, WFlags f=0); | 37 | CanvasCardWindow(QWidget* parent=0, const char* name=0, WFlags f=0); |
37 | virtual ~CanvasCardWindow(); | 38 | virtual ~CanvasCardWindow(); |
38 | 39 | ||
39 | public slots: | 40 | public slots: |
40 | void setCardBacks(); | 41 | void setCardBacks(); |
41 | void changeCardBacks(); | 42 | void changeCardBacks(); |
42 | void snapToggle(); | 43 | void snapToggle(); |
43 | void drawnToggle(); | 44 | void drawnToggle(); |
44 | 45 | ||
45 | private slots: | 46 | private slots: |
46 | void initFreecell(); | 47 | void initFreecell(); |
47 | void initPatience(); | 48 | void initPatience(); |
48 | void initChicane(); | 49 | void initChicane(); |
49 | void initHarp(); | 50 | void initHarp(); |
50 | void initTeeclub(); | 51 | void initTeeclub(); |
51 | 52 | ||
52 | protected: | 53 | protected: |
53 | virtual void resizeEvent(QResizeEvent *e); | 54 | virtual void resizeEvent(QResizeEvent *e); |
54 | 55 | ||
55 | void updateDraw(); | 56 | void updateDraw(); |
56 | private: | 57 | private: |
57 | QCanvas canvas; | 58 | QCanvas canvas; |
58 | bool snapOn; | 59 | bool snapOn; |
59 | bool drawThree; | 60 | bool drawThree; |
60 | int drawId; | 61 | int drawId; |
61 | int cardBack; | 62 | int cardBack; |
62 | int gameType; | 63 | int gameType; |
63 | CanvasCardGame *cardGame; | 64 | CanvasCardGame *cardGame; |
64 | 65 | ||
65 | QPopupMenu* options; | 66 | QPopupMenu* options; |
66 | QPopupMenu* settings; | 67 | QPopupMenu* settings; |
67 | int dbf_id; | 68 | int dbf_id; |
diff --git a/noncore/games/solitaire/carddeck.cpp b/noncore/games/solitaire/carddeck.cpp index a2d0076..b130131 100644 --- a/noncore/games/solitaire/carddeck.cpp +++ b/noncore/games/solitaire/carddeck.cpp | |||
@@ -1,60 +1,60 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | #include <stdlib.h> | 20 | #include <stdlib.h> |
21 | #include <time.h> | 21 | #include <time.h> |
22 | #include "card.h" | 22 | #include "card.h" |
23 | #include "carddeck.h" | 23 | #include "carddeck.h" |
24 | 24 | ||
25 | 25 | ||
26 | CardDeck::CardDeck(int jokers, int numOfDecks) : numberOfJokers(jokers), numberOfDecks(numOfDecks), deckCreated(FALSE) | 26 | CardDeck::CardDeck(int jokers, int numOfDecks) : numberOfJokers(jokers), numberOfDecks(numOfDecks), deckCreated(FALSE) |
27 | { | 27 | { |
28 | cards = new (Card *)[getNumberOfCards()]; | 28 | cards = new Card *[getNumberOfCards()]; |
29 | } | 29 | } |
30 | 30 | ||
31 | 31 | ||
32 | CardDeck::~CardDeck() | 32 | CardDeck::~CardDeck() |
33 | { | 33 | { |
34 | for (int i = 0; i < getNumberOfCards(); i++) | 34 | for (int i = 0; i < getNumberOfCards(); i++) |
35 | delete cards[i]; | 35 | delete cards[i]; |
36 | delete cards; | 36 | delete cards; |
37 | } | 37 | } |
38 | 38 | ||
39 | 39 | ||
40 | void CardDeck::createDeck() | 40 | void CardDeck::createDeck() |
41 | { | 41 | { |
42 | if (!deckCreated) { | 42 | if (!deckCreated) { |
43 | for (int j = 0; j < getNumberOfDecks(); j++) { | 43 | for (int j = 0; j < getNumberOfDecks(); j++) { |
44 | for (int i = 0; i < 52; i++) { | 44 | for (int i = 0; i < 52; i++) { |
45 | cards[i+j*52] = newCard( (eValue)((i % 13) + 1), (eSuit)((i / 13) + 1), FALSE); | 45 | cards[i+j*52] = newCard( (eValue)((i % 13) + 1), (eSuit)((i / 13) + 1), FALSE); |
46 | cards[i+j*52]->setDeckNumber(j); | 46 | cards[i+j*52]->setDeckNumber(j); |
47 | } | 47 | } |
48 | } | 48 | } |
49 | for (int i = 0; i < getNumberOfJokers(); i++) | 49 | for (int i = 0; i < getNumberOfJokers(); i++) |
50 | cards[52*getNumberOfDecks() + i] = newCard( jokerVal, jokerSuit, FALSE); | 50 | cards[52*getNumberOfDecks() + i] = newCard( jokerVal, jokerSuit, FALSE); |
51 | deckCreated = TRUE; | 51 | deckCreated = TRUE; |
52 | } | 52 | } |
53 | } | 53 | } |
54 | 54 | ||
55 | 55 | ||
56 | void CardDeck::shuffle() | 56 | void CardDeck::shuffle() |
57 | { | 57 | { |
58 | srand(time(NULL)); | 58 | srand(time(NULL)); |
59 | for (int i = 0; i < getNumberOfCards(); i++) { | 59 | for (int i = 0; i < getNumberOfCards(); i++) { |
60 | int index = rand() % getNumberOfCards(); | 60 | int index = rand() % getNumberOfCards(); |
diff --git a/noncore/games/solitaire/main.cpp b/noncore/games/solitaire/main.cpp index f81aa3c..bd3cf8b 100644 --- a/noncore/games/solitaire/main.cpp +++ b/noncore/games/solitaire/main.cpp | |||
@@ -1,36 +1,26 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "canvascardwindow.h" | 21 | #include "canvascardwindow.h" |
22 | 22 | ||
23 | #include <qpe/qpeapplication.h> | 23 | #include <qpe/qpeapplication.h> |
24 | #include <opie/oapplicationfactory.h> | ||
24 | 25 | ||
25 | 26 | OPIE_EXPORT_APP( OApplicationFactory<CanvasCardWindow> ) \ No newline at end of file | |
26 | int main( int argc, char ** argv ) | ||
27 | { | ||
28 | QPEApplication a( argc, argv ); | ||
29 | |||
30 | CanvasCardWindow m; | ||
31 | m.setCaption( CanvasCardWindow::tr("Patience") ); | ||
32 | a.showMainWidget( &m ); | ||
33 | |||
34 | return a.exec(); | ||
35 | } | ||
36 | |||
diff --git a/noncore/games/solitaire/solitaire.pro b/noncore/games/solitaire/solitaire.pro index 1ac62c3..b1b8bda 100755 --- a/noncore/games/solitaire/solitaire.pro +++ b/noncore/games/solitaire/solitaire.pro | |||
@@ -1,21 +1,20 @@ | |||
1 | TEMPLATE = app | ||
2 | 1 | ||
3 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release quick-app |
4 | DESTDIR = $(OPIEDIR)/bin | ||
5 | 3 | ||
6 | HEADERS = canvascard.h canvasshapes.h cardgame.h cardgamelayout.h cardpile.h card.h carddeck.h \ | 4 | HEADERS = canvascard.h canvasshapes.h cardgame.h cardgamelayout.h cardpile.h card.h carddeck.h \ |
7 | canvascardgame.h freecellcardgame.h chicanecardgame.h harpcardgame.h teeclubcardgame.h \ | 5 | canvascardgame.h freecellcardgame.h chicanecardgame.h harpcardgame.h teeclubcardgame.h \ |
8 | patiencecardgame.h canvascardwindow.h | 6 | patiencecardgame.h canvascardwindow.h |
9 | 7 | ||
10 | SOURCES = canvascard.cpp canvasshapes.cpp cardgame.cpp cardgamelayout.cpp \ | 8 | SOURCES = canvascard.cpp canvasshapes.cpp cardgame.cpp cardgamelayout.cpp \ |
11 | cardpile.cpp card.cpp carddeck.cpp canvascardgame.cpp freecellcardgame.cpp \ | 9 | cardpile.cpp card.cpp carddeck.cpp canvascardgame.cpp freecellcardgame.cpp \ |
12 | chicanecardgame.cpp harpcardgame.cpp teeclubcardgame.cpp \ | 10 | chicanecardgame.cpp harpcardgame.cpp teeclubcardgame.cpp \ |
13 | patiencecardgame.cpp canvascardwindow.cpp main.cpp | 11 | patiencecardgame.cpp canvascardwindow.cpp main.cpp |
14 | 12 | ||
15 | TARGET = patience | 13 | TARGET = patience |
16 | 14 | ||
17 | INCLUDEPATH += $(OPIEDIR)/include | 15 | INCLUDEPATH += $(OPIEDIR)/include |
18 | DEPENDPATH += $(OPIEDIR)/include | 16 | DEPENDPATH += $(OPIEDIR)/include |
19 | LIBS += -lqpe | 17 | LIBS += -lqpe |
20 | 18 | ||
19 | |||
21 | include ( $(OPIEDIR)/include.pro ) | 20 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/tetrix/main.cpp b/noncore/games/tetrix/main.cpp index e36d52d..fcf4b33 100644 --- a/noncore/games/tetrix/main.cpp +++ b/noncore/games/tetrix/main.cpp | |||
@@ -1,33 +1,28 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "qtetrix.h" | 21 | #include "qtetrix.h" |
22 | 22 | ||
23 | #include <qpe/qpeapplication.h> | 23 | #include <qpe/qpeapplication.h> |
24 | 24 | ||
25 | int main( int argc, char **argv ) | 25 | #include <opie/oapplicationfactory.h> |
26 | { | ||
27 | QPEApplication a(argc,argv); | ||
28 | 26 | ||
29 | QTetrix *tetrix = new QTetrix; | 27 | OPIE_EXPORT_APP( OApplicationFactory<QTetrix> ) |
30 | a.showMainWidget(tetrix); | ||
31 | 28 | ||
32 | return a.exec(); | ||
33 | } | ||
diff --git a/noncore/games/tetrix/opie-tetrix.control b/noncore/games/tetrix/opie-tetrix.control index e901dbf..b1e0bcf 100644 --- a/noncore/games/tetrix/opie-tetrix.control +++ b/noncore/games/tetrix/opie-tetrix.control | |||
@@ -1,11 +1,11 @@ | |||
1 | Package: opie-tetrix | 1 | Package: opie-tetrix |
2 | Files: bin/tetrix apps/Games/tetrix.desktop pics/tetrix/* | 2 | Files: plugins/application/libtetrix.so* bin/tetrix apps/Games/tetrix.desktop pics/tetrix/* |
3 | Priority: optional | 3 | Priority: optional |
4 | Section: opie/games | 4 | Section: opie/games |
5 | Maintainer: Martin Imobersteg <imm@gmx.ch> | 5 | Maintainer: Martin Imobersteg <imm@gmx.ch> |
6 | Architecture: arm | 6 | Architecture: arm |
7 | Arch: iPAQ | 7 | Arch: iPAQ |
8 | Depends: task-opie-minimal | 8 | Depends: task-opie-minimal |
9 | Description: Game: control falling blocks | 9 | Description: Game: control falling blocks |
10 | A game for the Opie environment. | 10 | A game for the Opie environment. |
11 | Version: $QPE_VERSION$EXTRAVERSION | 11 | Version: $QPE_VERSION$EXTRAVERSION |
diff --git a/noncore/games/tetrix/qtetrix.h b/noncore/games/tetrix/qtetrix.h index cb33941..c8959c5 100644 --- a/noncore/games/tetrix/qtetrix.h +++ b/noncore/games/tetrix/qtetrix.h | |||
@@ -23,54 +23,55 @@ | |||
23 | #include "qtetrixb.h" | 23 | #include "qtetrixb.h" |
24 | #include <qframe.h> | 24 | #include <qframe.h> |
25 | #include <qlcdnumber.h> | 25 | #include <qlcdnumber.h> |
26 | #include <qpushbutton.h> | 26 | #include <qpushbutton.h> |
27 | #include <qpainter.h> | 27 | #include <qpainter.h> |
28 | #include <qmainwindow.h> | 28 | #include <qmainwindow.h> |
29 | 29 | ||
30 | class QLabel; | 30 | class QLabel; |
31 | 31 | ||
32 | class ShowNextPiece : public QFrame | 32 | class ShowNextPiece : public QFrame |
33 | { | 33 | { |
34 | Q_OBJECT | 34 | Q_OBJECT |
35 | friend class QTetrix; | 35 | friend class QTetrix; |
36 | public: | 36 | public: |
37 | ShowNextPiece( QWidget *parent=0, const char *name=0 ); | 37 | ShowNextPiece( QWidget *parent=0, const char *name=0 ); |
38 | public slots: | 38 | public slots: |
39 | void drawNextSquare( int x, int y,QColor *color ); | 39 | void drawNextSquare( int x, int y,QColor *color ); |
40 | signals: | 40 | signals: |
41 | void update(); | 41 | void update(); |
42 | private: | 42 | private: |
43 | void paintEvent( QPaintEvent * ); | 43 | void paintEvent( QPaintEvent * ); |
44 | void resizeEvent( QResizeEvent * ); | 44 | void resizeEvent( QResizeEvent * ); |
45 | 45 | ||
46 | int blockWidth,blockHeight; | 46 | int blockWidth,blockHeight; |
47 | int xOffset,yOffset; | 47 | int xOffset,yOffset; |
48 | }; | 48 | }; |
49 | 49 | ||
50 | 50 | ||
51 | class QTetrix : public QMainWindow | 51 | class QTetrix : public QMainWindow |
52 | { | 52 | { |
53 | Q_OBJECT | 53 | Q_OBJECT |
54 | public: | 54 | public: |
55 | static QString appName() { return QString::fromLatin1("tetrix"); } | ||
55 | QTetrix( QWidget *parent=0, const char *name=0, WFlags f=0 ); | 56 | QTetrix( QWidget *parent=0, const char *name=0, WFlags f=0 ); |
56 | void startGame() { board->startGame(); } | 57 | void startGame() { board->startGame(); } |
57 | 58 | ||
58 | public slots: | 59 | public slots: |
59 | void gameOver(); | 60 | void gameOver(); |
60 | void quit(); | 61 | void quit(); |
61 | private: | 62 | private: |
62 | void keyPressEvent( QKeyEvent *e ) { board->keyPressEvent(e); } | 63 | void keyPressEvent( QKeyEvent *e ) { board->keyPressEvent(e); } |
63 | 64 | ||
64 | QTetrixBoard *board; | 65 | QTetrixBoard *board; |
65 | ShowNextPiece *showNext; | 66 | ShowNextPiece *showNext; |
66 | QLabel *showScore; | 67 | QLabel *showScore; |
67 | QLabel *showLevel; | 68 | QLabel *showLevel; |
68 | QLabel *showLines; | 69 | QLabel *showLines; |
69 | }; | 70 | }; |
70 | 71 | ||
71 | 72 | ||
72 | void drawTetrixButton( QPainter *, int x, int y, int w, int h, | 73 | void drawTetrixButton( QPainter *, int x, int y, int w, int h, |
73 | const QColor *color ); | 74 | const QColor *color ); |
74 | 75 | ||
75 | 76 | ||
76 | #endif | 77 | #endif |
diff --git a/noncore/games/tetrix/tetrix.pro b/noncore/games/tetrix/tetrix.pro index 35fe82b..3b95c84 100644 --- a/noncore/games/tetrix/tetrix.pro +++ b/noncore/games/tetrix/tetrix.pro | |||
@@ -1,21 +1,22 @@ | |||
1 | TEMPLATE= app | 1 | CONFIG = qt warn_on release quick-app |
2 | CONFIG = qt warn_on release | ||
3 | DESTDIR = $(OPIEDIR)/bin | ||
4 | HEADERS = gtetrix.h \ | 2 | HEADERS = gtetrix.h \ |
5 | qtetrix.h \ | 3 | qtetrix.h \ |
6 | qtetrixb.h \ | 4 | qtetrixb.h \ |
7 | tpiece.h \ | 5 | tpiece.h \ |
8 | ohighscoredlg.h | 6 | ohighscoredlg.h |
9 | SOURCES = main.cpp \ | 7 | SOURCES = main.cpp \ |
10 | gtetrix.cpp \ | 8 | gtetrix.cpp \ |
11 | qtetrix.cpp \ | 9 | qtetrix.cpp \ |
12 | qtetrixb.cpp \ | 10 | qtetrixb.cpp \ |
13 | tpiece.cpp \ | 11 | tpiece.cpp \ |
14 | ohighscoredlg.cpp | 12 | ohighscoredlg.cpp |
15 | INCLUDEPATH += $(OPIEDIR)/include | 13 | INCLUDEPATH += $(OPIEDIR)/include |
16 | DEPENDPATH+= $(OPIEDIR)/include | 14 | DEPENDPATH+= $(OPIEDIR)/include |
17 | LIBS += -lqpe -lstdc++ | 15 | LIBS += -lqpe -lstdc++ |
18 | INTERFACES= | 16 | INTERFACES= |
19 | TARGET = tetrix | 17 | TARGET = tetrix |
20 | 18 | ||
19 | |||
20 | |||
21 | |||
21 | include ( $(OPIEDIR)/include.pro ) | 22 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/noncore/games/wordgame/main.cpp b/noncore/games/wordgame/main.cpp index cd4600e..f32acff 100644 --- a/noncore/games/wordgame/main.cpp +++ b/noncore/games/wordgame/main.cpp | |||
@@ -1,34 +1,28 @@ | |||
1 | /********************************************************************** | 1 | /********************************************************************** |
2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. | 2 | ** Copyright (C) 2000 Trolltech AS. All rights reserved. |
3 | ** | 3 | ** |
4 | ** This file is part of Qtopia Environment. | 4 | ** This file is part of Qtopia Environment. |
5 | ** | 5 | ** |
6 | ** This file may be distributed and/or modified under the terms of the | 6 | ** This file may be distributed and/or modified under the terms of the |
7 | ** GNU General Public License version 2 as published by the Free Software | 7 | ** GNU General Public License version 2 as published by the Free Software |
8 | ** Foundation and appearing in the file LICENSE.GPL included in the | 8 | ** Foundation and appearing in the file LICENSE.GPL included in the |
9 | ** packaging of this file. | 9 | ** packaging of this file. |
10 | ** | 10 | ** |
11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 11 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 12 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
13 | ** | 13 | ** |
14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 14 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
15 | ** | 15 | ** |
16 | ** Contact info@trolltech.com if any conditions of this licensing are | 16 | ** Contact info@trolltech.com if any conditions of this licensing are |
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "wordgame.h" | 21 | #include "wordgame.h" |
22 | 22 | ||
23 | #include <qpe/qpeapplication.h> | 23 | #include <qpe/qpeapplication.h> |
24 | #include <opie/oapplicationfactory.h> | ||
24 | 25 | ||
25 | int main( int argc, char ** argv ) | ||
26 | { | ||
27 | QPEApplication a( argc, argv ); | ||
28 | 26 | ||
29 | WordGame mw; | 27 | OPIE_EXPORT_APP( OApplicationFactory<WordGame> ) |
30 | //QPEApplication::setInputMethodHint( &mw, QPEApplication::AlwaysOff ); | ||
31 | a.showMainWidget(&mw); | ||
32 | 28 | ||
33 | return a.exec(); | ||
34 | } | ||
diff --git a/noncore/games/wordgame/wordgame.h b/noncore/games/wordgame/wordgame.h index f73c85a..020a4b5 100644 --- a/noncore/games/wordgame/wordgame.h +++ b/noncore/games/wordgame/wordgame.h | |||
@@ -280,64 +280,65 @@ public: | |||
280 | void addScore(int player, int change); | 280 | void addScore(int player, int change); |
281 | int playerScore(int player) const { return score[player]; } | 281 | int playerScore(int player) const { return score[player]; } |
282 | void setShowWinner(bool); | 282 | void setShowWinner(bool); |
283 | void setBoldOne(int); | 283 | void setBoldOne(int); |
284 | 284 | ||
285 | void readConfig(Config&); | 285 | void readConfig(Config&); |
286 | void writeConfig(Config&); | 286 | void writeConfig(Config&); |
287 | 287 | ||
288 | protected: | 288 | protected: |
289 | QSize sizeHint() const; | 289 | QSize sizeHint() const; |
290 | 290 | ||
291 | public slots: | 291 | public slots: |
292 | void showTemporaryScore(int amount); | 292 | void showTemporaryScore(int amount); |
293 | 293 | ||
294 | private slots: | 294 | private slots: |
295 | void showScores(); | 295 | void showScores(); |
296 | 296 | ||
297 | private: | 297 | private: |
298 | QStringList names; | 298 | QStringList names; |
299 | int *score; | 299 | int *score; |
300 | QTimer* msgtimer; | 300 | QTimer* msgtimer; |
301 | bool showwinner; | 301 | bool showwinner; |
302 | int boldone; | 302 | int boldone; |
303 | }; | 303 | }; |
304 | 304 | ||
305 | class NewGame; | 305 | class NewGame; |
306 | 306 | ||
307 | class WordGame : public QMainWindow { | 307 | class WordGame : public QMainWindow { |
308 | Q_OBJECT | 308 | Q_OBJECT |
309 | public: | 309 | public: |
310 | WordGame( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); | 310 | WordGame( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); |
311 | ~WordGame(); | 311 | ~WordGame(); |
312 | static QString appName() { return QString::fromLatin1("wordgame"); } | ||
312 | 313 | ||
313 | private slots: | 314 | private slots: |
314 | void endTurn(); | 315 | void endTurn(); |
315 | void resetTurn(); | 316 | void resetTurn(); |
316 | void passTurn(); | 317 | void passTurn(); |
317 | void think(); | 318 | void think(); |
318 | void endGame(); | 319 | void endGame(); |
319 | void startGame(); | 320 | void startGame(); |
320 | 321 | ||
321 | private: | 322 | private: |
322 | void writeConfig(); | 323 | void writeConfig(); |
323 | void readConfig(); | 324 | void readConfig(); |
324 | 325 | ||
325 | void startGame(const QStringList& pnames); | 326 | void startGame(const QStringList& pnames); |
326 | bool mayEndGame(); | 327 | bool mayEndGame(); |
327 | void openGameSelector(const QStringList& initnames); | 328 | void openGameSelector(const QStringList& initnames); |
328 | bool loadRules(const QString& filename); | 329 | bool loadRules(const QString& filename); |
329 | void addPlayer(const QString& name); | 330 | void addPlayer(const QString& name); |
330 | void addPlayer(const QString& name, int cpu); | 331 | void addPlayer(const QString& name, int cpu); |
331 | void nextPlayer(); | 332 | void nextPlayer(); |
332 | bool refillRack(int i); | 333 | bool refillRack(int i); |
333 | void readyRack(int i); | 334 | void readyRack(int i); |
334 | Rack* rack(int i) const; | 335 | Rack* rack(int i) const; |
335 | 336 | ||
336 | QWidgetStack *racks; | 337 | QWidgetStack *racks; |
337 | QToolBar* toolbar; | 338 | QToolBar* toolbar; |
338 | QWidget *vbox; | 339 | QWidget *vbox; |
339 | Board *board; | 340 | Board *board; |
340 | Bag *bag; | 341 | Bag *bag; |
341 | ScoreInfo *scoreinfo; | 342 | ScoreInfo *scoreinfo; |
342 | QToolButton *done; | 343 | QToolButton *done; |
343 | QToolButton *reset; | 344 | QToolButton *reset; |
diff --git a/noncore/games/wordgame/wordgame.pro b/noncore/games/wordgame/wordgame.pro index e997adc..7ef2bfd 100644 --- a/noncore/games/wordgame/wordgame.pro +++ b/noncore/games/wordgame/wordgame.pro | |||
@@ -1,13 +1,12 @@ | |||
1 | TEMPLATE= app | 1 | CONFIG = qt warn_on release quick-app |
2 | CONFIG = qt warn_on release | ||
3 | DESTDIR = $(OPIEDIR)/bin | ||
4 | HEADERS = wordgame.h | 2 | HEADERS = wordgame.h |
5 | SOURCES = main.cpp \ | 3 | SOURCES = main.cpp \ |
6 | wordgame.cpp | 4 | wordgame.cpp |
7 | INTERFACES= newgamebase.ui rulesbase.ui | 5 | INTERFACES= newgamebase.ui rulesbase.ui |
8 | TARGET = wordgame | 6 | TARGET = wordgame |
9 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
10 | DEPENDPATH+= $(OPIEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
11 | LIBS += -lqpe | 9 | LIBS += -lqpe |
12 | 10 | ||
11 | |||
13 | include ( $(OPIEDIR)/include.pro ) | 12 | include ( $(OPIEDIR)/include.pro ) |