184 lines
7.8 KiB
JavaScript
184 lines
7.8 KiB
JavaScript
|
|
var Module = typeof VisageModule !== 'undefined' ? VisageModule : {};
|
|
|
|
if (!Module.expectedDataFileDownloads) {
|
|
Module.expectedDataFileDownloads = 0;
|
|
}
|
|
|
|
Module.expectedDataFileDownloads++;
|
|
(function() {
|
|
// When running as a pthread, FS operations are proxied to the main thread, so we don't need to
|
|
// fetch the .data bundle on the worker
|
|
if (Module['ENVIRONMENT_IS_PTHREAD']) return;
|
|
var loadPackage = function(metadata) {
|
|
|
|
var PACKAGE_PATH = '';
|
|
if (typeof window === 'object') {
|
|
PACKAGE_PATH = window['encodeURIComponent'](window.location.pathname.toString().substring(0, window.location.pathname.toString().lastIndexOf('/')) + '/');
|
|
} else if (typeof process === 'undefined' && typeof location !== 'undefined') {
|
|
// web worker
|
|
PACKAGE_PATH = encodeURIComponent(location.pathname.toString().substring(0, location.pathname.toString().lastIndexOf('/')) + '/');
|
|
}
|
|
var PACKAGE_NAME = 'build/faceanalysis/visageAnalysisData.data';
|
|
var REMOTE_PACKAGE_BASE = 'visageAnalysisData.data';
|
|
if (typeof Module['locateFilePackage'] === 'function' && !Module['locateFile']) {
|
|
Module['locateFile'] = Module['locateFilePackage'];
|
|
err('warning: you defined Module.locateFilePackage, that has been renamed to Module.locateFile (using your locateFilePackage for now)');
|
|
}
|
|
var REMOTE_PACKAGE_NAME = Module['locateFile'] ? Module['locateFile'](REMOTE_PACKAGE_BASE, '') : REMOTE_PACKAGE_BASE;
|
|
var REMOTE_PACKAGE_SIZE = metadata['remote_package_size'];
|
|
|
|
function fetchRemotePackage(packageName, packageSize, callback, errback) {
|
|
if (typeof process === 'object' && typeof process.versions === 'object' && typeof process.versions.node === 'string') {
|
|
require('fs').readFile(packageName, function(err, contents) {
|
|
if (err) {
|
|
errback(err);
|
|
} else {
|
|
callback(contents.buffer);
|
|
}
|
|
});
|
|
return;
|
|
}
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open('GET', packageName, true);
|
|
xhr.responseType = 'arraybuffer';
|
|
xhr.onprogress = function(event) {
|
|
var url = packageName;
|
|
var size = packageSize;
|
|
if (event.total) size = event.total;
|
|
if (event.loaded) {
|
|
if (!xhr.addedTotal) {
|
|
xhr.addedTotal = true;
|
|
if (!Module.dataFileDownloads) Module.dataFileDownloads = {};
|
|
Module.dataFileDownloads[url] = {
|
|
loaded: event.loaded,
|
|
total: size
|
|
};
|
|
} else {
|
|
Module.dataFileDownloads[url].loaded = event.loaded;
|
|
}
|
|
var total = 0;
|
|
var loaded = 0;
|
|
var num = 0;
|
|
for (var download in Module.dataFileDownloads) {
|
|
var data = Module.dataFileDownloads[download];
|
|
total += data.total;
|
|
loaded += data.loaded;
|
|
num++;
|
|
}
|
|
total = Math.ceil(total * Module.expectedDataFileDownloads/num);
|
|
if (Module['setStatus']) Module['setStatus']('Downloading data... (' + loaded + '/' + total + ')');
|
|
} else if (!Module.dataFileDownloads) {
|
|
if (Module['setStatus']) Module['setStatus']('Downloading data...');
|
|
}
|
|
};
|
|
xhr.onerror = function(event) {
|
|
throw new Error("NetworkError for: " + packageName);
|
|
}
|
|
xhr.onload = function(event) {
|
|
if (xhr.status == 200 || xhr.status == 304 || xhr.status == 206 || (xhr.status == 0 && xhr.response)) { // file URLs can return 0
|
|
var packageData = xhr.response;
|
|
callback(packageData);
|
|
} else {
|
|
throw new Error(xhr.statusText + " : " + xhr.responseURL);
|
|
}
|
|
};
|
|
xhr.send(null);
|
|
};
|
|
|
|
function handleError(error) {
|
|
console.error('package error:', error);
|
|
};
|
|
|
|
var fetchedCallback = null;
|
|
var fetched = Module['getPreloadedPackage'] ? Module['getPreloadedPackage'](REMOTE_PACKAGE_NAME, REMOTE_PACKAGE_SIZE) : null;
|
|
|
|
if (!fetched) fetchRemotePackage(REMOTE_PACKAGE_NAME, REMOTE_PACKAGE_SIZE, function(data) {
|
|
if (fetchedCallback) {
|
|
fetchedCallback(data);
|
|
fetchedCallback = null;
|
|
} else {
|
|
fetched = data;
|
|
}
|
|
}, handleError);
|
|
|
|
function runWithFS() {
|
|
|
|
function assert(check, msg) {
|
|
if (!check) throw msg + new Error().stack;
|
|
}
|
|
Module['FS_createPath']("/", "vfa", true, true);
|
|
Module['FS_createPath']("/vfa", "gd", true, true);
|
|
Module['FS_createPath']("/vfa", "ed", true, true);
|
|
Module['FS_createPath']("/vfa", "ad", true, true);
|
|
|
|
/** @constructor */
|
|
function DataRequest(start, end, audio) {
|
|
this.start = start;
|
|
this.end = end;
|
|
this.audio = audio;
|
|
}
|
|
DataRequest.prototype = {
|
|
requests: {},
|
|
open: function(mode, name) {
|
|
this.name = name;
|
|
this.requests[name] = this;
|
|
Module['addRunDependency']('fp ' + this.name);
|
|
},
|
|
send: function() {},
|
|
onload: function() {
|
|
var byteArray = this.byteArray.subarray(this.start, this.end);
|
|
this.finish(byteArray);
|
|
},
|
|
finish: function(byteArray) {
|
|
var that = this;
|
|
// canOwn this data in the filesystem, it is a slide into the heap that will never change
|
|
Module['FS_createDataFile'](this.name, null, byteArray, true, true, true);
|
|
Module['removeRunDependency']('fp ' + that.name);
|
|
this.requests[this.name] = null;
|
|
}
|
|
};
|
|
|
|
var files = metadata['files'];
|
|
for (var i = 0; i < files.length; ++i) {
|
|
new DataRequest(files[i]['start'], files[i]['end'], files[i]['audio'] || 0).open('GET', files[i]['filename']);
|
|
}
|
|
|
|
function processPackageData(arrayBuffer) {
|
|
assert(arrayBuffer, 'Loading data file failed.');
|
|
assert(arrayBuffer instanceof ArrayBuffer, 'bad input to processPackageData');
|
|
var byteArray = new Uint8Array(arrayBuffer);
|
|
var curr;
|
|
// Reuse the bytearray from the XHR as the source for file reads.
|
|
DataRequest.prototype.byteArray = byteArray;
|
|
var files = metadata['files'];
|
|
for (var i = 0; i < files.length; ++i) {
|
|
DataRequest.prototype.requests[files[i].filename].onload();
|
|
} Module['removeRunDependency']('datafile_build/faceanalysis/visageAnalysisData.data');
|
|
|
|
};
|
|
Module['addRunDependency']('datafile_build/faceanalysis/visageAnalysisData.data');
|
|
|
|
if (!Module.preloadResults) Module.preloadResults = {};
|
|
|
|
Module.preloadResults[PACKAGE_NAME] = {fromCache: false};
|
|
if (fetched) {
|
|
processPackageData(fetched);
|
|
fetched = null;
|
|
} else {
|
|
fetchedCallback = processPackageData;
|
|
}
|
|
|
|
}
|
|
if (Module['calledRun']) {
|
|
runWithFS();
|
|
} else {
|
|
if (!Module['preRun']) Module['preRun'] = [];
|
|
Module["preRun"].push(runWithFS); // FS is not initialized yet, wait for it
|
|
}
|
|
|
|
}
|
|
loadPackage({"files": [{"filename": "/vfa/gd/gd.js.bin", "start": 0, "end": 1199312}, {"filename": "/vfa/gd/gd.js.json", "start": 1199312, "end": 1296960}, {"filename": "/vfa/ed/ed0.lbf", "start": 1296960, "end": 1406321}, {"filename": "/vfa/ed/ed1.lbf", "start": 1406321, "end": 1515682}, {"filename": "/vfa/ed/ed2.lbf", "start": 1515682, "end": 1625043}, {"filename": "/vfa/ed/ed3.lbf", "start": 1625043, "end": 1734404}, {"filename": "/vfa/ed/ed4.lbf", "start": 1734404, "end": 1843765}, {"filename": "/vfa/ed/ed5.lbf", "start": 1843765, "end": 1953126}, {"filename": "/vfa/ed/ed6.lbf", "start": 1953126, "end": 2062487}, {"filename": "/vfa/ad/ae.js.bin", "start": 2062487, "end": 3507959}, {"filename": "/vfa/ad/ae.js.json", "start": 3507959, "end": 3606487}], "remote_package_size": 3606487});
|
|
|
|
})();
|