diff options
Diffstat (limited to 'modules/webrtc')
| -rw-r--r-- | modules/webrtc/SCsub | 8 | ||||
| -rw-r--r-- | modules/webrtc/config.py | 5 | ||||
| -rw-r--r-- | modules/webrtc/register_types.h | 5 | ||||
| -rw-r--r-- | modules/webrtc/webrtc_data_channel_gdnative.cpp | 36 | ||||
| -rw-r--r-- | modules/webrtc/webrtc_data_channel_js.cpp | 4 | ||||
| -rw-r--r-- | modules/webrtc/webrtc_multiplayer.cpp | 6 | ||||
| -rw-r--r-- | modules/webrtc/webrtc_peer_connection.cpp | 4 | ||||
| -rw-r--r-- | modules/webrtc/webrtc_peer_connection_gdnative.cpp | 24 | ||||
| -rw-r--r-- | modules/webrtc/webrtc_peer_connection_js.cpp | 2 | 
9 files changed, 52 insertions, 42 deletions
diff --git a/modules/webrtc/SCsub b/modules/webrtc/SCsub index 868553b879..20b4c8f8d2 100644 --- a/modules/webrtc/SCsub +++ b/modules/webrtc/SCsub @@ -1,15 +1,15 @@  #!/usr/bin/env python -Import('env') -Import('env_modules') +Import("env") +Import("env_modules")  # Thirdparty source files  env_webrtc = env_modules.Clone()  use_gdnative = env_webrtc["module_gdnative_enabled"] -if use_gdnative: # GDNative is retained in Javascript for export compatibility -    env_webrtc.Append(CPPDEFINES=['WEBRTC_GDNATIVE_ENABLED']) +if use_gdnative:  # GDNative is retained in Javascript for export compatibility +    env_webrtc.Append(CPPDEFINES=["WEBRTC_GDNATIVE_ENABLED"])      env_webrtc.Prepend(CPPPATH=["#modules/gdnative/include/"])  env_webrtc.add_source_files(env.modules_sources, "*.cpp") diff --git a/modules/webrtc/config.py b/modules/webrtc/config.py index 48b4c33c5d..0a075ccef1 100644 --- a/modules/webrtc/config.py +++ b/modules/webrtc/config.py @@ -1,15 +1,18 @@  def can_build(env, platform):      return True +  def configure(env):      pass +  def get_doc_classes():      return [          "WebRTCPeerConnection",          "WebRTCDataChannel", -        "WebRTCMultiplayer" +        "WebRTCMultiplayer",      ] +  def get_doc_path():      return "doc_classes" diff --git a/modules/webrtc/register_types.h b/modules/webrtc/register_types.h index e6b50506e5..8f5b9e8452 100644 --- a/modules/webrtc/register_types.h +++ b/modules/webrtc/register_types.h @@ -28,5 +28,10 @@  /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                */  /*************************************************************************/ +#ifndef WEBRTC_REGISTER_TYPES_H +#define WEBRTC_REGISTER_TYPES_H +  void register_webrtc_types();  void unregister_webrtc_types(); + +#endif // WEBRTC_REGISTER_TYPES_H diff --git a/modules/webrtc/webrtc_data_channel_gdnative.cpp b/modules/webrtc/webrtc_data_channel_gdnative.cpp index b0c4b473fc..67ad2c07ce 100644 --- a/modules/webrtc/webrtc_data_channel_gdnative.cpp +++ b/modules/webrtc/webrtc_data_channel_gdnative.cpp @@ -39,94 +39,94 @@ void WebRTCDataChannelGDNative::_bind_methods() {  }  WebRTCDataChannelGDNative::WebRTCDataChannelGDNative() { -	interface = NULL; +	interface = nullptr;  }  WebRTCDataChannelGDNative::~WebRTCDataChannelGDNative() {  }  Error WebRTCDataChannelGDNative::poll() { -	ERR_FAIL_COND_V(interface == NULL, ERR_UNCONFIGURED); +	ERR_FAIL_COND_V(interface == nullptr, ERR_UNCONFIGURED);  	return (Error)interface->poll(interface->data);  }  void WebRTCDataChannelGDNative::close() { -	ERR_FAIL_COND(interface == NULL); +	ERR_FAIL_COND(interface == nullptr);  	interface->close(interface->data);  }  void WebRTCDataChannelGDNative::set_write_mode(WriteMode p_mode) { -	ERR_FAIL_COND(interface == NULL); +	ERR_FAIL_COND(interface == nullptr);  	interface->set_write_mode(interface->data, p_mode);  }  WebRTCDataChannel::WriteMode WebRTCDataChannelGDNative::get_write_mode() const { -	ERR_FAIL_COND_V(interface == NULL, WRITE_MODE_BINARY); +	ERR_FAIL_COND_V(interface == nullptr, WRITE_MODE_BINARY);  	return (WriteMode)interface->get_write_mode(interface->data);  }  bool WebRTCDataChannelGDNative::was_string_packet() const { -	ERR_FAIL_COND_V(interface == NULL, false); +	ERR_FAIL_COND_V(interface == nullptr, false);  	return interface->was_string_packet(interface->data);  }  WebRTCDataChannel::ChannelState WebRTCDataChannelGDNative::get_ready_state() const { -	ERR_FAIL_COND_V(interface == NULL, STATE_CLOSED); +	ERR_FAIL_COND_V(interface == nullptr, STATE_CLOSED);  	return (ChannelState)interface->get_ready_state(interface->data);  }  String WebRTCDataChannelGDNative::get_label() const { -	ERR_FAIL_COND_V(interface == NULL, ""); +	ERR_FAIL_COND_V(interface == nullptr, "");  	return String(interface->get_label(interface->data));  }  bool WebRTCDataChannelGDNative::is_ordered() const { -	ERR_FAIL_COND_V(interface == NULL, false); +	ERR_FAIL_COND_V(interface == nullptr, false);  	return interface->is_ordered(interface->data);  }  int WebRTCDataChannelGDNative::get_id() const { -	ERR_FAIL_COND_V(interface == NULL, -1); +	ERR_FAIL_COND_V(interface == nullptr, -1);  	return interface->get_id(interface->data);  }  int WebRTCDataChannelGDNative::get_max_packet_life_time() const { -	ERR_FAIL_COND_V(interface == NULL, -1); +	ERR_FAIL_COND_V(interface == nullptr, -1);  	return interface->get_max_packet_life_time(interface->data);  }  int WebRTCDataChannelGDNative::get_max_retransmits() const { -	ERR_FAIL_COND_V(interface == NULL, -1); +	ERR_FAIL_COND_V(interface == nullptr, -1);  	return interface->get_max_retransmits(interface->data);  }  String WebRTCDataChannelGDNative::get_protocol() const { -	ERR_FAIL_COND_V(interface == NULL, ""); +	ERR_FAIL_COND_V(interface == nullptr, "");  	return String(interface->get_protocol(interface->data));  }  bool WebRTCDataChannelGDNative::is_negotiated() const { -	ERR_FAIL_COND_V(interface == NULL, false); +	ERR_FAIL_COND_V(interface == nullptr, false);  	return interface->is_negotiated(interface->data);  }  Error WebRTCDataChannelGDNative::get_packet(const uint8_t **r_buffer, int &r_buffer_size) { -	ERR_FAIL_COND_V(interface == NULL, ERR_UNCONFIGURED); +	ERR_FAIL_COND_V(interface == nullptr, ERR_UNCONFIGURED);  	return (Error)interface->get_packet(interface->data, r_buffer, &r_buffer_size);  }  Error WebRTCDataChannelGDNative::put_packet(const uint8_t *p_buffer, int p_buffer_size) { -	ERR_FAIL_COND_V(interface == NULL, ERR_UNCONFIGURED); +	ERR_FAIL_COND_V(interface == nullptr, ERR_UNCONFIGURED);  	return (Error)interface->put_packet(interface->data, p_buffer, p_buffer_size);  }  int WebRTCDataChannelGDNative::get_max_packet_size() const { -	ERR_FAIL_COND_V(interface == NULL, 0); +	ERR_FAIL_COND_V(interface == nullptr, 0);  	return interface->get_max_packet_size(interface->data);  }  int WebRTCDataChannelGDNative::get_available_packet_count() const { -	ERR_FAIL_COND_V(interface == NULL, 0); +	ERR_FAIL_COND_V(interface == nullptr, 0);  	return interface->get_available_packet_count(interface->data);  } diff --git a/modules/webrtc/webrtc_data_channel_js.cpp b/modules/webrtc/webrtc_data_channel_js.cpp index 37203a4ec9..1b360720a2 100644 --- a/modules/webrtc/webrtc_data_channel_js.cpp +++ b/modules/webrtc/webrtc_data_channel_js.cpp @@ -334,7 +334,7 @@ WebRTCDataChannelJS::WebRTCDataChannelJS(int js_id) {  		stringToUTF8(str, ptr, len+1);  		return ptr;  	}, js_id); -	if(str != NULL) { +	if(str != nullptr) {  		_label.parse_utf8(str);  		EM_ASM({ _free($0) }, str);  	} @@ -347,7 +347,7 @@ WebRTCDataChannelJS::WebRTCDataChannelJS(int js_id) {  		stringToUTF8(str, ptr, len+1);  		return ptr;  	}, js_id); -	if(str != NULL) { +	if(str != nullptr) {  		_protocol.parse_utf8(str);  		EM_ASM({ _free($0) }, str);  	} diff --git a/modules/webrtc/webrtc_multiplayer.cpp b/modules/webrtc/webrtc_multiplayer.cpp index c24ae3468f..f294733961 100644 --- a/modules/webrtc/webrtc_multiplayer.cpp +++ b/modules/webrtc/webrtc_multiplayer.cpp @@ -144,7 +144,8 @@ void WebRTCMultiplayer::poll() {  void WebRTCMultiplayer::_find_next_peer() {  	Map<int, Ref<ConnectedPeer>>::Element *E = peer_map.find(next_packet_peer); -	if (E) E = E->next(); +	if (E) +		E = E->next();  	// After last.  	while (E) {  		for (List<Ref<WebRTCDataChannel>>::Element *F = E->get()->channels.front(); F; F = F->next()) { @@ -316,7 +317,7 @@ Error WebRTCMultiplayer::put_packet(const uint8_t *p_buffer, int p_buffer_size)  			break;  	} -	Map<int, Ref<ConnectedPeer>>::Element *E = NULL; +	Map<int, Ref<ConnectedPeer>>::Element *E = nullptr;  	if (target_peer > 0) { @@ -371,6 +372,7 @@ WebRTCMultiplayer::WebRTCMultiplayer() {  	unique_id = 0;  	next_packet_peer = 0;  	target_peer = 0; +	client_count = 0;  	transfer_mode = TRANSFER_MODE_RELIABLE;  	refuse_connections = false;  	connection_status = CONNECTION_DISCONNECTED; diff --git a/modules/webrtc/webrtc_peer_connection.cpp b/modules/webrtc/webrtc_peer_connection.cpp index 90c62e2495..399e4f09ff 100644 --- a/modules/webrtc/webrtc_peer_connection.cpp +++ b/modules/webrtc/webrtc_peer_connection.cpp @@ -30,7 +30,7 @@  #include "webrtc_peer_connection.h" -WebRTCPeerConnection *(*WebRTCPeerConnection::_create)() = NULL; +WebRTCPeerConnection *(*WebRTCPeerConnection::_create)() = nullptr;  Ref<WebRTCPeerConnection> WebRTCPeerConnection::create_ref() { @@ -40,7 +40,7 @@ Ref<WebRTCPeerConnection> WebRTCPeerConnection::create_ref() {  WebRTCPeerConnection *WebRTCPeerConnection::create() {  	if (!_create) -		return NULL; +		return nullptr;  	return _create();  } diff --git a/modules/webrtc/webrtc_peer_connection_gdnative.cpp b/modules/webrtc/webrtc_peer_connection_gdnative.cpp index 411ad50275..f082646629 100644 --- a/modules/webrtc/webrtc_peer_connection_gdnative.cpp +++ b/modules/webrtc/webrtc_peer_connection_gdnative.cpp @@ -36,12 +36,12 @@  #include "modules/gdnative/nativescript/nativescript.h"  #include "webrtc_data_channel_gdnative.h" -const godot_net_webrtc_library *WebRTCPeerConnectionGDNative::default_library = NULL; +const godot_net_webrtc_library *WebRTCPeerConnectionGDNative::default_library = nullptr;  Error WebRTCPeerConnectionGDNative::set_default_library(const godot_net_webrtc_library *p_lib) {  	if (default_library) {  		const godot_net_webrtc_library *old = default_library; -		default_library = NULL; +		default_library = nullptr;  		old->unregistered();  	}  	default_library = p_lib; @@ -64,54 +64,54 @@ void WebRTCPeerConnectionGDNative::_bind_methods() {  }  WebRTCPeerConnectionGDNative::WebRTCPeerConnectionGDNative() { -	interface = NULL; +	interface = nullptr;  }  WebRTCPeerConnectionGDNative::~WebRTCPeerConnectionGDNative() {  }  Error WebRTCPeerConnectionGDNative::initialize(Dictionary p_config) { -	ERR_FAIL_COND_V(interface == NULL, ERR_UNCONFIGURED); +	ERR_FAIL_COND_V(interface == nullptr, ERR_UNCONFIGURED);  	return (Error)interface->initialize(interface->data, (const godot_dictionary *)&p_config);  }  Ref<WebRTCDataChannel> WebRTCPeerConnectionGDNative::create_data_channel(String p_label, Dictionary p_options) { -	ERR_FAIL_COND_V(interface == NULL, NULL); +	ERR_FAIL_COND_V(interface == nullptr, nullptr);  	return (WebRTCDataChannel *)interface->create_data_channel(interface->data, p_label.utf8().get_data(), (const godot_dictionary *)&p_options);  }  Error WebRTCPeerConnectionGDNative::create_offer() { -	ERR_FAIL_COND_V(interface == NULL, ERR_UNCONFIGURED); +	ERR_FAIL_COND_V(interface == nullptr, ERR_UNCONFIGURED);  	return (Error)interface->create_offer(interface->data);  }  Error WebRTCPeerConnectionGDNative::set_local_description(String p_type, String p_sdp) { -	ERR_FAIL_COND_V(interface == NULL, ERR_UNCONFIGURED); +	ERR_FAIL_COND_V(interface == nullptr, ERR_UNCONFIGURED);  	return (Error)interface->set_local_description(interface->data, p_type.utf8().get_data(), p_sdp.utf8().get_data());  }  Error WebRTCPeerConnectionGDNative::set_remote_description(String p_type, String p_sdp) { -	ERR_FAIL_COND_V(interface == NULL, ERR_UNCONFIGURED); +	ERR_FAIL_COND_V(interface == nullptr, ERR_UNCONFIGURED);  	return (Error)interface->set_remote_description(interface->data, p_type.utf8().get_data(), p_sdp.utf8().get_data());  }  Error WebRTCPeerConnectionGDNative::add_ice_candidate(String sdpMidName, int sdpMlineIndexName, String sdpName) { -	ERR_FAIL_COND_V(interface == NULL, ERR_UNCONFIGURED); +	ERR_FAIL_COND_V(interface == nullptr, ERR_UNCONFIGURED);  	return (Error)interface->add_ice_candidate(interface->data, sdpMidName.utf8().get_data(), sdpMlineIndexName, sdpName.utf8().get_data());  }  Error WebRTCPeerConnectionGDNative::poll() { -	ERR_FAIL_COND_V(interface == NULL, ERR_UNCONFIGURED); +	ERR_FAIL_COND_V(interface == nullptr, ERR_UNCONFIGURED);  	return (Error)interface->poll(interface->data);  }  void WebRTCPeerConnectionGDNative::close() { -	ERR_FAIL_COND(interface == NULL); +	ERR_FAIL_COND(interface == nullptr);  	interface->close(interface->data);  }  WebRTCPeerConnection::ConnectionState WebRTCPeerConnectionGDNative::get_connection_state() const { -	ERR_FAIL_COND_V(interface == NULL, STATE_DISCONNECTED); +	ERR_FAIL_COND_V(interface == nullptr, STATE_DISCONNECTED);  	return (ConnectionState)interface->get_connection_state(interface->data);  } diff --git a/modules/webrtc/webrtc_peer_connection_js.cpp b/modules/webrtc/webrtc_peer_connection_js.cpp index a84dabab72..593c3a5162 100644 --- a/modules/webrtc/webrtc_peer_connection_js.cpp +++ b/modules/webrtc/webrtc_peer_connection_js.cpp @@ -279,7 +279,7 @@ Ref<WebRTCDataChannel> WebRTCPeerConnectionJS::create_data_channel(String p_chan  		}  	}, _js_id, p_channel.utf8().get_data(), config.utf8().get_data());  	/* clang-format on */ -	ERR_FAIL_COND_V(id == 0, NULL); +	ERR_FAIL_COND_V(id == 0, nullptr);  	return memnew(WebRTCDataChannelJS(id));  }  |