-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsquad.hpp
executable file
·46 lines (39 loc) · 1.03 KB
/
squad.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef SQUAD_HPP
#define SQUAD_HPP
#include "main.hpp"
class Squad
{
public:
enum SType {attack, defend, interdict, colonize, air, refuel};
//Static SquadID manipulation stuff
static squadID newSquad(SType type, ICoord target, AIPlayer * myPlayer);
static Squad * getSquad(squadID id);
static void removeSquad(squadID id);
//Actual Squad Stuff
Squad(SType type, ICoord targ, AIPlayer * myPlayer, squadID myID);//should maybe be protected
bool containsUnit(unitID theUnit);
void setTarget(ICoord newTarget);
ICoord getTarget();
void timepass(float dt);
void assignUnit(unitID theUnit);
void notifyDeath(unitID id);
void setType(SType newType);
SType getType();
protected:
//Static SquadID manipulation stuff
typedef std::map<squadID, Squad *> SquadMap;
static SquadMap squads;
static unsigned maxSquadID;
//Actual Squad Stuff
SType myType;
squadID myID;
AIPlayer * myPlayer;
std::set<unitID> myUnits;
ICoord target;
int pendingCons;
bool issuedCommand;
bool capturing;
unitID myNanites;
unitID myTransport;
};
#endif