class_webrtcpeerconnection.rst 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. :github_url: hide
  2. .. Generated automatically by doc/tools/make_rst.py in Godot's source tree.
  3. .. DO NOT EDIT THIS FILE, but the WebRTCPeerConnection.xml source instead.
  4. .. The source is found in doc/classes or modules/<name>/doc_classes.
  5. .. _class_WebRTCPeerConnection:
  6. WebRTCPeerConnection
  7. ====================
  8. **Inherits:** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
  9. **Inherited By:** :ref:`WebRTCPeerConnectionGDNative<class_WebRTCPeerConnectionGDNative>`
  10. Interface to a WebRTC peer connection.
  11. Description
  12. -----------
  13. A WebRTC connection between the local computer and a remote peer. Provides an interface to connect, maintain and monitor the connection.
  14. Setting up a WebRTC connection between two peers from now on) may not seem a trivial task, but it can be broken down into 3 main steps:
  15. - The peer that wants to initiate the connection (``A`` from now on) creates an offer and send it to the other peer (``B`` from now on).
  16. - ``B`` receives the offer, generate and answer, and sends it to ``A``).
  17. - ``A`` and ``B`` then generates and exchange ICE candidates with each other.
  18. After these steps, the connection should become connected. Keep on reading or look into the tutorial for more information.
  19. Methods
  20. -------
  21. +-------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  22. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`add_ice_candidate<class_WebRTCPeerConnection_method_add_ice_candidate>` **(** :ref:`String<class_String>` media, :ref:`int<class_int>` index, :ref:`String<class_String>` name **)** |
  23. +-------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  24. | void | :ref:`close<class_WebRTCPeerConnection_method_close>` **(** **)** |
  25. +-------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  26. | :ref:`WebRTCDataChannel<class_WebRTCDataChannel>` | :ref:`create_data_channel<class_WebRTCPeerConnection_method_create_data_channel>` **(** :ref:`String<class_String>` label, :ref:`Dictionary<class_Dictionary>` options={ } **)** |
  27. +-------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  28. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`create_offer<class_WebRTCPeerConnection_method_create_offer>` **(** **)** |
  29. +-------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  30. | :ref:`ConnectionState<enum_WebRTCPeerConnection_ConnectionState>` | :ref:`get_connection_state<class_WebRTCPeerConnection_method_get_connection_state>` **(** **)** |const| |
  31. +-------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  32. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`initialize<class_WebRTCPeerConnection_method_initialize>` **(** :ref:`Dictionary<class_Dictionary>` configuration={ } **)** |
  33. +-------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  34. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`poll<class_WebRTCPeerConnection_method_poll>` **(** **)** |
  35. +-------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  36. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`set_local_description<class_WebRTCPeerConnection_method_set_local_description>` **(** :ref:`String<class_String>` type, :ref:`String<class_String>` sdp **)** |
  37. +-------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  38. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`set_remote_description<class_WebRTCPeerConnection_method_set_remote_description>` **(** :ref:`String<class_String>` type, :ref:`String<class_String>` sdp **)** |
  39. +-------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  40. Signals
  41. -------
  42. .. _class_WebRTCPeerConnection_signal_data_channel_received:
  43. - **data_channel_received** **(** :ref:`Object<class_Object>` channel **)**
  44. Emitted when a new in-band channel is received, i.e. when the channel was created with ``negotiated: false`` (default).
  45. The object will be an instance of :ref:`WebRTCDataChannel<class_WebRTCDataChannel>`. You must keep a reference of it or it will be closed automatically. See :ref:`create_data_channel<class_WebRTCPeerConnection_method_create_data_channel>`.
  46. ----
  47. .. _class_WebRTCPeerConnection_signal_ice_candidate_created:
  48. - **ice_candidate_created** **(** :ref:`String<class_String>` media, :ref:`int<class_int>` index, :ref:`String<class_String>` name **)**
  49. Emitted when a new ICE candidate has been created. The three parameters are meant to be passed to the remote peer over the signaling server.
  50. ----
  51. .. _class_WebRTCPeerConnection_signal_session_description_created:
  52. - **session_description_created** **(** :ref:`String<class_String>` type, :ref:`String<class_String>` sdp **)**
  53. Emitted after a successful call to :ref:`create_offer<class_WebRTCPeerConnection_method_create_offer>` or :ref:`set_remote_description<class_WebRTCPeerConnection_method_set_remote_description>` (when it generates an answer). The parameters are meant to be passed to :ref:`set_local_description<class_WebRTCPeerConnection_method_set_local_description>` on this object, and sent to the remote peer over the signaling server.
  54. Enumerations
  55. ------------
  56. .. _enum_WebRTCPeerConnection_ConnectionState:
  57. .. _class_WebRTCPeerConnection_constant_STATE_NEW:
  58. .. _class_WebRTCPeerConnection_constant_STATE_CONNECTING:
  59. .. _class_WebRTCPeerConnection_constant_STATE_CONNECTED:
  60. .. _class_WebRTCPeerConnection_constant_STATE_DISCONNECTED:
  61. .. _class_WebRTCPeerConnection_constant_STATE_FAILED:
  62. .. _class_WebRTCPeerConnection_constant_STATE_CLOSED:
  63. enum **ConnectionState**:
  64. - **STATE_NEW** = **0** --- The connection is new, data channels and an offer can be created in this state.
  65. - **STATE_CONNECTING** = **1** --- The peer is connecting, ICE is in progress, none of the transports has failed.
  66. - **STATE_CONNECTED** = **2** --- The peer is connected, all ICE transports are connected.
  67. - **STATE_DISCONNECTED** = **3** --- At least one ICE transport is disconnected.
  68. - **STATE_FAILED** = **4** --- One or more of the ICE transports failed.
  69. - **STATE_CLOSED** = **5** --- The peer connection is closed (after calling :ref:`close<class_WebRTCPeerConnection_method_close>` for example).
  70. Method Descriptions
  71. -------------------
  72. .. _class_WebRTCPeerConnection_method_add_ice_candidate:
  73. - :ref:`Error<enum_@GlobalScope_Error>` **add_ice_candidate** **(** :ref:`String<class_String>` media, :ref:`int<class_int>` index, :ref:`String<class_String>` name **)**
  74. Add an ice candidate generated by a remote peer (and received over the signaling server). See :ref:`ice_candidate_created<class_WebRTCPeerConnection_signal_ice_candidate_created>`.
  75. ----
  76. .. _class_WebRTCPeerConnection_method_close:
  77. - void **close** **(** **)**
  78. Close the peer connection and all data channels associated with it.
  79. **Note:** You cannot reuse this object for a new connection unless you call :ref:`initialize<class_WebRTCPeerConnection_method_initialize>`.
  80. ----
  81. .. _class_WebRTCPeerConnection_method_create_data_channel:
  82. - :ref:`WebRTCDataChannel<class_WebRTCDataChannel>` **create_data_channel** **(** :ref:`String<class_String>` label, :ref:`Dictionary<class_Dictionary>` options={ } **)**
  83. Returns a new :ref:`WebRTCDataChannel<class_WebRTCDataChannel>` (or ``null`` on failure) with given ``label`` and optionally configured via the ``options`` dictionary. This method can only be called when the connection is in state :ref:`STATE_NEW<class_WebRTCPeerConnection_constant_STATE_NEW>`.
  84. There are two ways to create a working data channel: either call :ref:`create_data_channel<class_WebRTCPeerConnection_method_create_data_channel>` on only one of the peer and listen to :ref:`data_channel_received<class_WebRTCPeerConnection_signal_data_channel_received>` on the other, or call :ref:`create_data_channel<class_WebRTCPeerConnection_method_create_data_channel>` on both peers, with the same values, and the ``negotiated`` option set to ``true``.
  85. Valid ``options`` are:
  86. ::
  87. {
  88. "negotiated": true, # When set to true (default off), means the channel is negotiated out of band. "id" must be set too. "data_channel_received" will not be called.
  89. "id": 1, # When "negotiated" is true this value must also be set to the same value on both peer.
  90. # Only one of maxRetransmits and maxPacketLifeTime can be specified, not both. They make the channel unreliable (but also better at real time).
  91. "maxRetransmits": 1, # Specify the maximum number of attempt the peer will make to retransmits packets if they are not acknowledged.
  92. "maxPacketLifeTime": 100, # Specify the maximum amount of time before giving up retransmitions of unacknowledged packets (in milliseconds).
  93. "ordered": true, # When in unreliable mode (i.e. either "maxRetransmits" or "maxPacketLifetime" is set), "ordered" (true by default) specify if packet ordering is to be enforced.
  94. "protocol": "my-custom-protocol", # A custom sub-protocol string for this channel.
  95. }
  96. **Note:** You must keep a reference to channels created this way, or it will be closed.
  97. ----
  98. .. _class_WebRTCPeerConnection_method_create_offer:
  99. - :ref:`Error<enum_@GlobalScope_Error>` **create_offer** **(** **)**
  100. Creates a new SDP offer to start a WebRTC connection with a remote peer. At least one :ref:`WebRTCDataChannel<class_WebRTCDataChannel>` must have been created before calling this method.
  101. If this functions returns :ref:`@GlobalScope.OK<class_@GlobalScope_constant_OK>`, :ref:`session_description_created<class_WebRTCPeerConnection_signal_session_description_created>` will be called when the session is ready to be sent.
  102. ----
  103. .. _class_WebRTCPeerConnection_method_get_connection_state:
  104. - :ref:`ConnectionState<enum_WebRTCPeerConnection_ConnectionState>` **get_connection_state** **(** **)** |const|
  105. Returns the connection state. See :ref:`ConnectionState<enum_WebRTCPeerConnection_ConnectionState>`.
  106. ----
  107. .. _class_WebRTCPeerConnection_method_initialize:
  108. - :ref:`Error<enum_@GlobalScope_Error>` **initialize** **(** :ref:`Dictionary<class_Dictionary>` configuration={ } **)**
  109. Re-initialize this peer connection, closing any previously active connection, and going back to state :ref:`STATE_NEW<class_WebRTCPeerConnection_constant_STATE_NEW>`. A dictionary of ``options`` can be passed to configure the peer connection.
  110. Valid ``options`` are:
  111. ::
  112. {
  113. "iceServers": [
  114. {
  115. "urls": [ "stun:stun.example.com:3478" ], # One or more STUN servers.
  116. },
  117. {
  118. "urls": [ "turn:turn.example.com:3478" ], # One or more TURN servers.
  119. "username": "a_username", # Optional username for the TURN server.
  120. "credential": "a_password", # Optional password for the TURN server.
  121. }
  122. ]
  123. }
  124. ----
  125. .. _class_WebRTCPeerConnection_method_poll:
  126. - :ref:`Error<enum_@GlobalScope_Error>` **poll** **(** **)**
  127. Call this method frequently (e.g. in :ref:`Node._process<class_Node_method__process>` or :ref:`Node._physics_process<class_Node_method__physics_process>`) to properly receive signals.
  128. ----
  129. .. _class_WebRTCPeerConnection_method_set_local_description:
  130. - :ref:`Error<enum_@GlobalScope_Error>` **set_local_description** **(** :ref:`String<class_String>` type, :ref:`String<class_String>` sdp **)**
  131. Sets the SDP description of the local peer. This should be called in response to :ref:`session_description_created<class_WebRTCPeerConnection_signal_session_description_created>`.
  132. After calling this function the peer will start emitting :ref:`ice_candidate_created<class_WebRTCPeerConnection_signal_ice_candidate_created>` (unless an :ref:`Error<enum_@GlobalScope_Error>` different from :ref:`@GlobalScope.OK<class_@GlobalScope_constant_OK>` is returned).
  133. ----
  134. .. _class_WebRTCPeerConnection_method_set_remote_description:
  135. - :ref:`Error<enum_@GlobalScope_Error>` **set_remote_description** **(** :ref:`String<class_String>` type, :ref:`String<class_String>` sdp **)**
  136. Sets the SDP description of the remote peer. This should be called with the values generated by a remote peer and received over the signaling server.
  137. If ``type`` is ``offer`` the peer will emit :ref:`session_description_created<class_WebRTCPeerConnection_signal_session_description_created>` with the appropriate answer.
  138. If ``type`` is ``answer`` the peer will start emitting :ref:`ice_candidate_created<class_WebRTCPeerConnection_signal_ice_candidate_created>`.
  139. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  140. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  141. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`