:github_url: hide .. DO NOT EDIT THIS FILE!!! .. Generated automatically from Godot engine sources. .. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py. .. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/MultiplayerAPI.xml. .. _class_MultiplayerAPI: MultiplayerAPI ============== **Inherits:** :ref:`Reference` **<** :ref:`Object` High-level multiplayer API. .. rst-class:: classref-introduction-group Description ----------- This class implements most of the logic behind the high-level multiplayer API. See also :ref:`NetworkedMultiplayerPeer`. By default, :ref:`SceneTree` has a reference to this class that is used to provide multiplayer capabilities (i.e. RPC/RSET) across the whole scene. It is possible to override the MultiplayerAPI instance used by specific Nodes by setting the :ref:`Node.custom_multiplayer` property, effectively allowing to run both client and server in the same scene. \ **Note:** The high-level multiplayer API protocol is an implementation detail and isn't meant to be used by non-Godot servers. It may change without notice. .. rst-class:: classref-reftable-group Properties ---------- .. table:: :widths: auto +-----------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+-----------+ | :ref:`bool` | :ref:`allow_object_decoding` | ``false`` | +-----------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+-----------+ | :ref:`NetworkedMultiplayerPeer` | :ref:`network_peer` | | +-----------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+-----------+ | :ref:`bool` | :ref:`refuse_new_network_connections` | ``false`` | +-----------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+-----------+ | :ref:`Node` | :ref:`root_node` | | +-----------------------------------------------------------------+-----------------------------------------------------------------------------------------------------+-----------+ .. rst-class:: classref-reftable-group Methods ------- .. table:: :widths: auto +-----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`clear` **(** **)** | +-----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`PoolIntArray` | :ref:`get_network_connected_peers` **(** **)** |const| | +-----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_network_unique_id` **(** **)** |const| | +-----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`int` | :ref:`get_rpc_sender_id` **(** **)** |const| | +-----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`has_network_peer` **(** **)** |const| | +-----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`bool` | :ref:`is_network_server` **(** **)** |const| | +-----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | void | :ref:`poll` **(** **)** | +-----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | :ref:`Error` | :ref:`send_bytes` **(** :ref:`PoolByteArray` bytes, :ref:`int` id=0, :ref:`TransferMode` mode=2 **)** | +-----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Signals ------- .. _class_MultiplayerAPI_signal_connected_to_server: .. rst-class:: classref-signal **connected_to_server** **(** **)** Emitted when this MultiplayerAPI's :ref:`network_peer` successfully connected to a server. Only emitted on clients. .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_signal_connection_failed: .. rst-class:: classref-signal **connection_failed** **(** **)** Emitted when this MultiplayerAPI's :ref:`network_peer` fails to establish a connection to a server. Only emitted on clients. .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_signal_network_peer_connected: .. rst-class:: classref-signal **network_peer_connected** **(** :ref:`int` id **)** Emitted when this MultiplayerAPI's :ref:`network_peer` connects with a new peer. ID is the peer ID of the new peer. Clients get notified when other clients connect to the same server. Upon connecting to a server, a client also receives this signal for the server (with ID being 1). .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_signal_network_peer_disconnected: .. rst-class:: classref-signal **network_peer_disconnected** **(** :ref:`int` id **)** Emitted when this MultiplayerAPI's :ref:`network_peer` disconnects from a peer. Clients get notified when other clients disconnect from the same server. .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_signal_network_peer_packet: .. rst-class:: classref-signal **network_peer_packet** **(** :ref:`int` id, :ref:`PoolByteArray` packet **)** Emitted when this MultiplayerAPI's :ref:`network_peer` receive a ``packet`` with custom data (see :ref:`send_bytes`). ID is the peer ID of the peer that sent the packet. .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_signal_server_disconnected: .. rst-class:: classref-signal **server_disconnected** **(** **)** Emitted when this MultiplayerAPI's :ref:`network_peer` disconnects from server. Only emitted on clients. .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Enumerations ------------ .. _enum_MultiplayerAPI_RPCMode: .. rst-class:: classref-enumeration enum **RPCMode**: .. _class_MultiplayerAPI_constant_RPC_MODE_DISABLED: .. rst-class:: classref-enumeration-constant :ref:`RPCMode` **RPC_MODE_DISABLED** = ``0`` Used with :ref:`Node.rpc_config` or :ref:`Node.rset_config` to disable a method or property for all RPC calls, making it unavailable. Default for all methods. .. _class_MultiplayerAPI_constant_RPC_MODE_REMOTE: .. rst-class:: classref-enumeration-constant :ref:`RPCMode` **RPC_MODE_REMOTE** = ``1`` Used with :ref:`Node.rpc_config` or :ref:`Node.rset_config` to set a method to be called or a property to be changed only on the remote end, not locally. Analogous to the ``remote`` keyword. Calls and property changes are accepted from all remote peers, no matter if they are node's master or puppets. .. _class_MultiplayerAPI_constant_RPC_MODE_MASTER: .. rst-class:: classref-enumeration-constant :ref:`RPCMode` **RPC_MODE_MASTER** = ``2`` Used with :ref:`Node.rpc_config` or :ref:`Node.rset_config` to set a method to be called or a property to be changed only on the network master for this node. Analogous to the ``master`` keyword. Only accepts calls or property changes from the node's network puppets, see :ref:`Node.set_network_master`. .. _class_MultiplayerAPI_constant_RPC_MODE_PUPPET: .. rst-class:: classref-enumeration-constant :ref:`RPCMode` **RPC_MODE_PUPPET** = ``3`` Used with :ref:`Node.rpc_config` or :ref:`Node.rset_config` to set a method to be called or a property to be changed only on puppets for this node. Analogous to the ``puppet`` keyword. Only accepts calls or property changes from the node's network master, see :ref:`Node.set_network_master`. .. _class_MultiplayerAPI_constant_RPC_MODE_SLAVE: .. rst-class:: classref-enumeration-constant :ref:`RPCMode` **RPC_MODE_SLAVE** = ``3`` *Deprecated.* Use :ref:`RPC_MODE_PUPPET` instead. Analogous to the ``slave`` keyword. .. _class_MultiplayerAPI_constant_RPC_MODE_REMOTESYNC: .. rst-class:: classref-enumeration-constant :ref:`RPCMode` **RPC_MODE_REMOTESYNC** = ``4`` Behave like :ref:`RPC_MODE_REMOTE` but also make the call or property change locally. Analogous to the ``remotesync`` keyword. .. _class_MultiplayerAPI_constant_RPC_MODE_SYNC: .. rst-class:: classref-enumeration-constant :ref:`RPCMode` **RPC_MODE_SYNC** = ``4`` *Deprecated.* Use :ref:`RPC_MODE_REMOTESYNC` instead. Analogous to the ``sync`` keyword. .. _class_MultiplayerAPI_constant_RPC_MODE_MASTERSYNC: .. rst-class:: classref-enumeration-constant :ref:`RPCMode` **RPC_MODE_MASTERSYNC** = ``5`` Behave like :ref:`RPC_MODE_MASTER` but also make the call or property change locally. Analogous to the ``mastersync`` keyword. .. _class_MultiplayerAPI_constant_RPC_MODE_PUPPETSYNC: .. rst-class:: classref-enumeration-constant :ref:`RPCMode` **RPC_MODE_PUPPETSYNC** = ``6`` Behave like :ref:`RPC_MODE_PUPPET` but also make the call or property change locally. Analogous to the ``puppetsync`` keyword. .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Property Descriptions --------------------- .. _class_MultiplayerAPI_property_allow_object_decoding: .. rst-class:: classref-property :ref:`bool` **allow_object_decoding** = ``false`` .. rst-class:: classref-property-setget - void **set_allow_object_decoding** **(** :ref:`bool` value **)** - :ref:`bool` **is_object_decoding_allowed** **(** **)** If ``true`` (or if the :ref:`network_peer` has :ref:`PacketPeer.allow_object_decoding` set to ``true``), the MultiplayerAPI will allow encoding and decoding of object during RPCs/RSETs. \ **Warning:** Deserialized objects can contain code which gets executed. Do not use this option if the serialized object comes from untrusted sources to avoid potential security threats such as remote code execution. .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_property_network_peer: .. rst-class:: classref-property :ref:`NetworkedMultiplayerPeer` **network_peer** .. rst-class:: classref-property-setget - void **set_network_peer** **(** :ref:`NetworkedMultiplayerPeer` value **)** - :ref:`NetworkedMultiplayerPeer` **get_network_peer** **(** **)** The peer object to handle the RPC system (effectively enabling networking when set). Depending on the peer itself, the MultiplayerAPI will become a network server (check with :ref:`is_network_server`) and will set root node's network mode to master, or it will become a regular peer with root node set to puppet. All child nodes are set to inherit the network mode by default. Handling of networking-related events (connection, disconnection, new clients) is done by connecting to MultiplayerAPI's signals. .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_property_refuse_new_network_connections: .. rst-class:: classref-property :ref:`bool` **refuse_new_network_connections** = ``false`` .. rst-class:: classref-property-setget - void **set_refuse_new_network_connections** **(** :ref:`bool` value **)** - :ref:`bool` **is_refusing_new_network_connections** **(** **)** If ``true``, the MultiplayerAPI's :ref:`network_peer` refuses new incoming connections. .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_property_root_node: .. rst-class:: classref-property :ref:`Node` **root_node** .. rst-class:: classref-property-setget - void **set_root_node** **(** :ref:`Node` value **)** - :ref:`Node` **get_root_node** **(** **)** The root node to use for RPCs. Instead of an absolute path, a relative path will be used to find the node upon which the RPC should be executed. This effectively allows to have different branches of the scene tree to be managed by different MultiplayerAPI, allowing for example to run both client and server in the same scene. .. rst-class:: classref-section-separator ---- .. rst-class:: classref-descriptions-group Method Descriptions ------------------- .. _class_MultiplayerAPI_method_clear: .. rst-class:: classref-method void **clear** **(** **)** Clears the current MultiplayerAPI network state (you shouldn't call this unless you know what you are doing). .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_method_get_network_connected_peers: .. rst-class:: classref-method :ref:`PoolIntArray` **get_network_connected_peers** **(** **)** |const| Returns the peer IDs of all connected peers of this MultiplayerAPI's :ref:`network_peer`. .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_method_get_network_unique_id: .. rst-class:: classref-method :ref:`int` **get_network_unique_id** **(** **)** |const| Returns the unique peer ID of this MultiplayerAPI's :ref:`network_peer`. .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_method_get_rpc_sender_id: .. rst-class:: classref-method :ref:`int` **get_rpc_sender_id** **(** **)** |const| Returns the sender's peer ID for the RPC currently being executed. \ **Note:** If not inside an RPC this method will return 0. .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_method_has_network_peer: .. rst-class:: classref-method :ref:`bool` **has_network_peer** **(** **)** |const| Returns ``true`` if there is a :ref:`network_peer` set. .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_method_is_network_server: .. rst-class:: classref-method :ref:`bool` **is_network_server** **(** **)** |const| Returns ``true`` if this MultiplayerAPI's :ref:`network_peer` is in server mode (listening for connections). .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_method_poll: .. rst-class:: classref-method void **poll** **(** **)** Method used for polling the MultiplayerAPI. You only need to worry about this if you are using :ref:`Node.custom_multiplayer` override or you set :ref:`SceneTree.multiplayer_poll` to ``false``. By default, :ref:`SceneTree` will poll its MultiplayerAPI for you. \ **Note:** This method results in RPCs and RSETs being called, so they will be executed in the same context of this function (e.g. ``_process``, ``physics``, :ref:`Thread`). .. rst-class:: classref-item-separator ---- .. _class_MultiplayerAPI_method_send_bytes: .. rst-class:: classref-method :ref:`Error` **send_bytes** **(** :ref:`PoolByteArray` bytes, :ref:`int` id=0, :ref:`TransferMode` mode=2 **)** Sends the given raw ``bytes`` to a specific peer identified by ``id`` (see :ref:`NetworkedMultiplayerPeer.set_target_peer`). Default ID is ``0``, i.e. broadcast to all peers. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)` .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)` .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)` .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`