Deep RTS
Classes | Enumerations | Variables
Constants Namespace Reference

Classes

class  Map
 

Enumerations

enum  Unit {
  Peasant = 1 , Peon = 2 , TownHall = 3 , Barracks = 4 ,
  Footman = 5 , Farm = 6 , Archer = 7 , None = -1
}
 
enum  Race { Human = 1 , Orc = 2 }
 
enum  PlayerState { Victory = 1 , Defeat = 2 , Playing = 3 }
 
enum  Resource { Lumber = 1 , Gold = 2 , Stone = 3 , Food = 4 }
 
enum  State {
  Spawning = 1 , Walking = 2 , Despawned = 3 , Harvesting = 4 ,
  Building = 5 , Combat = 6 , Dead = 7 , Idle = 8 ,
  Base = -1
}
 
enum  Pathfinding { Walkable = 1 , All = 2 , Attackable = 3 , Harvestable = 4 }
 
enum  Direction {
  Down = 1 , Up = 2 , Left = 3 , Right = 4 ,
  DownLeft = 5 , DownRight = 6 , UpLeft = 7 , UpRight = 8
}
 
enum  Action {
  PreviousUnit = 1 , NextUnit = 2 , MoveLeft = 3 , MoveRight = 4 ,
  MoveUp = 5 , MoveDown = 6 , MoveUpLeft = 7 , MoveUpRight = 8 ,
  MoveDownLeft = 9 , MoveDownRight = 10 , Attack = 11 , Harvest = 12 ,
  Build0 = 13 , Build1 = 14 , Build2 = 15 , NoAction = 16
}
 

Variables

const int MAX_PLAYERS = 8
 
const int MAX_UNITS = 1000
 
const int ACTION_MIN = 1
 
const int ACTION_MAX = 16
 
const std::unordered_map< std::string, int > TypeToID
 
const std::map< int, std::string > ActionToName
 

Enumeration Type Documentation

◆ Action

Enumerator
PreviousUnit 
NextUnit 
MoveLeft 
MoveRight 
MoveUp 
MoveDown 
MoveUpLeft 
MoveUpRight 
MoveDownLeft 
MoveDownRight 
Attack 
Harvest 
Build0 
Build1 
Build2 
NoAction 

◆ Direction

Enumerator
Down 
Up 
Left 
Right 
DownLeft 
DownRight 
UpLeft 
UpRight 

◆ Pathfinding

Enumerator
Walkable 
All 
Attackable 
Harvestable 

◆ PlayerState

Enumerator
Victory 
Defeat 
Playing 

◆ Race

Enumerator
Human 
Orc 

◆ Resource

Enumerator
Lumber 
Gold 
Stone 
Food 

◆ State

Enumerator
Spawning 
Walking 
Despawned 
Harvesting 
Building 
Combat 
Dead 
Idle 
Base 

◆ Unit

Enumerator
Peasant 
Peon 
TownHall 
Barracks 
Footman 
Farm 
Archer 
None 

Variable Documentation

◆ ACTION_MAX

const int Constants::ACTION_MAX = 16

◆ ACTION_MIN

const int Constants::ACTION_MIN = 1

◆ ActionToName

const std::map<int, std::string> Constants::ActionToName
Initial value:
= {
{PreviousUnit, "Prev Unit"},
{NextUnit, "Next Unit"},
{MoveLeft, "Move Left"},
{MoveRight, "Move Right"},
{MoveUp, "Move Up"},
{MoveDown, "Move Down"},
{MoveUpLeft, "Move Up Left"},
{MoveUpRight, "Move Up Right"},
{MoveDownLeft, "Move Down Left"},
{MoveDownRight, "Move Down Right"},
{Attack, "Attack"},
{Harvest, "Harvest"},
{Build0, "Build 0"},
{Build1, "Build 1"},
{Build2, "Build 2"},
{NoAction, "No Action"}
}
@ MoveDown
Definition: Constants.h:100
@ MoveUpRight
Definition: Constants.h:102
@ Attack
Definition: Constants.h:106
@ Build2
Definition: Constants.h:111
@ MoveDownRight
Definition: Constants.h:104
@ MoveUpLeft
Definition: Constants.h:101
@ NoAction
Definition: Constants.h:112
@ MoveUp
Definition: Constants.h:99
@ MoveLeft
Definition: Constants.h:97
@ PreviousUnit
Definition: Constants.h:95
@ Build1
Definition: Constants.h:110
@ Build0
Definition: Constants.h:109
@ MoveDownLeft
Definition: Constants.h:103
@ Harvest
Definition: Constants.h:107
@ NextUnit
Definition: Constants.h:96
@ MoveRight
Definition: Constants.h:98

◆ MAX_PLAYERS

const int Constants::MAX_PLAYERS = 8

◆ MAX_UNITS

const int Constants::MAX_UNITS = 1000

◆ TypeToID

const std::unordered_map<std::string, int> Constants::TypeToID
Initial value:
= {
{"Spawn", 1},
{"Grass", 2},
{"Wall", 3},
{"Desert", 4},
{"Water", 5},
{"Lumber", 6},
{"Gold", 7},
{"Stone", 8},
}