author | zecke <zecke> | 2004-07-24 18:11:45 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-07-24 18:11:45 (UTC) |
commit | 5a8963dff615da61611f5cc4bf410e7a6eeef55b (patch) (side-by-side diff) | |
tree | 5a559826d04a2f99a0d00bd8e979c4e9e133c05c | |
parent | e7ccf9bd121f98fa4c07b78eae7d36bdfa5b60bc (diff) | |
download | opie-5a8963dff615da61611f5cc4bf410e7a6eeef55b.zip opie-5a8963dff615da61611f5cc4bf410e7a6eeef55b.tar.gz opie-5a8963dff615da61611f5cc4bf410e7a6eeef55b.tar.bz2 |
Have a custom grid for the game. Now the name of fifteen is
pretty obsolete but hey it is fun :)
-rw-r--r-- | noncore/games/fifteen/fifteen.cpp | 153 | ||||
-rw-r--r-- | noncore/games/fifteen/fifteen.h | 2 | ||||
-rw-r--r-- | noncore/games/fifteen/fifteenconfigdialog.cpp | 4 |
3 files changed, 108 insertions, 51 deletions
diff --git a/noncore/games/fifteen/fifteen.cpp b/noncore/games/fifteen/fifteen.cpp index f425e06..bb57ee1 100644 --- a/noncore/games/fifteen/fifteen.cpp +++ b/noncore/games/fifteen/fifteen.cpp @@ -105,9 +105,8 @@ PiecesTable::PiecesTable(QWidget* parent, const char* name ) setNumRows(4); setNumCols(4); // init arrays - initMap(); readConfig(); initColors(); } @@ -123,13 +122,19 @@ void PiecesTable::writeConfig() { Config cfg("Fifteen"); cfg.setGroup("Game"); QStringList map; - for (int i = 0; i < 16; i++) + + int items = numRows()*numCols(); + + for (int i = 0; i < items; i++) map.append( QString::number( _map[i] ) ); + cfg.writeEntry("Map", map, '-'); cfg.writeEntry("Randomized", _randomized ); cfg.writeEntry("Image", _image ); + cfg.writeEntry("Rows", numRows() ); + cfg.writeEntry("Cols", numCols() ); } void PiecesTable::readConfig() { @@ -137,13 +142,27 @@ void PiecesTable::readConfig() cfg.setGroup("Game"); QStringList map = cfg.readListEntry("Map", '-'); _randomized = cfg.readBoolEntry( "Randomized", FALSE ); _image = cfg.readEntry( "Image", QString::null ); - int i = 0; + + int rows = cfg.readNumEntry( "Rows", 4 ); + int cols = cfg.readNumEntry( "Cols", 4 ); + uint items= rows*cols; + setNumRows( rows ); + setNumCols( cols ); + + initMap(); + + /* if we've more items than 'stones' don't restore the state */ + if ( items > map.count() ) + return; + + + uint i = 0; for ( QStringList::Iterator it = map.begin(); it != map.end(); ++it ) { _map[i] = (*it).toInt(); i++; - if ( i > 15 ) break; + if ( i > items ) break; } } @@ -151,32 +170,34 @@ void PiecesTable::readConfig() void PiecesTable::clear() { /* clean up and resize */ for (uint i = 0; i < _pixmap.count(); ++i ) delete _pixmap[i]; - _pixmap.resize( 16 ); + _pixmap.resize( numRows()*numCols() ); } /* * Let us pre-render the tiles. Either we've a Custom Image as * background or we use the drawRect to fill the background and * last we put the number on it */ -void PiecesTable::slotCustomImage( const QString& _str , bool upd ) { +void PiecesTable::slotCustomImage( const QString& _str ) { QString str = _str; /* couldn't load image fall back to plain tiles*/ QImage img = QImage(str); + QPixmap pix; if(img.isNull()) str = QString::null; - else + else{ img = img.smoothScale( width(),height() ); + pix.convertFromImage( img ); + } - QPixmap pix; - pix.convertFromImage( img ); - + /* initialize base point */ uint image=0; + /* clear the old tiles */ clear(); /* used variables */ int cols = numCols(); @@ -189,16 +210,18 @@ void PiecesTable::slotCustomImage( const QString& _str , bool upd ) { double bw = empty ? 0.9 : 0.98; int x_offset = cellW - int(cellW * bw); // 10% should be enough int y_offset = cellH - int(cellH * bw); - /* border polygon */ + /* border polygon calculation*/ initPolygon(cellW, cellH, x_offset, y_offset ); + /* avoid crashes with isNull() pixmap later */ if ( cellW == 0 || cellH == 0 ) { _pixmap.resize( 0 ); return; } + /* make it bold and bigger */ QFont f = font(); f.setPixelSize(18); f.setBold( TRUE ); @@ -234,11 +257,8 @@ void PiecesTable::slotCustomImage( const QString& _str , bool upd ) { _pixmap[image++] = pip; } } _image = str; - - if ( upd ) - update(); } /* * Calculate 3d-effect borders @@ -265,30 +285,44 @@ void PiecesTable::paintCell(QPainter *p, int row, int col) { int w = cellWidth(); int h = cellHeight(); + uint pos = col+row*numCols(); + + /* sanity check. setNumRows()/setNumCols() calls repaint() directly */ + if ( pos >= _map.count() ) { + p->drawRect(0, 0, w, h); + return; + } + int number = _map[col + row * numCols()] + 1; // draw cell background - if(number == 16) { + if(number == numCols()*numRows() ) { p->setBrush(colorGroup().background()); p->setPen(NoPen); p->drawRect(0, 0, w, h); return; } + /* no tiles then contentRect() is not visible or too small anyway */ if( _pixmap.count() == 0 ) return; p->drawPixmap(0, 0, *(_pixmap[(number-1 )]) ); } void PiecesTable::resizeEvent(QResizeEvent *e) { - QTableView::resizeEvent(e); + /* + * null if we faked it after the config dialog ran to + * regenerate everything + */ + if ( e ) + QTableView::resizeEvent(e); - setCellWidth(contentsRect().width()/ numRows()); - setCellHeight(contentsRect().height() / numCols()); + setCellWidth(contentsRect().width()/ numCols()); + setCellHeight(contentsRect().height() / numRows()); /* update the image and calculate border*/ slotCustomImage( _image ); @@ -299,15 +333,16 @@ void PiecesTable::initColors() { _colors.resize(numRows() * numCols()); for (int r = 0; r < numRows(); r++) for (int c = 0; c < numCols(); c++) - _colors[c + r *numCols()] = QColor(255 - 70 * c,255 - 70 * r, 150); + _colors[c + r *numCols()] = QColor( 255 - (70 * c)%255 ,255 - (70 * r)%255, 150); } void PiecesTable::initMap() { - _map.resize(16); - for ( int i = 0; i < 16; i++) + int items = numCols()*numRows(); + _map.resize( items ); + for ( int i = 0; i < items; i++) _map[i] = i; _randomized = false; } @@ -316,23 +351,25 @@ void PiecesTable::randomizeMap() { initMap(); _randomized = true; // find the free position - int pos = _map.find(15); + int cols = numCols(); + int rows = numRows(); + int pos = _map.find( cols*rows -1 ); int move = 0; while ( move < 333 ) { - int frow = pos / numCols(); - int fcol = pos - frow * numCols(); + int frow = pos / cols; + int fcol = pos - frow * cols; // find click position - int row = rand()%4; - int col = rand()%4; + int row = rand()%rows; + int col = rand()%cols; // sanity check - if ( row < 0 || row >= numRows() ) continue; - if ( col < 0 || col >= numCols() ) continue; + if ( row < 0 || row >= rows ) continue; + if ( col < 0 || col >= cols ) continue; if ( row != frow && col != fcol ) continue; move++; @@ -340,47 +377,48 @@ void PiecesTable::randomizeMap() if(row == frow) { if (col < fcol) { for(int c = fcol; c > col; c--) { - _map[c + row * numCols()] = _map[ c-1 + row *numCols()]; + _map[c + row * cols] = _map[ c-1 + row *cols]; } } else if (col > fcol) { for(int c = fcol; c < col; c++) { - _map[c + row * numCols()] = _map[ c+1 + row *numCols()]; + _map[c + row * cols] = _map[ c+1 + row *cols]; } } } // cols match -> shift pieces else if (col == fcol) { if (row < frow) { for(int r = frow; r > row; r--) { - _map[col + r * numCols()] = _map[ col + (r-1) *numCols()]; + _map[col + r * cols] = _map[ col + (r-1) *cols]; } } else if (row > frow) { for(int r = frow; r < row; r++) { - _map[col + r * numCols()] = _map[ col + (r+1) *numCols()]; + _map[col + r * cols] = _map[ col + (r+1) *cols]; } } } // move free cell to click position - _map[pos=(col + row * numCols())] = 15; + _map[pos=(col + row * cols)] = rows*cols-1; } repaint(); } void PiecesTable::checkwin() { if(!_randomized) return; + int items=numCols()*numRows(); int i; - for (i = 0; i < 16; i++) + for (i = 0; i < items; i++) if(i != _map[i]) break; - if (i == 16) { + if (i == items) { QMessageBox::information(this, tr("Fifteen Pieces"), tr("Congratulations!\nYou win the game!")); _randomized = FALSE; } @@ -426,23 +464,26 @@ void PiecesTable::mousePressEvent(QMouseEvent* e) } } else { // GAME LOGIC + int cols = numCols(); + int rows = numRows(); + int item = cols*rows -1; // find the free position - int pos = _map.find(15); + int pos = _map.find(item); if(pos < 0) return; - int frow = pos / numCols(); - int fcol = pos - frow * numCols(); + int frow = pos / cols; + int fcol = pos - frow * cols; // find click position int row = findRow(e->y()); int col = findCol(e->x()); // sanity check - if (row < 0 || row >= numRows()) return; - if (col < 0 || col >= numCols()) return; + if (row < 0 || row >= rows) return; + if (col < 0 || col >= cols) return; if ( row != frow && col != fcol ) return; // valid move? if(row != frow && col != fcol) return; @@ -451,15 +492,15 @@ void PiecesTable::mousePressEvent(QMouseEvent* e) if(row == frow) { if (col < fcol) { for(int c = fcol; c > col; c--) { - _map[c + row * numCols()] = _map[ c-1 + row *numCols()]; + _map[c + row * cols] = _map[ c-1 + row *cols]; updateCell(row, c, false); } } else if (col > fcol) { for(int c = fcol; c < col; c++) { - _map[c + row * numCols()] = _map[ c+1 + row *numCols()]; + _map[c + row * cols] = _map[ c+1 + row *cols]; updateCell(row, c, false); } } } @@ -467,21 +508,21 @@ void PiecesTable::mousePressEvent(QMouseEvent* e) else if (col == fcol) { if (row < frow) { for(int r = frow; r > row; r--) { - _map[col + r * numCols()] = _map[ col + (r-1) *numCols()]; + _map[col + r * cols] = _map[ col + (r-1) *cols]; updateCell(r, col, false); } } else if (row > frow) { for(int r = frow; r < row; r++) { - _map[col + r * numCols()] = _map[ col + (r+1) *numCols()]; + _map[col + r * cols] = _map[ col + (r+1) *cols]; updateCell(r, col, false); } } } // move free cell to click position - _map[col + row * numCols()] = 15; + _map[col + row * cols] = item; updateCell(row, col, false); // check if the player wins with this move checkwin(); @@ -493,7 +534,25 @@ void PiecesTable::slotConfigure() { _dialog = new FifteenConfigDialog(this, "Fifteen Configure Dialog", true ); _dialog->setImageSrc( _image ); - if ( QPEApplication::execDialog(_dialog) == QDialog::Accepted ) - slotCustomImage( _dialog->imageSrc(), true ); + _dialog->setGameboard( numRows(), numCols() ); + + if ( QPEApplication::execDialog(_dialog) == QDialog::Accepted ) { + /* + * update the board grid and reinit the game if changed + * First set new columns so the update will regenerate the + * tiles with slotCustomImage + */ + _image = _dialog->imageSrc(); + if (numRows() != _dialog->rows() || + numCols() != _dialog->columns() ) { + setNumCols(_dialog->columns()); + setNumRows(_dialog->rows()); + slotReset(); + } + resizeEvent( 0l ); + + + update(); + } } diff --git a/noncore/games/fifteen/fifteen.h b/noncore/games/fifteen/fifteen.h index 4b8702d..c70afc8 100644 --- a/noncore/games/fifteen/fifteen.h +++ b/noncore/games/fifteen/fifteen.h @@ -40,9 +40,9 @@ class PiecesTable : public QTableView ~PiecesTable(); protected slots: void slotConfigure(); - void slotCustomImage(const QString &str, bool upd = false); + void slotCustomImage(const QString &str); void slotRandomize(); void slotReset(); protected: diff --git a/noncore/games/fifteen/fifteenconfigdialog.cpp b/noncore/games/fifteen/fifteenconfigdialog.cpp index 3f974f8..8539e0e 100644 --- a/noncore/games/fifteen/fifteenconfigdialog.cpp +++ b/noncore/games/fifteen/fifteenconfigdialog.cpp @@ -44,11 +44,9 @@ using Opie::Ui::OFileDialog; FifteenConfigDialog::FifteenConfigDialog( QWidget* parent, const char* name, bool modal ) : FifteenConfigDialogBase( parent, name, modal ) -{ - grpGameGrid->hide(); -} +{} FifteenConfigDialog::~FifteenConfigDialog() {} |