2019-05-29 00:40:29 +08:00
|
|
|
import { BufferGeometry } from 'three';
|
|
|
|
import { NpcType, ObjectType } from '../../domain';
|
2019-06-01 05:20:13 +08:00
|
|
|
import { getNpcData, getObjectData } from './binaryAssets';
|
2019-06-26 23:21:05 +08:00
|
|
|
import { BufferCursor } from '../BufferCursor';
|
2019-06-28 00:50:22 +08:00
|
|
|
import { parse_nj, parse_xj } from '../parsing/ninja';
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-06-28 00:50:22 +08:00
|
|
|
const npc_cache: Map<string, Promise<BufferGeometry>> = new Map();
|
|
|
|
const object_cache: Map<string, Promise<BufferGeometry>> = new Map();
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-06-28 00:50:22 +08:00
|
|
|
export function get_npc_geometry(npc_type: NpcType): Promise<BufferGeometry> {
|
|
|
|
let geometry = npc_cache.get(String(npc_type.id));
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
if (geometry) {
|
|
|
|
return geometry;
|
|
|
|
} else {
|
2019-06-28 00:50:22 +08:00
|
|
|
geometry = getNpcData(npc_type).then(({ url, data }) => {
|
2019-06-26 23:21:05 +08:00
|
|
|
const cursor = new BufferCursor(data, true);
|
2019-06-28 00:50:22 +08:00
|
|
|
const object_3d = url.endsWith('.nj') ? parse_nj(cursor) : parse_xj(cursor);
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-06-28 00:50:22 +08:00
|
|
|
if (object_3d) {
|
|
|
|
return object_3d;
|
2019-05-29 00:40:29 +08:00
|
|
|
} else {
|
|
|
|
throw new Error('File could not be parsed into a BufferGeometry.');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-06-28 00:50:22 +08:00
|
|
|
npc_cache.set(String(npc_type.id), geometry);
|
2019-05-29 00:40:29 +08:00
|
|
|
return geometry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-28 00:50:22 +08:00
|
|
|
export function get_object_geometry(object_type: ObjectType): Promise<BufferGeometry> {
|
|
|
|
let geometry = object_cache.get(String(object_type.id));
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
if (geometry) {
|
|
|
|
return geometry;
|
|
|
|
} else {
|
2019-06-28 00:50:22 +08:00
|
|
|
geometry = getObjectData(object_type).then(({ url, data }) => {
|
2019-06-26 23:21:05 +08:00
|
|
|
const cursor = new BufferCursor(data, true);
|
2019-06-28 00:50:22 +08:00
|
|
|
const object_3d = url.endsWith('.nj') ? parse_nj(cursor) : parse_xj(cursor);
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-06-28 00:50:22 +08:00
|
|
|
if (object_3d) {
|
|
|
|
return object_3d;
|
2019-05-29 00:40:29 +08:00
|
|
|
} else {
|
|
|
|
throw new Error('File could not be parsed into a BufferGeometry.');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-06-28 00:50:22 +08:00
|
|
|
object_cache.set(String(object_type.id), geometry);
|
2019-05-29 00:40:29 +08:00
|
|
|
return geometry;
|
|
|
|
}
|
|
|
|
}
|