mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-04 07:31:16 +00:00 
			
		
		
		
	Working, with emscripten > 2.0.9 Yes, the unreleased version. 2.0.9 works, but throws and error due to a bug in emscripten with the thirdparty ENet library. The issue is fixed upstream so newer releases will work.
		
			
				
	
	
		
			58 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
const Utils = { // eslint-disable-line no-unused-vars
 | 
						|
 | 
						|
	createLocateRewrite: function (execName) {
 | 
						|
		function rw(path) {
 | 
						|
			if (path.endsWith('.worker.js')) {
 | 
						|
				return `${execName}.worker.js`;
 | 
						|
			} else if (path.endsWith('.audio.worklet.js')) {
 | 
						|
				return `${execName}.audio.worklet.js`;
 | 
						|
			} else if (path.endsWith('.js')) {
 | 
						|
				return `${execName}.js`;
 | 
						|
			} else if (path.endsWith('.side.wasm')) {
 | 
						|
				return `${execName}.side.wasm`;
 | 
						|
			} else if (path.endsWith('.wasm')) {
 | 
						|
				return `${execName}.wasm`;
 | 
						|
			}
 | 
						|
			return path;
 | 
						|
		}
 | 
						|
		return rw;
 | 
						|
	},
 | 
						|
 | 
						|
	createInstantiatePromise: function (wasmLoader) {
 | 
						|
		let loader = wasmLoader;
 | 
						|
		function instantiateWasm(imports, onSuccess) {
 | 
						|
			loader.then(function (xhr) {
 | 
						|
				WebAssembly.instantiate(xhr.response, imports).then(function (result) {
 | 
						|
					onSuccess(result['instance'], result['module']);
 | 
						|
				});
 | 
						|
			});
 | 
						|
			loader = null;
 | 
						|
			return {};
 | 
						|
		}
 | 
						|
 | 
						|
		return instantiateWasm;
 | 
						|
	},
 | 
						|
 | 
						|
	findCanvas: function () {
 | 
						|
		const nodes = document.getElementsByTagName('canvas');
 | 
						|
		if (nodes.length && nodes[0] instanceof HTMLCanvasElement) {
 | 
						|
			return nodes[0];
 | 
						|
		}
 | 
						|
		return null;
 | 
						|
	},
 | 
						|
 | 
						|
	isWebGLAvailable: function (majorVersion = 1) {
 | 
						|
		let testContext = false;
 | 
						|
		try {
 | 
						|
			const testCanvas = document.createElement('canvas');
 | 
						|
			if (majorVersion === 1) {
 | 
						|
				testContext = testCanvas.getContext('webgl') || testCanvas.getContext('experimental-webgl');
 | 
						|
			} else if (majorVersion === 2) {
 | 
						|
				testContext = testCanvas.getContext('webgl2') || testCanvas.getContext('experimental-webgl2');
 | 
						|
			}
 | 
						|
		} catch (e) {
 | 
						|
			// Not available
 | 
						|
		}
 | 
						|
		return !!testContext;
 | 
						|
	},
 | 
						|
};
 |