eliot/game/results.h

66 lines
2.1 KiB
C
Raw Normal View History

/*****************************************************************************
* Copyright (C) 1999-2005 Eliot
* Authors: Antoine Fraboulet <antoine.fraboulet@free.fr>
* Olivier Teuliere <ipkiss@via.ecp.fr>
*
2005-03-27 19:30:48 +02:00
* $Id: results.h,v 1.4 2005/03/27 17:30:48 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
*****************************************************************************/
2004-04-08 11:43:06 +02:00
#ifndef _RESULTS_H_
#define _RESULTS_H_
#include <vector>
#include "round.h"
2004-04-08 11:43:06 +02:00
using namespace std;
2004-04-08 11:43:06 +02:00
class Board;
class Rack;
typedef struct _Dictionary * Dictionary;
2005-03-27 19:30:48 +02:00
/**
* This class allows to perform a search on the board for a given rack,
* and it offers accessors to the resulting rounds.
* The rounds are sorted by decreasing number of points (but there is no
* other ordering between 2 rounds with the same number of points).
2005-03-27 19:30:48 +02:00
*/
class Results
{
public:
Results() {}
virtual ~Results() {}
2004-04-08 11:43:06 +02:00
int size() const { return m_rounds.size(); }
void clear() { m_rounds.clear(); }
const Round & get(int) const;
2004-04-08 11:43:06 +02:00
// Perform a search on the board
void search(const Dictionary &iDic, Board &iBoard,
const Rack &iRack, int iTurn);
2004-04-08 11:43:06 +02:00
// FIXME: These methods are used to fill the container with the rounds,
// but they should not be part of the public interface
void sort();
void add(const Round &iRound) { m_rounds.push_back(iRound); }
2004-04-08 11:43:06 +02:00
private:
vector<Round> m_rounds;
};
2004-04-08 11:43:06 +02:00
#endif