-rw-r--r-- | noncore/games/oyatzee/oyatzee.cpp | 112 | ||||
-rw-r--r-- | noncore/games/oyatzee/oyatzee.h | 58 |
2 files changed, 160 insertions, 10 deletions
diff --git a/noncore/games/oyatzee/oyatzee.cpp b/noncore/games/oyatzee/oyatzee.cpp index 5c4d1f7..6228a8f 100644 --- a/noncore/games/oyatzee/oyatzee.cpp +++ b/noncore/games/oyatzee/oyatzee.cpp @@ -39,6 +39,20 @@ OYatzee::OYatzee( QWidget *parent , const char *name, WFlags fl ) : QMainWindow( + + setPlayerNumber( 4 ); + setRoundsNumber( 1 ); + + playerList ps; + ps.append( new Player( "Carsten" ) ); + ps.append( new Player( "Julia" ) ); + ps.append( new Player( "Christine" ) ); + ps.append( new Player( "Stephan" ) ); + + Game *g = new Game( ps ); + + QVBoxLayout *vbox = new QVBoxLayout( thing ); - sb = new Scoreboard( thing , "sb" ); + sb = new Scoreboard( ps, thing , "sb" ); dw = new DiceWidget( thing , "dw" ); + connect( dw->rollButton, SIGNAL( clicked() ), this , SLOT( slotRollDices() ) ); @@ -46,7 +60,2 @@ OYatzee::OYatzee( QWidget *parent , const char *name, WFlags fl ) : QMainWindow( vbox->addWidget( dw ); - - setPlayerNumber( 2 ); - setRoundsNumber( 1 ); - - connect( dw->rollButton, SIGNAL( clicked() ), this , SLOT( slotRollDices() ) ); } @@ -162,4 +171,2 @@ void OYatzee::displayPossibilites() { - qDebug( "running displayPossibilites(), %d item", posibilities.count() ); - for ( QValueListInt::Iterator it = posibilities.begin() ; it != posibilities.end(); ++it ) @@ -242,4 +249,32 @@ void OYatzee::slotRollDices() */ -Scoreboard::Scoreboard( QWidget *parent, const char *name ) : QWidget( parent , name ) +Scoreboard::Scoreboard( playerList ps, QWidget *parent, const char *name ) : QWidget( parent , name ) +{ + ps_ = ps; + + pb = new Possibilityboard( this , "pb" ); + + createResultboards( 4 ); + + QHBoxLayout *hbox = new QHBoxLayout( this ); + + hbox->addWidget( pb ); + + hbox->addSpacing( 25 ); + + Resultboard *r = rbList.first(); + + for ( ; r != 0 ; r = rbList.next() ) + { + hbox->addWidget( r ); + } +} + +void Scoreboard::createResultboards(const int num) { + Player *p = ps_.first(); + for ( int i = 0 ; i < num ; ++i , p = ps_.next() ) + { + QString n = p->playerName; + rbList.append( new Resultboard( n , this ) ); + } } @@ -363 +398,60 @@ Player::Player( QString name ) + +/* + * Board + */ +Board::Board( QWidget *parent , const char* name ) : QWidget ( parent , name ) +{ +} + +void Board::paintEvent( QPaintEvent* ) +{ + QPainter p; + p.begin( this ); + + p.drawRect( 0,0, this->width() , this->height() ); +} + +/* + * Resultboard + */ + +Resultboard::Resultboard( QString playerName , QWidget *parent , const char* name ) : Board ( parent , name ) +{ + pName = playerName; +} + +void Resultboard::paintEvent( QPaintEvent* ) +{ + QPainter p; + p.begin( this ); + + p.drawText( 10,10, pName ); + p.drawRect( 0,0, this->width() , this->height() ); +} + +/* + * Possibilityboard + */ + +Possibilityboard::Possibilityboard( QWidget *parent , const char* name ) : Board ( parent , name ) +{ +} + +void Possibilityboard::paintEvent( QPaintEvent* ) +{ + QPainter p; + p.begin( this ); + + p.drawRect( 0,0, this->width() , this->height() ); +} + +/* + * Game + */ + +Game::Game( playerList pla ) +{ + players = pla; +} + diff --git a/noncore/games/oyatzee/oyatzee.h b/noncore/games/oyatzee/oyatzee.h index 65a18fc..dd996ee 100644 --- a/noncore/games/oyatzee/oyatzee.h +++ b/noncore/games/oyatzee/oyatzee.h @@ -14,5 +14,9 @@ class Scoreboard; class DiceWidget; +class Resultboard; +class Player; typedef QList<Dice> dicesList; +typedef QList<Resultboard> resultboardList; typedef QValueList<int> QValueListInt; +typedef QList<Player> playerList; @@ -56,2 +60,5 @@ class OYatzee : public QMainWindow { + /* + * Check what posibilities the player currently has + */ void detectPosibilities(); @@ -96,2 +103,37 @@ class DiceWidget : public QWidget + +class Board : public QWidget +{ + Q_OBJECT + public: + Board( QWidget *parent = 0, const char* name = 0 ); + + protected: + virtual void paintEvent( QPaintEvent *e ); +}; + +class Possibilityboard : public Board +{ + Q_OBJECT + + public: + Possibilityboard( QWidget *parent = 0, const char* name = 0 ); + + protected: + virtual void paintEvent( QPaintEvent *e ); +}; + +class Resultboard : public Board +{ + Q_OBJECT + + public: + Resultboard( QString playerName , QWidget *parent = 0, const char* name = 0 ); + QString pName; + + protected: + virtual void paintEvent( QPaintEvent *e ); +}; + + class Scoreboard : public QWidget @@ -100,4 +142,10 @@ class Scoreboard : public QWidget public: - Scoreboard( QWidget *parent = 0, const char* name = 0 ); + Scoreboard( playerList ps, QWidget *parent = 0, const char* name = 0 ); + + Possibilityboard *pb; + resultboardList rbList; + playerList ps_; + void createResultboards(const int); + protected: @@ -106,2 +154,3 @@ class Scoreboard : public QWidget + class Player @@ -115,2 +164,9 @@ class Player +class Game +{ + public: + Game( playerList pla ); + playerList players; +}; + #endif // WORDGAME_H |