phantasmal-world/src/enums.ts
2019-07-02 17:00:24 +02:00

35 lines
834 B
TypeScript

export function enum_values<E>(e: any): E[] {
const values = Object.values(e);
const number_values = values.filter(v => typeof v === 'number');
if (number_values.length) {
return number_values as any as E[];
} else {
return values as any as E[];
}
}
export function enum_names(e: any): string[] {
return Object.keys(e).filter(k => typeof (e as any)[k] === 'string');
}
/**
* Map with a guaranteed value per enum key.
*/
export class EnumMap<K, V> {
private keys: K[];
private values = new Map<K, V>();
constructor(enum_: any, initial_value: (key: K) => V) {
this.keys = enum_values(enum_);
for (const key of this.keys) {
this.values.set(key, initial_value(key));
}
}
get(key: K): V {
return this.values.get(key)!;
}
}