-
Notifications
You must be signed in to change notification settings - Fork 1
/
CommandeAppeler.cpp
48 lines (39 loc) · 1.17 KB
/
CommandeAppeler.cpp
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
47
#include <exception>
#include <string>
using namespace std;
#include "CommandeAppeler.h"
#include "Commande.h"
#include "Parser.h"
#include "Robot.h"
CommandeAppeler CommandeAppeler::monExemplaire("APPELER");
CommandeAppeler::CommandeAppeler(string nom) {
Commande::commandesInscrites()[nom] = this;
}
CommandeAppeler::CommandeAppeler(string nom, bool inscrire) {
if(inscrire){
Commande::commandesInscrites()[nom] = this;
}else{
this->_nom = nom;
}
}
Commande* CommandeAppeler::virtualConstructor(Parser* p) {
_nom = p->getString();
return new CommandeAppeler(_nom, false);
}
void CommandeAppeler::executer(Robot* r) {
cout << "EXECUTION DE APPELER(" << _nom << ")" << endl;
vector<Commande*> commandes = Commande::macroCommandes[_nom];
for(int i=0; i<commandes.size(); i++){
commandes[i]->executer(r);
}
}
void CommandeAppeler::annuler(Robot* r) {
cout << "ANNULATION DE APPELER(" << _nom << ")" << endl;
vector<Commande*> commandes = Commande::macroCommandes[_nom];
for(int i=commandes.size()-1; i>=0; i--){
commandes[i]->annuler(r);
}
}
bool CommandeAppeler::estAnnulable() {
return true;
}