virtualx-engine/modules/gdnative
Fabio Alessandrelli 729b1e9941 WebRTC refactor. Data channels, STUN/TURN support.
A big refactor to the WebRTC module. API is now considered quite stable.

Highlights:

- Renamed `WebRTCPeer` to `WebRTCPeerConnection`.
- `WebRTCPeerConnection` no longer act as `PacketPeer`, it only handle the connection itself (a bit like `TCP_Server`)
- Added new `WebRTCDataChannel` class which inherits from `PacketPeer` to handle data transfer.
- Add `WebRTCPeerConnection.initialize` method to create a new connection with the desired configuration provided as dictionary ([see MDN docs](https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/RTCPeerConnection#RTCConfiguration_dictionary)).
- Add `WebRTCPeerConnection.create_data_channel` method to create a data channel for the given connection. The connection must be in `STATE_NEW` as specified by the standard ([see MDN docs for options](https://developer.mozilla.org/en-US/docs/Web/API/RTCPeerConnection/createDataChannel#RTCDataChannelInit_dictionary)).
- Add a `data_channel_received` signal to `WebRTCPeerConnection` for in-band (not negotiated) channels.
- Renamed `WebRTCPeerConnection` `offer_created` signal to `session_description_created`.
- Renamed `WebRTCPeerConnection` `new_ice_candidate` signal to `ice_candidate_created`
2019-05-16 11:21:20 +02:00
..
android Update copyright statements to 2019 2019-01-01 12:58:10 +01:00
arvr Forgot a parameter in the ARVR gdnative bindings for notifications 2019-04-30 21:47:14 +10:00
doc_classes WebRTC refactor. Data channels, STUN/TURN support. 2019-05-16 11:21:20 +02:00
gdnative added godot_dictionary_get_with_default to GDNative 2019-02-21 20:12:57 +01:00
include WebRTC refactor. Data channels, STUN/TURN support. 2019-05-16 11:21:20 +02:00
nativescript Fix indexing failure in NativeScriptLanguage::unregister_binding_functions. 2019-05-15 15:28:55 -04:00
net WebRTC refactor. Data channels, STUN/TURN support. 2019-05-16 11:21:20 +02:00
pluginscript Replace a few #if/#elif with #ifdef and "#elif defined" 2019-04-05 23:41:51 +02:00
videodecoder Fixes VideostreamGDNative crash on audio_channel=0. 2019-05-04 00:34:58 +05:30
config.py WebRTC refactor. Data channels, STUN/TURN support. 2019-05-16 11:21:20 +02:00
gdnative.cpp Fix GDNative library resource loading. 2019-05-12 21:26:22 +02:00
gdnative.h Fix GDNative library resource loading. 2019-05-12 21:26:22 +02:00
gdnative_api.json WebRTC refactor. Data channels, STUN/TURN support. 2019-05-16 11:21:20 +02:00
gdnative_builders.py Fixing C compatiblity for GDNative NET module 2019-02-24 21:23:23 +01:00
gdnative_library_editor_plugin.cpp Update copyright statements to 2019 2019-01-01 12:58:10 +01:00
gdnative_library_editor_plugin.h Update copyright statements to 2019 2019-01-01 12:58:10 +01:00
gdnative_library_singleton_editor.cpp Update GDNativeLibrarySingletonEditor. 2019-05-15 18:08:17 +02:00
gdnative_library_singleton_editor.h Update GDNativeLibrarySingletonEditor. 2019-05-15 18:08:17 +02:00
register_types.cpp Update GDNativeLibrarySingletonEditor. 2019-05-15 18:08:17 +02:00
register_types.h Update copyright statements to 2019 2019-01-01 12:58:10 +01:00
SCsub SCons: Always use env.Prepend for CPPPATH 2019-04-30 13:12:06 +02:00