-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathautobot.ts
More file actions
80 lines (63 loc) · 1.69 KB
/
autobot.ts
File metadata and controls
80 lines (63 loc) · 1.69 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
interface AllModeCommand{
autobot;
Speak(phrase:string) : AllModeCommand;
}
class Autobot {
name = "";
make = "";
model = "";
constructor(){
}
public HasNameOf(name : string) : Autobot{
this.name = name;
return this;
}
public WithMake(make : string) : Autobot{
this.make = make;
return this;
}
public AndModel(model : string) : Autobot {
this.model = model;
return this;
}
public ITSALIVE() : BotModeCommand {
return new BotModeCommand(this);
}
}
class AutoModeCommand implements AllModeCommand{
autobot;
constructor(bot: Autobot){
this.autobot = bot;
}
public Speak(phrase:string){
console.log(phrase);
return this;
}
public Drive() : AutoModeCommand{
console.log(this.autobot.name + " begins to drive.")
return this;
}
public TransformToBot() : BotModeCommand {
return new BotModeCommand(this.autobot);
}
}
class BotModeCommand implements AllModeCommand{
autobot;
constructor(bot: Autobot){
this.autobot = bot;
}
public Shoot() : BotModeCommand {
return this;
}
public Speak(phrase:string){
console.log(phrase);
return this;
}
public TransformToAuto() : AutoModeCommand {
return new AutoModeCommand(this.autobot);
}
}
var bot = new Autobot();
bot.HasNameOf("Optimus Prime").WithMake("Mitsubishi?").AndModel("SemiTruck?")
.ITSALIVE().Speak("Autobots, transform and roll out!").Shoot().TransformToAuto().Drive().TransformToBot().Shoot().TransformToAuto().Drive()
bot.ITSALIVE();