own-tiles-renderer2
Version:
https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification
62 lines (40 loc) • 1.47 kB
JavaScript
// CMPT File Format
// https://github.com/CesiumGS/3d-tiles/blob/master/specification/TileFormats/Composite/README.md
import { LoaderBase } from './LoaderBase.js';
import { readMagicBytes } from '../utilities/readMagicBytes.js';
export class CMPTLoaderBase extends LoaderBase {
parse( buffer ) {
const dataView = new DataView( buffer );
// 16-byte header
// 4 bytes
const magic = readMagicBytes( dataView );
console.assert( magic === 'cmpt', 'CMPTLoader: The magic bytes equal "cmpt".' );
// 4 bytes
const version = dataView.getUint32( 4, true );
console.assert( version === 1, 'CMPTLoader: The version listed in the header is "1".' );
// 4 bytes
const byteLength = dataView.getUint32( 8, true );
console.assert( byteLength === buffer.byteLength, 'CMPTLoader: The contents buffer length listed in the header matches the file.' );
// 4 bytes
const tilesLength = dataView.getUint32( 12, true );
const tiles = [];
let offset = 16;
for ( let i = 0; i < tilesLength; i ++ ) {
const tileView = new DataView( buffer, offset, 12 );
const tileMagic = readMagicBytes( tileView );
const tileVersion = tileView.getUint32( 4, true );
const byteLength = tileView.getUint32( 8, true );
const tileBuffer = new Uint8Array( buffer, offset, byteLength );
tiles.push( {
type: tileMagic,
buffer: tileBuffer,
version: tileVersion,
} );
offset += byteLength;
}
return {
version,
tiles,
};
}
}