| 
									
										
										
										
											2023-01-05 13:25:55 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  library_godot_webrtc.js                                               */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | const GodotRTCDataChannel = { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	// Our socket implementation that forwards events to C++.
 | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 	$GodotRTCDataChannel__deps: ['$IDHandler', '$GodotRuntime'], | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	$GodotRTCDataChannel: { | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 		connect: function (p_id, p_on_open, p_on_message, p_on_error, p_on_close) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 			if (!ref) { | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			ref.binaryType = 'arraybuffer'; | 
					
						
							|  |  |  | 			ref.onopen = function (event) { | 
					
						
							|  |  |  | 				p_on_open(); | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			ref.onclose = function (event) { | 
					
						
							|  |  |  | 				p_on_close(); | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			ref.onerror = function (event) { | 
					
						
							|  |  |  | 				p_on_error(); | 
					
						
							|  |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 			ref.onmessage = function (event) { | 
					
						
							|  |  |  | 				let buffer; | 
					
						
							|  |  |  | 				let is_string = 0; | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 				if (event.data instanceof ArrayBuffer) { | 
					
						
							|  |  |  | 					buffer = new Uint8Array(event.data); | 
					
						
							|  |  |  | 				} else if (event.data instanceof Blob) { | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 					GodotRuntime.error('Blob type not supported'); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 					return; | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 				} else if (typeof event.data === 'string') { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 					is_string = 1; | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 					const enc = new TextEncoder('utf-8'); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 					buffer = new Uint8Array(enc.encode(event.data)); | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 					GodotRuntime.error('Unknown message type'); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 					return; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 				const len = buffer.length * buffer.BYTES_PER_ELEMENT; | 
					
						
							|  |  |  | 				const out = GodotRuntime.malloc(len); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 				HEAPU8.set(buffer, out); | 
					
						
							|  |  |  | 				p_on_message(out, len, is_string); | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 				GodotRuntime.free(out); | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 			}; | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 		close: function (p_id) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 			if (!ref) { | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			ref.onopen = null; | 
					
						
							|  |  |  | 			ref.onmessage = null; | 
					
						
							|  |  |  | 			ref.onerror = null; | 
					
						
							|  |  |  | 			ref.onclose = null; | 
					
						
							|  |  |  | 			ref.close(); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 		get_prop: function (p_id, p_prop, p_def) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 			return (ref && ref[p_prop] !== undefined) ? ref[p_prop] : p_def; | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_ready_state_get__sig: 'ii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_datachannel_ready_state_get: function (p_id) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 		if (!ref) { | 
					
						
							|  |  |  | 			return 3; // CLOSED
 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 		switch (ref.readyState) { | 
					
						
							|  |  |  | 		case 'connecting': | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 		case 'open': | 
					
						
							|  |  |  | 			return 1; | 
					
						
							|  |  |  | 		case 'closing': | 
					
						
							|  |  |  | 			return 2; | 
					
						
							|  |  |  | 		case 'closed': | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			return 3; | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_send__sig: 'iiiii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_datachannel_send: function (p_id, p_buffer, p_length, p_raw) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 		if (!ref) { | 
					
						
							|  |  |  | 			return 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		const bytes_array = new Uint8Array(p_length); | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 		for (let i = 0; i < p_length; i++) { | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 			bytes_array[i] = GodotRuntime.getHeapValue(p_buffer + i, 'i8'); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (p_raw) { | 
					
						
							|  |  |  | 			ref.send(bytes_array.buffer); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			const string = new TextDecoder('utf-8').decode(bytes_array); | 
					
						
							|  |  |  | 			ref.send(string); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_is_ordered__sig: 'ii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_datachannel_is_ordered: function (p_id) { | 
					
						
							| 
									
										
										
										
											2021-07-17 20:03:37 -05:00
										 |  |  | 		return GodotRTCDataChannel.get_prop(p_id, 'ordered', true); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_id_get__sig: 'ii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_datachannel_id_get: function (p_id) { | 
					
						
							| 
									
										
										
										
											2021-07-17 20:03:37 -05:00
										 |  |  | 		return GodotRTCDataChannel.get_prop(p_id, 'id', 65535); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_max_packet_lifetime_get__sig: 'ii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_datachannel_max_packet_lifetime_get: function (p_id) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 		if (!ref) { | 
					
						
							|  |  |  | 			return 65535; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (ref['maxPacketLifeTime'] !== undefined) { | 
					
						
							|  |  |  | 			return ref['maxPacketLifeTime']; | 
					
						
							|  |  |  | 		} else if (ref['maxRetransmitTime'] !== undefined) { | 
					
						
							|  |  |  | 			// Guess someone didn't appreciate the standardization process.
 | 
					
						
							|  |  |  | 			return ref['maxRetransmitTime']; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return 65535; | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_max_retransmits_get__sig: 'ii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_datachannel_max_retransmits_get: function (p_id) { | 
					
						
							| 
									
										
										
										
											2021-07-17 20:03:37 -05:00
										 |  |  | 		return GodotRTCDataChannel.get_prop(p_id, 'maxRetransmits', 65535); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_is_negotiated__sig: 'ii', | 
					
						
							|  |  |  | 	godot_js_rtc_datachannel_is_negotiated: function (p_id) { | 
					
						
							| 
									
										
										
										
											2021-07-17 20:03:37 -05:00
										 |  |  | 		return GodotRTCDataChannel.get_prop(p_id, 'negotiated', 65535); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-20 11:44:40 -05:00
										 |  |  | 	godot_js_rtc_datachannel_get_buffered_amount__sig: 'ii', | 
					
						
							|  |  |  | 	godot_js_rtc_datachannel_get_buffered_amount: function (p_id) { | 
					
						
							|  |  |  | 		return GodotRTCDataChannel.get_prop(p_id, 'bufferedAmount', 0); | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_label_get__sig: 'ii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_datachannel_label_get: function (p_id) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 		if (!ref || !ref.label) { | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 		return GodotRuntime.allocString(ref.label); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_protocol_get__sig: 'ii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_datachannel_protocol_get: function (p_id) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 		if (!ref || !ref.protocol) { | 
					
						
							|  |  |  | 			return 0; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 		return GodotRuntime.allocString(ref.protocol); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_destroy__sig: 'vi', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_datachannel_destroy: function (p_id) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		GodotRTCDataChannel.close(p_id); | 
					
						
							|  |  |  | 		IDHandler.remove(p_id); | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_connect__sig: 'viiiiii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_datachannel_connect: function (p_id, p_ref, p_on_open, p_on_message, p_on_error, p_on_close) { | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 		const onopen = GodotRuntime.get_func(p_on_open).bind(null, p_ref); | 
					
						
							|  |  |  | 		const onmessage = GodotRuntime.get_func(p_on_message).bind(null, p_ref); | 
					
						
							|  |  |  | 		const onerror = GodotRuntime.get_func(p_on_error).bind(null, p_ref); | 
					
						
							|  |  |  | 		const onclose = GodotRuntime.get_func(p_on_close).bind(null, p_ref); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		GodotRTCDataChannel.connect(p_id, onopen, onmessage, onerror, onclose); | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_datachannel_close__sig: 'vi', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_datachannel_close: function (p_id) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 		if (!ref) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		GodotRTCDataChannel.close(p_id); | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | autoAddDeps(GodotRTCDataChannel, '$GodotRTCDataChannel'); | 
					
						
							|  |  |  | mergeInto(LibraryManager.library, GodotRTCDataChannel); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | const GodotRTCPeerConnection = { | 
					
						
							|  |  |  | 	$GodotRTCPeerConnection__deps: ['$IDHandler', '$GodotRuntime', '$GodotRTCDataChannel'], | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	$GodotRTCPeerConnection: { | 
					
						
							| 
									
										
										
										
											2022-09-08 04:39:32 +02:00
										 |  |  | 		// Enums
 | 
					
						
							|  |  |  | 		ConnectionState: { | 
					
						
							|  |  |  | 			'new': 0, | 
					
						
							|  |  |  | 			'connecting': 1, | 
					
						
							|  |  |  | 			'connected': 2, | 
					
						
							|  |  |  | 			'disconnected': 3, | 
					
						
							|  |  |  | 			'failed': 4, | 
					
						
							|  |  |  | 			'closed': 5, | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-08 04:39:32 +02:00
										 |  |  | 		ConnectionStateCompat: { | 
					
						
							|  |  |  | 			// Using values from IceConnectionState for browsers that do not support ConnectionState (notably Firefox).
 | 
					
						
							|  |  |  | 			'new': 0, | 
					
						
							|  |  |  | 			'checking': 1, | 
					
						
							|  |  |  | 			'connected': 2, | 
					
						
							|  |  |  | 			'completed': 2, | 
					
						
							|  |  |  | 			'disconnected': 3, | 
					
						
							|  |  |  | 			'failed': 4, | 
					
						
							|  |  |  | 			'closed': 5, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		IceGatheringState: { | 
					
						
							|  |  |  | 			'new': 0, | 
					
						
							|  |  |  | 			'gathering': 1, | 
					
						
							|  |  |  | 			'complete': 2, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		SignalingState: { | 
					
						
							|  |  |  | 			'stable': 0, | 
					
						
							|  |  |  | 			'have-local-offer': 1, | 
					
						
							|  |  |  | 			'have-remote-offer': 2, | 
					
						
							|  |  |  | 			'have-local-pranswer': 3, | 
					
						
							|  |  |  | 			'have-remote-pranswer': 4, | 
					
						
							|  |  |  | 			'closed': 5, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Callbacks
 | 
					
						
							|  |  |  | 		create: function (config, onConnectionChange, onSignalingChange, onIceGatheringChange, onIceCandidate, onDataChannel) { | 
					
						
							|  |  |  | 			let conn = null; | 
					
						
							|  |  |  | 			try { | 
					
						
							|  |  |  | 				conn = new RTCPeerConnection(config); | 
					
						
							|  |  |  | 			} catch (e) { | 
					
						
							|  |  |  | 				GodotRuntime.error(e); | 
					
						
							|  |  |  | 				return 0; | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-08 04:39:32 +02:00
										 |  |  | 			const id = IDHandler.add(conn); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if ('connectionState' in conn && conn['connectionState'] !== undefined) { | 
					
						
							|  |  |  | 				// Use "connectionState" if supported
 | 
					
						
							|  |  |  | 				conn.onconnectionstatechange = function (event) { | 
					
						
							|  |  |  | 					if (!IDHandler.get(id)) { | 
					
						
							|  |  |  | 						return; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					onConnectionChange(GodotRTCPeerConnection.ConnectionState[conn.connectionState] || 0); | 
					
						
							|  |  |  | 				}; | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				// Fall back to using "iceConnectionState" when "connectionState" is not supported (notably Firefox).
 | 
					
						
							|  |  |  | 				conn.oniceconnectionstatechange = function (event) { | 
					
						
							|  |  |  | 					if (!IDHandler.get(id)) { | 
					
						
							|  |  |  | 						return; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					onConnectionChange(GodotRTCPeerConnection.ConnectionStateCompat[conn.iceConnectionState] || 0); | 
					
						
							|  |  |  | 				}; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			conn.onicegatheringstatechange = function (event) { | 
					
						
							|  |  |  | 				if (!IDHandler.get(id)) { | 
					
						
							|  |  |  | 					return; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				onIceGatheringChange(GodotRTCPeerConnection.IceGatheringState[conn.iceGatheringState] || 0); | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			conn.onsignalingstatechange = function (event) { | 
					
						
							|  |  |  | 				if (!IDHandler.get(id)) { | 
					
						
							|  |  |  | 					return; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				onSignalingChange(GodotRTCPeerConnection.SignalingState[conn.signalingState] || 0); | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			conn.onicecandidate = function (event) { | 
					
						
							|  |  |  | 				if (!IDHandler.get(id)) { | 
					
						
							|  |  |  | 					return; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				const c = event.candidate; | 
					
						
							|  |  |  | 				if (!c || !c.candidate) { | 
					
						
							|  |  |  | 					return; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				const candidate_str = GodotRuntime.allocString(c.candidate); | 
					
						
							|  |  |  | 				const mid_str = GodotRuntime.allocString(c.sdpMid); | 
					
						
							|  |  |  | 				onIceCandidate(mid_str, c.sdpMLineIndex, candidate_str); | 
					
						
							|  |  |  | 				GodotRuntime.free(candidate_str); | 
					
						
							|  |  |  | 				GodotRuntime.free(mid_str); | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			conn.ondatachannel = function (event) { | 
					
						
							|  |  |  | 				if (!IDHandler.get(id)) { | 
					
						
							|  |  |  | 					return; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				const cid = IDHandler.add(event.channel); | 
					
						
							|  |  |  | 				onDataChannel(cid); | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			return id; | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-08 04:39:32 +02:00
										 |  |  | 		destroy: function (p_id) { | 
					
						
							|  |  |  | 			const conn = IDHandler.get(p_id); | 
					
						
							|  |  |  | 			if (!conn) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2022-09-08 04:39:32 +02:00
										 |  |  | 			conn.onconnectionstatechange = null; | 
					
						
							|  |  |  | 			conn.oniceconnectionstatechange = null; | 
					
						
							|  |  |  | 			conn.onicegatheringstatechange = null; | 
					
						
							|  |  |  | 			conn.onsignalingstatechange = null; | 
					
						
							|  |  |  | 			conn.onicecandidate = null; | 
					
						
							|  |  |  | 			conn.ondatachannel = null; | 
					
						
							|  |  |  | 			IDHandler.remove(p_id); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 		onsession: function (p_id, callback, session) { | 
					
						
							| 
									
										
										
										
											2022-09-08 04:39:32 +02:00
										 |  |  | 			if (!IDHandler.get(p_id)) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 			const type_str = GodotRuntime.allocString(session.type); | 
					
						
							|  |  |  | 			const sdp_str = GodotRuntime.allocString(session.sdp); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			callback(type_str, sdp_str); | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 			GodotRuntime.free(type_str); | 
					
						
							|  |  |  | 			GodotRuntime.free(sdp_str); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 		onerror: function (p_id, callback, error) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 			if (!ref) { | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 			GodotRuntime.error(error); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			callback(); | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-08 04:39:32 +02:00
										 |  |  | 	godot_js_rtc_pc_create__sig: 'iiiiiiii', | 
					
						
							|  |  |  | 	godot_js_rtc_pc_create: function (p_config, p_ref, p_on_connection_state_change, p_on_ice_gathering_state_change, p_on_signaling_state_change, p_on_ice_candidate, p_on_datachannel) { | 
					
						
							|  |  |  | 		const wrap = function (p_func) { | 
					
						
							|  |  |  | 			return GodotRuntime.get_func(p_func).bind(null, p_ref); | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 		return GodotRTCPeerConnection.create( | 
					
						
							|  |  |  | 			JSON.parse(GodotRuntime.parseString(p_config)), | 
					
						
							|  |  |  | 			wrap(p_on_connection_state_change), | 
					
						
							|  |  |  | 			wrap(p_on_signaling_state_change), | 
					
						
							|  |  |  | 			wrap(p_on_ice_gathering_state_change), | 
					
						
							|  |  |  | 			wrap(p_on_ice_candidate), | 
					
						
							|  |  |  | 			wrap(p_on_datachannel) | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_pc_close__sig: 'vi', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_pc_close: function (p_id) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 		if (!ref) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		ref.close(); | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_pc_destroy__sig: 'vi', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_pc_destroy: function (p_id) { | 
					
						
							| 
									
										
										
										
											2022-09-08 04:39:32 +02:00
										 |  |  | 		GodotRTCPeerConnection.destroy(p_id); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_pc_offer_create__sig: 'viiii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_pc_offer_create: function (p_id, p_obj, p_on_session, p_on_error) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 		if (!ref) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 		const onsession = GodotRuntime.get_func(p_on_session).bind(null, p_obj); | 
					
						
							|  |  |  | 		const onerror = GodotRuntime.get_func(p_on_error).bind(null, p_obj); | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 		ref.createOffer().then(function (session) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			GodotRTCPeerConnection.onsession(p_id, onsession, session); | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 		}).catch(function (error) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			GodotRTCPeerConnection.onerror(p_id, onerror, error); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_pc_local_description_set__sig: 'viiiii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_pc_local_description_set: function (p_id, p_type, p_sdp, p_obj, p_on_error) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 		if (!ref) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 		const type = GodotRuntime.parseString(p_type); | 
					
						
							|  |  |  | 		const sdp = GodotRuntime.parseString(p_sdp); | 
					
						
							|  |  |  | 		const onerror = GodotRuntime.get_func(p_on_error).bind(null, p_obj); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		ref.setLocalDescription({ | 
					
						
							|  |  |  | 			'sdp': sdp, | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 			'type': type, | 
					
						
							|  |  |  | 		}).catch(function (error) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			GodotRTCPeerConnection.onerror(p_id, onerror, error); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_pc_remote_description_set__sig: 'viiiiii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_pc_remote_description_set: function (p_id, p_type, p_sdp, p_obj, p_session_created, p_on_error) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 		if (!ref) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 		const type = GodotRuntime.parseString(p_type); | 
					
						
							|  |  |  | 		const sdp = GodotRuntime.parseString(p_sdp); | 
					
						
							|  |  |  | 		const onerror = GodotRuntime.get_func(p_on_error).bind(null, p_obj); | 
					
						
							|  |  |  | 		const onsession = GodotRuntime.get_func(p_session_created).bind(null, p_obj); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		ref.setRemoteDescription({ | 
					
						
							|  |  |  | 			'sdp': sdp, | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 			'type': type, | 
					
						
							|  |  |  | 		}).then(function () { | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 			if (type !== 'offer') { | 
					
						
							|  |  |  | 				return Promise.resolve(); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 			return ref.createAnswer().then(function (session) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 				GodotRTCPeerConnection.onsession(p_id, onsession, session); | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 		}).catch(function (error) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			GodotRTCPeerConnection.onerror(p_id, onerror, error); | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_pc_ice_candidate_add__sig: 'viiii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_pc_ice_candidate_add: function (p_id, p_mid_name, p_mline_idx, p_sdp) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 		if (!ref) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 		const sdpMidName = GodotRuntime.parseString(p_mid_name); | 
					
						
							|  |  |  | 		const sdpName = GodotRuntime.parseString(p_sdp); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		ref.addIceCandidate(new RTCIceCandidate({ | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 			'candidate': sdpName, | 
					
						
							|  |  |  | 			'sdpMid': sdpMidName, | 
					
						
							|  |  |  | 			'sdpMlineIndex': p_mline_idx, | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		})); | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	godot_js_rtc_pc_datachannel_create__deps: ['$GodotRTCDataChannel'], | 
					
						
							| 
									
										
										
										
											2020-12-03 12:51:17 +01:00
										 |  |  | 	godot_js_rtc_pc_datachannel_create__sig: 'iiii', | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | 	godot_js_rtc_pc_datachannel_create: function (p_id, p_label, p_config) { | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 		try { | 
					
						
							|  |  |  | 			const ref = IDHandler.get(p_id); | 
					
						
							|  |  |  | 			if (!ref) { | 
					
						
							|  |  |  | 				return 0; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 			const label = GodotRuntime.parseString(p_label); | 
					
						
							|  |  |  | 			const config = JSON.parse(GodotRuntime.parseString(p_config)); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			const channel = ref.createDataChannel(label, config); | 
					
						
							|  |  |  | 			return IDHandler.add(channel); | 
					
						
							|  |  |  | 		} catch (e) { | 
					
						
							| 
									
										
										
										
											2020-11-19 16:54:07 +01:00
										 |  |  | 			GodotRuntime.error(e); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | 			return 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-23 12:13:52 +01:00
										 |  |  | autoAddDeps(GodotRTCPeerConnection, '$GodotRTCPeerConnection'); | 
					
						
							| 
									
										
										
										
											2020-10-23 18:33:20 +02:00
										 |  |  | mergeInto(LibraryManager.library, GodotRTCPeerConnection); |