179 lines
5.5 KiB
TypeScript
179 lines
5.5 KiB
TypeScript
class CallbackInfo {
|
||
public callback: Function = null;
|
||
public target: unknown = null;
|
||
public once = false;
|
||
|
||
public constructor(callback: Function, target: unknown = null, once: boolean = false) {
|
||
this.callback = callback;
|
||
this.target = target;
|
||
this.once = once;
|
||
}
|
||
}
|
||
|
||
type Parameters<T extends (...args: any) => any> = T extends (...args: infer P) => any ? P : any;
|
||
type AnyFunc = (...args: any[]) => any;
|
||
|
||
class CallbackList {
|
||
private callbacks: CallbackInfo[] = [];
|
||
|
||
public size() {
|
||
return this.callbacks.length;
|
||
}
|
||
|
||
public add(callback: Function, target: unknown = null, once: boolean = false) {
|
||
this.callbacks.push(new CallbackInfo(callback, target, once));
|
||
}
|
||
|
||
public emit(args: any[]) {
|
||
for (let index = 0; index < this.callbacks.length; index++) {
|
||
const info = this.callbacks[index];
|
||
// 先移除
|
||
if (info.once) {
|
||
this.callbacks.splice(index, 1);
|
||
--index;
|
||
}
|
||
if (info.callback) {
|
||
info.callback.apply(info.target, args);
|
||
}
|
||
}
|
||
}
|
||
|
||
public call(args: any[]) {
|
||
if (this.callbacks.length === 0) return;
|
||
const info = this.callbacks[0];
|
||
|
||
// 先移除
|
||
if (info.once) this.callbacks.splice(0, 1);
|
||
if (!info.callback) return;
|
||
|
||
return info.callback.apply(info.target, args);
|
||
}
|
||
|
||
public remove(callback: Function, target: unknown = null) {
|
||
for (let index = this.callbacks.length - 1; index >= 0; index--) {
|
||
const info = this.callbacks[index];
|
||
if (info.callback !== callback || info.target !== target) continue;
|
||
this.callbacks.splice(index, 1);
|
||
}
|
||
}
|
||
|
||
public removeByCallback(callback: Function) {
|
||
for (let index = this.callbacks.length - 1; index >= 0; index--) {
|
||
const info = this.callbacks[index];
|
||
if (info.callback !== callback) continue;
|
||
this.callbacks.splice(index, 1);
|
||
}
|
||
}
|
||
|
||
public removeByTarget(target: unknown) {
|
||
for (let index = this.callbacks.length - 1; index >= 0; index--) {
|
||
const info = this.callbacks[index];
|
||
if (info.target !== target) continue;
|
||
this.callbacks.splice(index, 1);
|
||
}
|
||
}
|
||
}
|
||
|
||
class EventEmitter {
|
||
private listeners: { [key in string]: CallbackList } = {};
|
||
|
||
public on(event: string | number, cb: (...data: any[]) => void, target?: unknown) {
|
||
if (!event.toString() || !cb) return;
|
||
if (!this.listeners[event]) this.listeners[event] = new CallbackList();
|
||
this.listeners[event].add(cb, target);
|
||
}
|
||
|
||
public once(event: string | number, cb: (...data: any[]) => void, target?: unknown) {
|
||
if (!event.toString() || !cb) return;
|
||
if (!this.listeners[event]) this.listeners[event] = new CallbackList();
|
||
this.listeners[event].add(cb, target, true);
|
||
}
|
||
|
||
public off(event: string | number, cb: (...data: any[]) => void, target?: unknown) {
|
||
if (!event.toString() || !cb) return;
|
||
if (!this.listeners[event]) return;
|
||
|
||
this.listeners[event].remove(cb, target);
|
||
}
|
||
|
||
public targetOff(target?: unknown) {
|
||
if (!target) return;
|
||
|
||
for (const key in this.listeners) {
|
||
if (Object.prototype.hasOwnProperty.call(this.listeners, key)) {
|
||
const element = this.listeners[key];
|
||
element.removeByTarget(target);
|
||
}
|
||
}
|
||
}
|
||
|
||
public emit(event: string | number, args: any[]) {
|
||
if (!event.toString()) return;
|
||
if (!this.listeners[event]) return;
|
||
this.listeners[event].emit(args);
|
||
}
|
||
|
||
public call(event: string | number, args: any[]) {
|
||
if (!event.toString()) return;
|
||
if (!this.listeners[event]) return;
|
||
return this.listeners[event].call(args);
|
||
}
|
||
}
|
||
|
||
export interface IBaseControl<C, E, T extends { [key in keyof E]?: AnyFunc }> {
|
||
readonly inst: Readonly<C>
|
||
|
||
//用于类型提示推导////////////////
|
||
new(): SuperBaseControl<E, T>//
|
||
///////////////////////////////
|
||
}
|
||
|
||
class SuperBaseControl<E, T extends { [key in keyof E]?: AnyFunc }> {
|
||
//用于类型提示推导//
|
||
private e: E;////
|
||
private t: T;////
|
||
/////////////////
|
||
|
||
private event = new EventEmitter();
|
||
|
||
protected call<K extends keyof E & keyof T>(key: E[K], ...args: Parameters<T[K]>): ReturnType<T[K]> {
|
||
return this.event.call.call(this.event, key, args);
|
||
}
|
||
|
||
protected emit<K extends keyof E & keyof T>(key: E[K], ...args: Parameters<T[K]>): void {
|
||
return this.event.emit.call(this.event, key, args);
|
||
}
|
||
|
||
private on(...args: any[]): void {
|
||
return this.event.on.apply(this.event, args);
|
||
}
|
||
|
||
private once(...args: any[]): void {
|
||
return this.event.once.apply(this.event, args);
|
||
}
|
||
|
||
private off(...args: any[]): void {
|
||
return this.event.off.apply(this.event, args);
|
||
}
|
||
|
||
private targetOff(target: any): void {
|
||
return this.event.targetOff.call(this.event, target);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* @deprecated 废弃,请使用Controller代替Control
|
||
*/
|
||
export default function BaseControl<C, E = any, T extends { [key in keyof E & string]?: AnyFunc } = any>(Event?: E) {
|
||
return class BaseControl extends SuperBaseControl<E, T> {
|
||
public static Event = Event;
|
||
|
||
private static _base_inst: Readonly<C> = null;
|
||
public static get inst() {
|
||
if (this._base_inst === null) {
|
||
this._base_inst = new this() as C;
|
||
}
|
||
return this._base_inst;
|
||
}
|
||
};
|
||
} |