-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdialog.ts
89 lines (69 loc) · 2.24 KB
/
dialog.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import { int, xy, xyz, rgb, rgba } from "./util";
class Button {
constructor(btn: button) {
this.btn = btn;
}
destroy(): void {
this.onClickTrigs.forEach(onClickTrig => {
onClickTrig.destroy();
});
}
btn: button;
onClickTrigs: Set<Trigger> = new Set<Trigger>();
static clickedButton(): button {
return GetClickedButton();
}
onClick(action: () => void): void {
let trig = Trigger.create();
this.onClickTrigs.add(trig);
trig.addAction(action);
trig.registerDialogButtonEvent(this.btn);
}
}
class Dialog {
static _byDialog: Map<dialog, Dialog> = new Map<dialog, Dialog>();
constructor(dialog?: dialog) {
this.dialog = dialog == undefined ? DialogCreate() : dialog;
Dialog._byDialog.set(this.dialog, this);
}
static byDialog(dialog: dialog): Dialog {
return this._byDialog.has(dialog) ? this._byDialog.get(dialog) as Dialog : new Dialog();
}
destroy(): void {
DialogDestroy(this.dialog);
}
static clickedDialog(): Dialog {
return this.byDialog(GetClickedDialog());
}
dialog: dialog;
onClickTrigs: Set<Trigger> = new Set<Trigger>();
btns: Set<Button> = new Set<Button>();
clear(): void {
this.btns.forEach(btn => {
btn.destroy();
});
DialogClear(this.dialog);
}
setMessage(messageText: string): void {
DialogSetMessage(this.dialog, messageText);
}
addButton(buttonText: string, hotkey: number): button {
let btn: button = DialogAddButton(this.dialog, buttonText, hotkey);
this.btns.add(new Button(btn));
return btn;
}
addQuitButton(doScoreScreen: boolean, buttonText: string, hotkey: int): button {
let btn: button = DialogAddQuitButton(this.dialog, doScoreScreen, buttonText, hotkey);
this.btns.add(new Button(btn));
return btn;
}
display(whichPlayer: player, flag: boolean): void {
DialogDisplay(whichPlayer, this.dialog, flag);
}
onClick(action: () => void): void {
let trig = Trigger.create();
this.onClickTrigs.add(trig);
trig.addAction(action);
trig.registerDialogEvent(this.dialog);
}
}