2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2018-02-27 12:40:43 +00:00
<class name= "NetworkedMultiplayerPeer" inherits= "PacketPeer" category= "Core" version= "3.1" >
2017-09-12 20:42:36 +00:00
<brief_description >
2017-12-04 05:26:08 +00:00
A high-level network interface to simplify multiplayer interactions.
2017-09-12 20:42:36 +00:00
</brief_description>
<description >
2017-12-04 05:26:08 +00:00
Manages the connection to network peers. Assigns unique IDs to each client connected to the server.
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
2018-06-11 11:35:44 +00:00
<link > http://docs.godotengine.org/en/3.0/tutorials/networking/high_level_multiplayer.html</link>
2017-09-12 20:42:36 +00:00
</tutorials>
<demos >
</demos>
<methods >
<method name= "get_connection_status" qualifiers= "const" >
<return type= "int" enum= "NetworkedMultiplayerPeer.ConnectionStatus" >
</return>
<description >
2017-12-04 05:26:08 +00:00
Returns the current state of the connection. See [enum ConnectionStatus].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_packet_peer" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2017-12-04 05:26:08 +00:00
Returns the ID of the [code]NetworkedMultiplayerPeer[/code] who sent the most recent packet.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "get_unique_id" qualifiers= "const" >
<return type= "int" >
</return>
<description >
2017-12-04 05:26:08 +00:00
Returns the ID of this [code]NetworkedMultiplayerPeer[/code].
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "poll" >
<return type= "void" >
</return>
<description >
2017-12-04 05:26:08 +00:00
Waits up to 1 second to receive a new network event.
2017-09-12 20:42:36 +00:00
</description>
</method>
<method name= "set_target_peer" >
<return type= "void" >
</return>
<argument index= "0" name= "id" type= "int" >
</argument>
<description >
2018-05-12 16:55:32 +00:00
Sets the peer to which packets will be sent.
The [code]id[/code] can be one of: [code]TARGET_PEER_BROADCAST[/code] to send to all connected peers, [code]TARGET_PEER_SERVER[/code] to send to the peer acting as server, a valid peer ID to send to that specific peer, a negative peer ID to send to all peers except that one. Default: [code]TARGET_PEER_BROADCAST[/code]
2017-09-12 20:42:36 +00:00
</description>
</method>
</methods>
2018-01-11 22:38:35 +00:00
<members >
<member name= "refuse_new_connections" type= "bool" setter= "set_refuse_new_connections" getter= "is_refusing_new_connections" >
If [code]true[/code] this [code]NetworkedMultiplayerPeer[/code] refuses new connections. Default value: [code]false[/code].
</member>
<member name= "transfer_mode" type= "int" setter= "set_transfer_mode" getter= "get_transfer_mode" enum= "NetworkedMultiplayerPeer.TransferMode" >
The manner in which to send packets to the [code]target_peer[/code]. See [enum TransferMode].
</member>
</members>
2017-09-12 20:42:36 +00:00
<signals >
<signal name= "connection_failed" >
<description >
2017-12-04 05:26:08 +00:00
Emitted when a connection attempt fails.
2017-09-12 20:42:36 +00:00
</description>
</signal>
<signal name= "connection_succeeded" >
<description >
2017-12-04 05:26:08 +00:00
Emitted when a connection attempt succeeds.
2017-09-12 20:42:36 +00:00
</description>
</signal>
<signal name= "peer_connected" >
<argument index= "0" name= "id" type= "int" >
</argument>
<description >
2017-12-04 05:26:08 +00:00
Emitted by the server when a client connects.
2017-09-12 20:42:36 +00:00
</description>
</signal>
<signal name= "peer_disconnected" >
<argument index= "0" name= "id" type= "int" >
</argument>
<description >
2017-12-04 05:26:08 +00:00
Emitted by the server when a client disconnects.
2017-09-12 20:42:36 +00:00
</description>
</signal>
<signal name= "server_disconnected" >
<description >
2017-12-04 05:26:08 +00:00
Emitted by clients when the server disconnects.
2017-09-12 20:42:36 +00:00
</description>
</signal>
</signals>
<constants >
2017-11-24 22:16:30 +00:00
<constant name= "TRANSFER_MODE_UNRELIABLE" value= "0" enum= "TransferMode" >
2017-12-04 05:26:08 +00:00
Packets are sent via unordered UDP packets.
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "TRANSFER_MODE_UNRELIABLE_ORDERED" value= "1" enum= "TransferMode" >
2017-12-04 05:26:08 +00:00
Packets are sent via ordered UDP packets.
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "TRANSFER_MODE_RELIABLE" value= "2" enum= "TransferMode" >
2017-12-04 05:26:08 +00:00
Packets are sent via TCP packets.
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "CONNECTION_DISCONNECTED" value= "0" enum= "ConnectionStatus" >
2017-12-04 05:26:08 +00:00
The ongoing connection disconnected.
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "CONNECTION_CONNECTING" value= "1" enum= "ConnectionStatus" >
2017-12-04 05:26:08 +00:00
A connection attempt is ongoing.
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "CONNECTION_CONNECTED" value= "2" enum= "ConnectionStatus" >
2017-12-04 05:26:08 +00:00
The connection attempt succeeded.
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "TARGET_PEER_BROADCAST" value= "0" >
2017-12-04 05:26:08 +00:00
Packets are sent to the server and then redistributed to other peers.
2017-09-12 20:42:36 +00:00
</constant>
2017-11-24 22:16:30 +00:00
<constant name= "TARGET_PEER_SERVER" value= "1" >
2017-12-04 05:26:08 +00:00
Packets are sent to the server alone.
2017-09-12 20:42:36 +00:00
</constant>
</constants>
</class>