2005-02-05 12:14:56 +01:00
|
|
|
/*****************************************************************************
|
2008-01-08 14:52:32 +01:00
|
|
|
* Eliot
|
2012-10-07 16:25:41 +02:00
|
|
|
* Copyright (C) 1999-2012 Antoine Fraboulet & Olivier Teulière
|
2008-01-08 14:52:32 +01:00
|
|
|
* Authors: Antoine Fraboulet <antoine.fraboulet @@ free.fr>
|
|
|
|
* Olivier Teulière <ipkiss @@ gmail.com>
|
2005-02-05 12:14:56 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2005-10-23 16:53:42 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2005-02-05 12:14:56 +01:00
|
|
|
*****************************************************************************/
|
2004-04-08 11:43:06 +02:00
|
|
|
|
2009-11-29 17:01:31 +01:00
|
|
|
#ifndef BOARD_H_
|
|
|
|
#define BOARD_H_
|
2004-04-08 11:43:06 +02:00
|
|
|
|
2005-02-05 12:14:56 +01:00
|
|
|
#include <string>
|
|
|
|
|
2009-01-17 15:57:32 +01:00
|
|
|
#include "matrix.h"
|
2008-01-08 14:52:32 +01:00
|
|
|
#include "tile.h"
|
|
|
|
#include "cross.h"
|
2012-02-18 22:26:52 +01:00
|
|
|
#include "logging.h"
|
2008-01-08 14:52:32 +01:00
|
|
|
|
2011-08-27 19:21:26 +02:00
|
|
|
class GameParams;
|
2012-12-26 14:14:44 +01:00
|
|
|
class BoardLayout;
|
2008-01-08 14:52:32 +01:00
|
|
|
class Dictionary;
|
2005-02-05 12:14:56 +01:00
|
|
|
class Rack;
|
|
|
|
class Round;
|
|
|
|
class Results;
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#define BOARD_MIN 1
|
|
|
|
#define BOARD_MAX 15
|
|
|
|
#define BOARD_DIM 15
|
|
|
|
|
|
|
|
|
2009-06-23 14:56:40 +02:00
|
|
|
/**
|
|
|
|
* Representation of the board.
|
|
|
|
*
|
|
|
|
* In all the methods, the given coordinates
|
|
|
|
* have to be BOARD_MIN <= int <= BOARD_MAX.
|
|
|
|
*/
|
2005-02-05 12:14:56 +01:00
|
|
|
class Board
|
|
|
|
{
|
2012-02-18 22:26:52 +01:00
|
|
|
DEFINE_LOGGER();
|
2005-02-05 12:14:56 +01:00
|
|
|
public:
|
2011-08-27 19:21:26 +02:00
|
|
|
Board(const GameParams &iParams);
|
2005-02-05 12:14:56 +01:00
|
|
|
|
2012-12-26 14:14:44 +01:00
|
|
|
const BoardLayout & getLayout() const { return m_layout; }
|
|
|
|
|
2005-02-05 12:14:56 +01:00
|
|
|
bool isJoker(int iRow, int iCol) const;
|
|
|
|
bool isVacant(int iRow, int iCol) const;
|
2005-11-05 00:26:03 +01:00
|
|
|
|
2009-06-23 15:21:19 +02:00
|
|
|
const Tile& getTile(int iRow, int iCol) const;
|
|
|
|
wstring getDisplayStr(int iRow, int iCol) const;
|
|
|
|
|
2005-02-05 12:14:56 +01:00
|
|
|
void addRound(const Dictionary &iDic, const Round &iRound);
|
|
|
|
void removeRound(const Dictionary &iDic, const Round &iRound);
|
2012-12-24 20:32:47 +01:00
|
|
|
int checkRound(Round &iRound, bool checkJunction = true) const;
|
2005-02-05 12:14:56 +01:00
|
|
|
|
2006-01-01 20:49:35 +01:00
|
|
|
/**
|
2012-02-18 21:54:42 +01:00
|
|
|
* Preview
|
2006-01-01 20:49:35 +01:00
|
|
|
*/
|
2009-06-23 14:56:40 +02:00
|
|
|
bool isTestChar(int iRow, int iCol) const;
|
2012-02-18 21:54:42 +01:00
|
|
|
const Tile& getTestTile(int iRow, int iCol) const;
|
2005-02-05 12:14:56 +01:00
|
|
|
void testRound(const Round &iRound);
|
|
|
|
void removeTestRound();
|
|
|
|
|
2008-11-22 14:09:28 +01:00
|
|
|
void search(const Dictionary &iDic, const Rack &iRack, Results &oResults) const;
|
|
|
|
void searchFirst(const Dictionary &iDic, const Rack &iRack, Results &oResults) const;
|
2005-02-05 12:14:56 +01:00
|
|
|
|
2006-11-05 14:30:06 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
string getCellContent_row(int row, int col) const;
|
|
|
|
string getCellContent_col(int row, int col) const;
|
|
|
|
|
2005-02-05 12:14:56 +01:00
|
|
|
private:
|
|
|
|
|
2011-08-27 19:21:26 +02:00
|
|
|
const GameParams &m_params;
|
|
|
|
|
2012-12-26 14:14:44 +01:00
|
|
|
const BoardLayout &m_layout;
|
|
|
|
|
2005-02-05 12:14:56 +01:00
|
|
|
Matrix<Tile> m_tilesRow;
|
|
|
|
Matrix<Tile> m_tilesCol;
|
|
|
|
|
|
|
|
Matrix<bool> m_jokerRow;
|
|
|
|
Matrix<bool> m_jokerCol;
|
|
|
|
|
|
|
|
Matrix<Cross> m_crossRow;
|
|
|
|
Matrix<Cross> m_crossCol;
|
|
|
|
|
|
|
|
Matrix<int> m_pointRow;
|
|
|
|
Matrix<int> m_pointCol;
|
|
|
|
|
2012-02-18 21:54:42 +01:00
|
|
|
Matrix<Tile> m_testsRow;
|
2005-02-05 12:14:56 +01:00
|
|
|
|
2008-09-13 23:32:45 +02:00
|
|
|
/// Flag indicating if the board is empty or if it has letters
|
|
|
|
bool m_isEmpty;
|
|
|
|
|
2012-06-18 21:21:40 +02:00
|
|
|
/**
|
|
|
|
* board_cross.c
|
|
|
|
*/
|
|
|
|
void buildCross(const Dictionary &iDic);
|
|
|
|
|
2008-11-22 14:09:28 +01:00
|
|
|
int checkRoundAux(const Matrix<Tile> &iTilesMx,
|
|
|
|
const Matrix<Cross> &iCrossMx,
|
|
|
|
const Matrix<int> &iPointsMx,
|
|
|
|
const Matrix<bool> &iJokerMx,
|
2012-12-24 20:32:47 +01:00
|
|
|
Round &iRound,
|
|
|
|
bool checkJunction) const;
|
2005-03-29 08:58:23 +02:00
|
|
|
#ifdef DEBUG
|
|
|
|
void checkDouble();
|
|
|
|
#endif
|
|
|
|
|
2005-02-05 12:14:56 +01:00
|
|
|
};
|
2004-04-08 11:43:06 +02:00
|
|
|
|
|
|
|
#endif
|
2006-01-01 20:49:35 +01:00
|
|
|
|