/***************************************************************************** * Copyright (C) 1999-2005 Eliot * Authors: Antoine Fraboulet * Olivier Teuliere * * $Id: board.h,v 1.7 2005/04/20 18:52:39 ipkiss Exp $ * * 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 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *****************************************************************************/ #ifndef _BOARD_H_ #define _BOARD_H_ #include "tile.h" #include "cross.h" #include #include typedef struct _Dictionary*Dictionary; class Rack; class Round; class Results; using namespace std; #define BOARD_MIN 1 #define BOARD_MAX 15 #define BOARD_DIM 15 #define BOARD_REALDIM (BOARD_DIM + 2) // Template matrix class for convenience. template class Matrix: public vector > { public: // Construct a matrix with an initial value Matrix(int iSize1, int iSize2, const T &iValue) { resize(iSize1, vector(iSize2, iValue)); } // Construct a square matrix with an initial value Matrix(int iSize, const T &iValue) { resize(iSize, vector(iSize, iValue)); } }; class Board { public: Board(); virtual ~Board() {} Tile getTile(int iRow, int iCol) const; bool isJoker(int iRow, int iCol) const; bool isVacant(int iRow, int iCol) const; /*int score(Round);*/ void addRound(const Dictionary &iDic, const Round &iRound); void removeRound(const Dictionary &iDic, const Round &iRound); int checkRound(Round &iRound, bool iFirstTurn); /************************* * * *************************/ void testRound(const Round &iRound); void removeTestRound(); char getTestChar(int iRow, int iCol) const; /************************* * * board_search.c *************************/ void search(const Dictionary &iDic, const Rack &iRack, Results &oResults); void searchFirst(const Dictionary &iDic, const Rack &iRack, Results &oResults); /************************* * * board_cross.c *************************/ void buildCross(const Dictionary &iDic); /************************* * * *************************/ int getWordMultiplier(int iRow, int iCol) const; int getLetterMultiplier(int iRow, int iCol) const; private: Matrix m_tilesRow; Matrix m_tilesCol; Matrix m_jokerRow; Matrix m_jokerCol; Matrix m_crossRow; Matrix m_crossCol; Matrix m_pointRow; Matrix m_pointCol; Matrix m_testsRow; static const int m_tileMultipliers[BOARD_REALDIM][BOARD_REALDIM]; static const int m_wordMultipliers[BOARD_REALDIM][BOARD_REALDIM]; int checkRoundAux(Matrix &iTilesMx, Matrix &iCrossMx, Matrix &iPointsMx, Matrix &iJokerMx, Round &iRound, bool firstturn); #ifdef DEBUG void checkDouble(); #endif }; #endif