2005-02-05 12:14:56 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* Copyright (C) 2005 Eliot
|
|
|
|
* Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
|
|
|
|
*
|
2005-02-12 19:54:57 +01:00
|
|
|
* $Id: duplicate.h,v 1.3 2005/02/12 18:54:57 ipkiss Exp $
|
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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _DUPLICATE_H_
|
|
|
|
#define _DUPLICATE_H_
|
|
|
|
|
|
|
|
#include "game.h"
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
|
|
|
|
|
|
|
class Duplicate: public Game
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/*************************
|
|
|
|
* Functions to create and destroy a game
|
|
|
|
* the dictionary does not belong to the
|
|
|
|
* game (ie: it won't be destroyed by ~Game)
|
|
|
|
*
|
|
|
|
* The dictionary can be changed afterwards by setDic
|
|
|
|
*************************/
|
|
|
|
Duplicate(const Dictionary &iDic);
|
|
|
|
virtual ~Duplicate();
|
|
|
|
|
|
|
|
virtual GameMode getMode() const { return kDUPLICATE; }
|
2005-02-09 23:33:56 +01:00
|
|
|
virtual string getModeAsString() const { return "Duplicate"; }
|
2005-02-05 12:14:56 +01:00
|
|
|
|
|
|
|
/*************************
|
|
|
|
* Game handling
|
|
|
|
*************************/
|
|
|
|
virtual int start();
|
|
|
|
virtual int setRackRandom(int, bool, set_rack_mode);
|
|
|
|
virtual int play(const string &iCoord, const string &iWord);
|
|
|
|
virtual int endTurn();
|
|
|
|
int setPlayer(int);
|
2005-02-12 19:54:57 +01:00
|
|
|
// Switch to the previous human player who has not played yet
|
|
|
|
void prevHumanPlayer();
|
|
|
|
// Switch to the next human player who has not played yet
|
|
|
|
void nextHumanPlayer();
|
2005-02-05 12:14:56 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void playRound(const Round &iRound, int n);
|
|
|
|
int endTurnForReal();
|
|
|
|
void end();
|
|
|
|
int duplicateAI(int n);
|
2005-02-12 19:54:57 +01:00
|
|
|
|
|
|
|
// m_hasPlayed[p] is true iff player p has played for this turn
|
|
|
|
map<int, bool> m_hasPlayed;
|
2005-02-05 12:14:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _DUPLICATE_H_ */
|