Deep RTS
Public Member Functions | Public Attributes | List of all members
Player Class Reference

#include <Player.h>

Public Member Functions

void spawnUnitNearSpawnPoint (Constants::Unit unitType)
 
 Player (Game &game, int id)
 Constructor. More...
 
void setName (std::string name)
 Set the name of the player. More...
 
void setTargetedUnitID (int targetedUnitID)
 Select a unit. More...
 
GamegetGame () const
 Get the game instance. More...
 
int getId () const
 Get Player's ID. More...
 
int getFoodConsumption () const
 Get the food consumption. More...
 
int getFood () const
 Get Max Food. More...
 
int getGold () const
 Get the gold resource. More...
 
int getStone () const
 Get the oil resource. More...
 
int getLumber () const
 Get the lumber resource. More...
 
virtual int getScore () const
 Get the score. More...
 
int getUnitCount () const
 Get the unit count for this player. More...
 
UnitgetTargetedUnit ()
 Get the targeted unit (Returns null if none) More...
 
int getTargetedUnitID () const
 Get the targeted unit ID (-1 if none) More...
 
virtual Constants::PlayerState playerState ()
 Check if player is defeated. More...
 
const std::string & getName () const
 Get the player name. More...
 
UnitaddUnit (Constants::Unit unitType)
 Add a unit to the player. More...
 
UnitspawnUnit (Unit &unit, Tile &tile, int select)
 
void removeUnit (Unit &unit)
 Removes a unit from the player. More...
 
Unitspawn (Tile &spawnPoint)
 Spawns a unit on a tile. More...
 
void reset ()
 Reset the player state. More...
 
void removeGold (int n)
 Remove N gold from the player. More...
 
void removeLumber (int n)
 Remove N lumber from the player. More...
 
void removeStone (int n)
 Remove N oil from the player. More...
 
void addGold (int n)
 Add N gold to the player. More...
 
void addLumber (int n)
 Add N lumber to the player. More...
 
void addStone (int n)
 Add N oil to the player. More...
 
void do_action (int actionID)
 
void do_manual_action (int manual_action_id, int x, int y)
 
void leftClick (int x, int y)
 
void rightClick (int x, int y)
 
bool canPlace (Unit &builder, Unit &unit, Tile &tile)
 TODO move these to Unit.h? More...
 
bool canAfford (Unit &unit) const
 

Public Attributes

const Configconfig
 
std::vector< int > unitIndexes
 List of all unit Ids belonging to this player. The object itself is located in Game class units list. More...
 
int stone = 0
 
int gold = 0
 
int lumber = 0
 
int foodConsumption = 0
 
int food = 0
 
int num_archer = 0
 Counters for buildings. More...
 
int num_peasant = 0
 
int num_footman = 0
 
int num_town_hall = 0
 
int num_farm = 0
 
int num_barrack = 0
 
int sGatheredGold = 0
 
int sGatheredLumber = 0
 
int sGatheredStone = 0
 
int sDamageDone = 0
 
int sDamageTaken = 0
 
int sUnitsCreated = 0
 

Constructor & Destructor Documentation

◆ Player()

Player::Player ( Game game,
int  id 
)

Constructor.

Member Function Documentation

◆ addGold()

void Player::addGold ( int  n)

Add N gold to the player.

◆ addLumber()

void Player::addLumber ( int  n)

Add N lumber to the player.

◆ addStone()

void Player::addStone ( int  n)

Add N oil to the player.

◆ addUnit()

Unit & Player::addUnit ( Constants::Unit  unitType)

Add a unit to the player.

Functions

◆ canAfford()

bool Player::canAfford ( Unit unit) const

◆ canPlace()

bool Player::canPlace ( Unit builder,
Unit unit,
Tile tile 
)

TODO move these to Unit.h?

◆ do_action()

void Player::do_action ( int  actionID)

◆ do_manual_action()

void Player::do_manual_action ( int  manual_action_id,
int  x,
int  y 
)

◆ getFood()

int Player::getFood ( ) const

Get Max Food.

◆ getFoodConsumption()

int Player::getFoodConsumption ( ) const

Get the food consumption.

◆ getGame()

Game & Player::getGame ( ) const

Get the game instance.

Getters

◆ getGold()

int Player::getGold ( ) const

Get the gold resource.

◆ getId()

int Player::getId ( ) const

Get Player's ID.

◆ getLumber()

int Player::getLumber ( ) const

Get the lumber resource.

◆ getName()

const std::string & Player::getName ( ) const

Get the player name.

◆ getScore()

int Player::getScore ( ) const
virtual

Get the score.

◆ getStone()

int Player::getStone ( ) const

Get the oil resource.

◆ getTargetedUnit()

Unit * Player::getTargetedUnit ( )

Get the targeted unit (Returns null if none)

◆ getTargetedUnitID()

int Player::getTargetedUnitID ( ) const

Get the targeted unit ID (-1 if none)

◆ getUnitCount()

int Player::getUnitCount ( ) const

Get the unit count for this player.

◆ leftClick()

void Player::leftClick ( int  x,
int  y 
)

◆ playerState()

Constants::PlayerState Player::playerState ( )
virtual

Check if player is defeated.

◆ removeGold()

void Player::removeGold ( int  n)

Remove N gold from the player.

◆ removeLumber()

void Player::removeLumber ( int  n)

Remove N lumber from the player.

◆ removeStone()

void Player::removeStone ( int  n)

Remove N oil from the player.

◆ removeUnit()

void Player::removeUnit ( Unit unit)

Removes a unit from the player.

◆ reset()

void Player::reset ( )

Reset the player state.

◆ rightClick()

void Player::rightClick ( int  x,
int  y 
)

◆ setName()

void Player::setName ( std::string  name)

Set the name of the player.

Setters

◆ setTargetedUnitID()

void Player::setTargetedUnitID ( int  targetedUnitID)

Select a unit.

◆ spawn()

Unit & Player::spawn ( Tile spawnPoint)

Spawns a unit on a tile.

◆ spawnUnit()

Unit & Player::spawnUnit ( Unit unit,
Tile tile,
int  select = 1 
)

◆ spawnUnitNearSpawnPoint()

void Player::spawnUnitNearSpawnPoint ( Constants::Unit  unitType)

Member Data Documentation

◆ config

const Config& Player::config

◆ food

int Player::food = 0

◆ foodConsumption

int Player::foodConsumption = 0

◆ gold

int Player::gold = 0

◆ lumber

int Player::lumber = 0

◆ num_archer

int Player::num_archer = 0

Counters for buildings.

◆ num_barrack

int Player::num_barrack = 0

◆ num_farm

int Player::num_farm = 0

◆ num_footman

int Player::num_footman = 0

◆ num_peasant

int Player::num_peasant = 0

◆ num_town_hall

int Player::num_town_hall = 0

◆ sDamageDone

int Player::sDamageDone = 0

◆ sDamageTaken

int Player::sDamageTaken = 0

◆ sGatheredGold

int Player::sGatheredGold = 0

Player Statistics

◆ sGatheredLumber

int Player::sGatheredLumber = 0

◆ sGatheredStone

int Player::sGatheredStone = 0

◆ stone

int Player::stone = 0

Player Resources

◆ sUnitsCreated

int Player::sUnitsCreated = 0

◆ unitIndexes

std::vector<int> Player::unitIndexes

List of all unit Ids belonging to this player. The object itself is located in Game class units list.


The documentation for this class was generated from the following files: