-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCommands.ts
70 lines (48 loc) · 1.3 KB
/
Commands.ts
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
import { Television } from "./Television"
export interface Command {
execute(): void
}
export class VolumeUpCommand implements Command {
tv: Television
constructor(_tv: Television){
this.tv = _tv
}
execute(): void {
console.log("Turning volume up")
this.tv.operation("volup")
console.log(`Volume is now ${this.tv.getVolume()}`)
}
}
export class VolumeDownCommand implements Command {
tv: Television
constructor(_tv: Television){
this.tv = _tv
}
execute(): void {
console.log("Turning volume down")
this.tv.operation("voldown")
console.log(`Volume is now ${this.tv.getVolume()}`)
}
}
export class ChannelUpCommand implements Command {
tv: Television
constructor(_tv: Television){
this.tv = _tv
}
execute(): void {
console.log("Turning channel up")
this.tv.operation("chup")
console.log(`Channel is now ${this.tv.getChannel()}`)
}
}
export class ChannelDownCommand implements Command {
tv: Television
constructor(_tv: Television){
this.tv = _tv
}
execute(): void {
console.log("Turning channel down")
this.tv.operation("chdown")
console.log(`Channel is now ${this.tv.getChannel()}`)
}
}