Deep RTS
Public Types | Public Member Functions | Public Attributes | List of all members
DeepRTS::Scenario::Scenario Class Reference

#include <Scenario.h>

Inheritance diagram for DeepRTS::Scenario::Scenario:
Game DeepRTS::Scenario::GeneralAIOneVersusOne DeepRTS::Scenario::GoldCollectFifteen

Public Types

using ActionSequenceContainer = std::vector< std::tuple< Constants::Action, const std::string > >
 

Public Member Functions

 Scenario (const std::string &map, Config config, Criteria::ScenarioCriteria::ScenarioContainer &&criterias)
 
void update () override
 Game Update Function. More...
 
bool evaluate (const Player &player)
 
int reward (const Player &player)
 
virtual ActionSequenceContainer optimalStrategy ()
 
std::tuple< int, int, bool > computeOptimalStrategy (Player &player)
 
std::tuple< int, int, bool > optimalPlayGameStep (Player &player)
 
- Public Member Functions inherited from Game
 Game (const std::string &map_file)
 Game Constructor. More...
 
 Game (const std::string &map_file, Config config)
 
 ~Game ()
 
UnitgetUnit (int idx)
 Get a Unit via index. More...
 
uint32_t getMaxFPS () const
 
uint32_t getFPS () const
 
uint64_t getGameDuration () const
 
uint64_t getTicks () const
 
uint32_t getWidth () const
 
uint32_t getHeight () const
 
uint32_t getEpisode () const
 
uint32_t getId () const
 
long getTicksModifier () const
 
UnitgetUnitByNameID (const std::string &nameID)
 
void setMaxFPS (int fps_)
 Set the Game FPS. More...
 
void setSelectedPlayer (Player &player)
 Set selected player. More...
 
PlayeraddPlayer ()
 
void insertPlayer (Player &player)
 
void tick ()
 Game Tick Function. More...
 
virtual void _update ()
 
const cv::Mat & render ()
 Game Render Function. More...
 
virtual const cv::Mat & _render () const
 Game Render implementation. More...
 
void caption ()
 Print the Game Statistics. More...
 
virtual void _caption () const
 
void start ()
 
void stop ()
 
void reset ()
 
virtual void _reset ()
 
bool isTerminal ()
 
virtual void _onUnitCreate (const Unit &unit) const
 
virtual void _onUnitDestroy (const Unit &unit) const
 
virtual void _onResourceGather (const Tile &tile, const Unit &unit) const
 
virtual void _onResourceDepleted (const Tile &tile, const Unit &unit) const
 
virtual void _onEpisodeStart () const
 
virtual void _onEpisodeEnd () const
 
virtual void _onTileChange (const Tile &) const
 
virtual void _onUnitAttack (const Unit &unit) const
 

Public Attributes

std::array< Criteria::ScenarioCriteria::ScenarioContainer, 8 > criteriaList
 
- Public Attributes inherited from Game
std::unique_ptr< BaseGUIgui
 GUI Pointer. More...
 
const Config config
 
Map map
 Const Map (Order 1) More...
 
xt::xarray< double, xt::layout_type::row_major > state
 Game state (Order 2) More...
 
Tilemap tilemap
 Game Tilemap (Order 3) More...
 
StateManager stateManager
 Game State Manager. More...
 
std::vector< Playerplayers
 List of Players inside the game session. More...
 
std::vector< Unitunits
 List of Units inside the game session. More...
 
std::unordered_map< std::string, Unit * > unitsNameMap
 
uint32_t id {}
 Game Identification. More...
 
uint64_t ticks = 0
 Game Episode Ticks. More...
 
uint32_t episode = 1
 Game Episode. More...
 
uint32_t max_fps {}
 Game Max FPS. More...
 
uint32_t currentFPS = 0
 Game Current FPS. More...
 
bool terminal = false
 Game terminal flag. More...
 
PlayerselectedPlayer {}
 Selected player. More...
 
const cv::Mat renderPlaceholder
 empty opencv container in case of no GUI More...
 

Member Typedef Documentation

◆ ActionSequenceContainer

using DeepRTS::Scenario::Scenario::ActionSequenceContainer = std::vector<std::tuple<Constants::Action, const std::string> >

Constructor & Destructor Documentation

◆ Scenario()

DeepRTS::Scenario::Scenario::Scenario ( const std::string &  map,
Config  config,
Criteria::ScenarioCriteria::ScenarioContainer &&  criterias 
)
explicit

Member Function Documentation

◆ computeOptimalStrategy()

std::tuple< int, int, bool > DeepRTS::Scenario::Scenario::computeOptimalStrategy ( Player player)

◆ evaluate()

bool DeepRTS::Scenario::Scenario::evaluate ( const Player player)

◆ optimalPlayGameStep()

std::tuple< int, int, bool > DeepRTS::Scenario::Scenario::optimalPlayGameStep ( Player player)

◆ optimalStrategy()

DeepRTS::Scenario::Scenario::ActionSequenceContainer DeepRTS::Scenario::Scenario::optimalStrategy ( )
virtual

◆ reward()

int DeepRTS::Scenario::Scenario::reward ( const Player player)

◆ update()

void DeepRTS::Scenario::Scenario::update ( )
overridevirtual

Game Update Function.

Reimplemented from Game.

Member Data Documentation

◆ criteriaList

std::array<Criteria::ScenarioCriteria::ScenarioContainer, 8> DeepRTS::Scenario::Scenario::criteriaList

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