mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00
35 lines
834 B
TypeScript
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)!;
|
|
}
|
|
}
|