eliot/game/player.h

135 lines
3.6 KiB
C
Raw Normal View History

/*****************************************************************************
* Eliot
* Copyright (C) 2004-2012 Olivier Teulière & Antoine Fraboulet
* Authors: Olivier Teulière <ipkiss @@ gmail.com>
* Antoine Fraboulet <antoine.fraboulet @@ free.fr>
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*****************************************************************************/
2004-08-07 20:25:03 +02:00
#ifndef PLAYER_H_
#define PLAYER_H_
2004-08-07 20:25:03 +02:00
#include <vector>
2005-12-26 23:52:38 +01:00
#include <string>
#include "pldrack.h"
#include "history.h"
2012-02-18 22:26:52 +01:00
#include "logging.h"
using std::wstring;
2012-10-06 01:57:39 +02:00
class TurnData;
class Rack;
2005-03-27 19:30:48 +02:00
/**
* This class is the parent class for all the players involved in a game.
2005-11-06 02:09:41 +01:00
* It defines the common methods to update the rack, score, etc...
2005-03-27 19:30:48 +02:00
*/
class Player
{
2012-02-18 22:26:52 +01:00
DEFINE_LOGGER();
public:
explicit Player();
virtual ~Player() {}
// Pseudo RTTI
virtual bool isHuman() const = 0;
/// Get the name of the player
const wstring & getName() const { return m_name; }
/// Set the name of the player
void setName(const wstring &iName) { m_name = iName; }
2012-03-19 12:39:13 +01:00
/// Accessors for the table number
unsigned getTableNb() const { return m_tableNb; }
void setTableNb(unsigned tableNb) { m_tableNb = tableNb; }
/// ID handling
unsigned int getId() const { return m_id; }
2012-03-19 12:39:13 +01:00
void setId(unsigned int iId);
/**************************
* General getters
**************************/
/// Get the (possibly incomplete) rack of the player
2005-02-09 23:33:56 +01:00
const PlayedRack & getCurrentRack() const;
/// Get the previous rack
const PlayedRack & getLastRack() const;
/// Get the previous move (corresponding to the previous rack...)
const Move & getLastMove() const;
2005-02-09 23:33:56 +01:00
void setCurrentRack(const PlayedRack &iPld);
const History& getHistory() const { return m_history; }
History & accessHistory() { return m_history; }
/// Remove last turn
void removeLastTurn();
/// Return the total number of warnings received
unsigned getWarningsNb() const;
/// Return the total number of points received for moves alone
int getMovePoints() const;
/**
* Return the total number of penalties received
* (including the penalties due to warnings)
*/
int getPenaltyPoints() const;
/// Return the total number of solo points received
int getSoloPoints() const;
/// Return the total number of end game points
int getEndGamePoints() const;
/// Return the total score of the player, including solos, penalties, ...
int getTotalScore() const;
wstring toString() const;
2005-12-26 23:52:38 +01:00
private:
/// ID of the player
unsigned int m_id;
/// Name of the player
wstring m_name;
2012-03-19 12:39:13 +01:00
// Table number (optional: set to 0 if not used)
unsigned m_tableNb;
/// History of the racks and rounds for the player
History m_history;
};
2005-03-27 19:30:48 +02:00
/**
* Human player.
*/
class HumanPlayer: public Player
{
public:
HumanPlayer(): Player() {}
virtual ~HumanPlayer() {}
// Pseudo RTTI
virtual bool isHuman() const { return true; }
};
2004-08-07 20:25:03 +02:00
#endif