mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
![]() |
export function enumValues<E>(e: any): E[] {
|
||
|
const values = Object.values(e);
|
||
|
const numberValues = values.filter(v => typeof v === 'number');
|
||
|
|
||
|
if (numberValues.length) {
|
||
|
return numberValues as any as E[];
|
||
|
} else {
|
||
|
return values as any as E[];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export function enumNames(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, initialValue: V | ((key: K) => V)) {
|
||
|
this.keys = enumValues(enum_);
|
||
|
|
||
|
if (!(initialValue instanceof Function)) {
|
||
|
for (const key of this.keys) {
|
||
|
this.values.set(key, initialValue);
|
||
|
}
|
||
|
} else {
|
||
|
for (const key of this.keys) {
|
||
|
this.values.set(key, initialValue(key));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
get(key: K): V {
|
||
|
return this.values.get(key)!;
|
||
|
}
|
||
|
}
|