-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.ts
197 lines (175 loc) · 5.95 KB
/
events.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
import { Log } from './log';
import { fork } from './promises';
import { Timer } from './timer';
import { arrayify, assert, getCallerLoc, isPromise, OrArray } from './util';
export abstract class Event {
static eventCount = 0;
num = ++Event.eventCount;
constructor(
public when = Timer._getTime(),
) {
}
get name(): string {
return (this as any).constructor.name;
}
static on(): EventTypePredicate<Event> {
return (e: Event) => e.name === this.name;
}
}
export class StateEvent<T, Prop extends keyof T> extends Event {//<T> extends Event {//
constructor(
// public on: any,
// public prop: string,
// public value: T,
public on: T,
public prop: Prop,
public value: T[Prop],
public oldValue: T[Prop],
) {
super();
}
}
export type EventPredicate<E extends Event = Event> = (e: E) => boolean;
export type EventTypePredicate<E extends Event = Event> = (e: E) => boolean;//e is E;
export type EventCallback<E extends Event = Event> = ((e: E) => 'remove'|any)|{[func: string]: {}};
export type EventListener<E extends Event = Event> = {
callback: EventCallback<E>;
predicates: EventPredicate<E>[];
cancelled?: true;
source?: string;
num: number;
};
let listenerCount = 0;
export const Events = {
listeners: [] as EventListener<any>[],
baseEvent: undefined as Event|undefined,
holdLevel: 0,
heldEvents: [] as [Event, string, Error][],
hold() {
this.holdLevel++;
},
release() {
assert(this.holdLevel>0);
this.holdLevel--;
if (this.holdLevel === 0) {
const held = this.heldEvents.slice();
this.heldEvents.clear();
for (const [e, c] of held) {
Events.fire(e, c);
}
}
},
fire(event: Event, context = '') {
if (this.holdLevel) {
this.heldEvents.push([event, context, new Error()]);
return;
}
if (!this.baseEvent) this.baseEvent = event;
const listeners = this.listeners.filter(l => !l.predicates.some(p => !p(event)) && !l.cancelled);
Log.trace([], 'fire event %s: %s %j at %i/%i listeners', event.name, context, event, listeners.length, this.listeners.length);
for (const l of listeners) {
if (l.cancelled) continue;
// if (l.source) Log.trace([], 'fire for listener at %s', l.source);
if (typeof l.callback === 'object') {
for (const funcName of Object.keys(l.callback)) {
const obj = l.callback[funcName] as any;
const func = obj[funcName] as (e: Event) => 'remove'|any;
assert(func);
if (func.apply(obj, [event]) === 'remove') {
delete l.callback[funcName];
}
}
if (Object.keys(l.callback).length === 0)
this.listeners.remove(l);
} else {
const result = l.callback(event);
if (isPromise(result))
fork(result).then(r2 => {
if (r2 === 'remove')
this.listeners.remove(l);
});
if (result === 'remove')
this.listeners.remove(l);
}
}
if (this.baseEvent === event) {
fork(this.firePriorities(), `fire priorities for event ${event.name}`);
this.baseEvent = undefined;
}
},
listen<E extends Event = any, L extends EventCallback<E> = EventCallback<E>>(
l: L,
typepred: OrArray<EventTypePredicate<E>>,
...preds: OrArray<EventPredicate<E>>[]
): EventListener<E> {
const listener: EventListener<E> = {
callback: l as any,
predicates: [typepred, ...preds].flat(),
source: getCallerLoc(true),
num: ++listenerCount,
};
this.listeners.push(listener);
return listener;
},
cancel(listener: EventListener) {
this.listeners.remove(listener);
listener.cancelled = true;
},
resetAll() {
this.listeners.splice(0, this.listeners.length);
this.waiting.splice(0, this.waiting.length);
this.firing = false;
},
resetPriorities() {
this.firing = false;
this.waiting.clear();
},
waiting: [] as { resolve: (finish: () => void) => void; priority: Priorities; context: string }[],
async waitPriority(priority: Priorities): Promise<() => void> {
assert(!this.waiting.find(w => w.priority === priority));
return new Promise(resolve => {
this.waiting.insert(
{resolve, priority, context: getCallerLoc(true)},
before => before.priority > priority);
});
},
async tryPriority(priority: Priorities): Promise<(() => void) | false> {
if (this.waiting.find(w => w.priority === priority))
return false;
return this.waitPriority(priority);
},
firing: false,
async firePriorities() {
if (this.firing) return;
this.firing = true;
try {
while (true) {
const waiter = this.waiting[0];
if (!waiter) return;
await new Promise<void>(r => {
waiter.resolve(r);
});
this.waiting.remove(waiter);
}
} finally {
this.firing = false;
}
},
};
// stuff on the top comes first
export enum Priorities {
ReleaseMb = 1,
EndMb,
ShowCards,
Mystery,
EndBall,
StartPoker,
StartMb,
Skillshot,
}
export function onType<T extends Event>(type: any): EventTypePredicate<T> {
return e => e instanceof type;
}
export function onAny<T extends Event>(...preds: OrArray<EventPredicate<T>>[]): EventPredicate<T> {
return e => preds.some(p => arrayify(p).every(q => q(e)));
}