mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-22 14:33:51 +00:00
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
|
|
||
|
var assert = require('assert');
|
||
|
var fs = require('fs');
|
||
|
var vm = require('vm');
|
||
|
|
||
|
var worker = {};
|
||
|
|
||
|
global.includeInThisContext = function(path) {
|
||
|
var code = fs.readFileSync(path);
|
||
|
vm.runInThisContext(code, path);
|
||
|
};
|
||
|
|
||
|
global.importScripts = function(path) {
|
||
|
includeInThisContext('src/worker/'+path);
|
||
|
}
|
||
|
|
||
|
function Blob(blob) {
|
||
|
this.size = blob.length;
|
||
|
this.length = blob.length;
|
||
|
this.slice = function(a,b) {
|
||
|
var data = blob.slice(a,b);
|
||
|
var b = new Blob(data);
|
||
|
//console.log(a, b, data.length, data.slice(0,64));
|
||
|
//console.log(new Error().stack);
|
||
|
return b;
|
||
|
}
|
||
|
this.asArrayBuffer = function() {
|
||
|
var buf = new ArrayBuffer(blob.length);
|
||
|
var arr = new Uint8Array(buf);
|
||
|
for (var i=0; i<blob.length; i++)
|
||
|
arr[i] = blob[i].charCodeAt(0);
|
||
|
return arr;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
global.XMLHttpRequest = function() {
|
||
|
this.open = function(a,b,c) {
|
||
|
if (this.responseType == 'json') {
|
||
|
var txt = fs.readFileSync('src/worker/'+b);
|
||
|
this.response = JSON.parse(txt);
|
||
|
} else if (this.responseType == 'blob') {
|
||
|
var data = fs.readFileSync('src/worker/'+b, {encoding:'binary'});
|
||
|
//var buf = new ArrayBuffer(data.length);
|
||
|
//var blob = new Uint8Array(buf);
|
||
|
//blob.set(data);
|
||
|
this.response = new Blob(data);
|
||
|
}
|
||
|
}
|
||
|
this.send = function() { }
|
||
|
}
|
||
|
|
||
|
global.FileReaderSync = function() {
|
||
|
this.readAsArrayBuffer = function(blob) {
|
||
|
return blob.asArrayBuffer();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
global.onmessage = null;
|
||
|
global.postMessage = null;
|
||
|
|
||
|
includeInThisContext("src/worker/workermain.js");
|
||
|
|
||
|
global.ab2str = function(buf) {
|
||
|
return String.fromCharCode.apply(null, new Uint16Array(buf));
|
||
|
}
|