-
Notifications
You must be signed in to change notification settings - Fork 31
/
shell.cpp
56 lines (53 loc) · 1.48 KB
/
shell.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
48
49
50
51
52
53
54
55
56
#include <iostream>
#include <memory> //shared_ptr
#include <sstream> //stringstream
#include <utility> //exchange
using namespace std;
int main() {
// CRIE SUA MOTO AQUI COM POTENCIA 1
while (true) {
string line, cmd;
getline(cin, line);
cout << "$" << line << endl;
stringstream ss(line);
ss >> cmd;
if (cmd == "end") {
break;
}
// else if (cmd == "init") {
// // INICIE A MOTO AQUI USANDO O CONSTRUTOR
// int power {};
// ss >> power;
// }
// else if (cmd == "show") {
// // MOSTRE A MOTO AQUI
// }
// else if (cmd == "leave") {
// // RETIRE A PESSOA DA MOTO
// // SE EXISTIR, MOSTRE A PESSOA
// }
// else if (cmd == "honk") {
// // BUZINE A MOTO
// }
// else if (cmd == "enter") {
// // CRIE UM PONTEIRO PARA PESSOA E INICIE-O AQUI
// // DEPOIS INSIRA A PERSON NA MOTO
// string name {};
// int age {};
// ss >> name >> age;
// }
// else if (cmd == "buy") {
// // COMPRE TEMPO PARA DIRIGIR
// int time {};
// ss >> time;
// }
// else if (cmd == "drive") {
// // DIRIJA A MOTO POR UM TEMPO
// int time {};
// ss >> time;
// }
else {
cout << "fail: invalid command\n";
}
}
}