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-05-29 07:37:00 +08:00
|
|
|
import { parseNj, parseXj } from '../parsing/ninja';
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-05-29 07:37:00 +08:00
|
|
|
const npcCache: Map<string, Promise<BufferGeometry>> = new Map();
|
|
|
|
const objectCache: Map<string, Promise<BufferGeometry>> = new Map();
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-05-29 07:37:00 +08:00
|
|
|
export function getNpcGeometry(npcType: NpcType): Promise<BufferGeometry> {
|
|
|
|
let geometry = npcCache.get(String(npcType.id));
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
if (geometry) {
|
|
|
|
return geometry;
|
|
|
|
} else {
|
2019-05-29 07:37:00 +08:00
|
|
|
geometry = getNpcData(npcType).then(({ url, data }) => {
|
2019-06-26 23:21:05 +08:00
|
|
|
const cursor = new BufferCursor(data, true);
|
2019-05-29 07:37:00 +08:00
|
|
|
const object3d = url.endsWith('.nj') ? parseNj(cursor) : parseXj(cursor);
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-05-29 07:37:00 +08:00
|
|
|
if (object3d) {
|
|
|
|
return object3d;
|
2019-05-29 00:40:29 +08:00
|
|
|
} else {
|
|
|
|
throw new Error('File could not be parsed into a BufferGeometry.');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-05-29 07:37:00 +08:00
|
|
|
npcCache.set(String(npcType.id), geometry);
|
2019-05-29 00:40:29 +08:00
|
|
|
return geometry;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-29 07:37:00 +08:00
|
|
|
export function getObjectGeometry(objectType: ObjectType): Promise<BufferGeometry> {
|
|
|
|
let geometry = objectCache.get(String(objectType.id));
|
2019-05-29 00:40:29 +08:00
|
|
|
|
|
|
|
if (geometry) {
|
|
|
|
return geometry;
|
|
|
|
} else {
|
2019-05-29 07:37:00 +08:00
|
|
|
geometry = getObjectData(objectType).then(({ url, data }) => {
|
2019-06-26 23:21:05 +08:00
|
|
|
const cursor = new BufferCursor(data, true);
|
2019-05-29 07:37:00 +08:00
|
|
|
const object3d = url.endsWith('.nj') ? parseNj(cursor) : parseXj(cursor);
|
2019-05-29 00:40:29 +08:00
|
|
|
|
2019-05-29 07:37:00 +08:00
|
|
|
if (object3d) {
|
|
|
|
return object3d;
|
2019-05-29 00:40:29 +08:00
|
|
|
} else {
|
|
|
|
throw new Error('File could not be parsed into a BufferGeometry.');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-05-29 07:37:00 +08:00
|
|
|
objectCache.set(String(objectType.id), geometry);
|
2019-05-29 00:40:29 +08:00
|
|
|
return geometry;
|
|
|
|
}
|
|
|
|
}
|