Table of Contents

Class ENetMultiplayerPeer

A MultiplayerPeer implementation using the ENet library.

Inheritance
ENetMultiplayerPeer

Remarks

A MultiplayerPeer implementation that should be passed to multiplayer_peer after being initialized as either a client, server, or mesh. Events can then be handled by connecting to MultiplayerAPI signals. See ENetConnection for more information on the ENet library wrapper.

Note: ENet only uses UDP, not TCP. When forwarding the server port to make your server accessible on the public Internet, you only need to forward the server port in UDP. You can use the UPNP class to try to forward the server port automatically when starting the server.

See Also

Properties

host

The underlying ENetConnection created after ENetMultiplayerPeer.create_client and ENetMultiplayerPeer.create_server.

var host : ENetConnection

Property Value

ENetConnection

Remarks

Methods

add_mesh_peer(int, ENetConnection)

Add a new remote peer with the given peer_id connected to the given host.

Note: The host must have exactly one peer in the ENetPacketPeer.STATE_CONNECTED state.

int add_mesh_peer(int peer_id, ENetConnection host)

Parameters

peer_id int
host ENetConnection

create_client(String, int, int, int, int, int)

Create client that connects to a server at address using specified port. The given address needs to be either a fully qualified domain name (e.g. "www.example.com") or an IP address in IPv4 or IPv6 format (e.g. "192.168.1.1"). The port is the port the server is listening on. The channel_count parameter can be used to specify the number of ENet channels allocated for the connection. The in_bandwidth and out_bandwidth parameters can be used to limit the incoming and outgoing bandwidth to the given number of bytes per second. The default of 0 means unlimited bandwidth. Note that ENet will strategically drop packets on specific sides of a connection between peers to ensure the peer's bandwidth is not overwhelmed. The bandwidth parameters also determine the window size of a connection which limits the amount of reliable packets that may be in transit at any given time. Returns @GlobalScope.OK if a client was created, @GlobalScope.ERR_ALREADY_IN_USE if this ENetMultiplayerPeer instance already has an open connection (in which case you need to call close first) or @GlobalScope.ERR_CANT_CREATE if the client could not be created. If local_port is specified, the client will also listen to the given port; this is useful for some NAT traversal techniques.

int create_client(String address, int port, int channel_count, int in_bandwidth, int out_bandwidth, int local_port)

Parameters

address String
port int
channel_count int
in_bandwidth int
out_bandwidth int
local_port int

create_mesh(int)

Initialize this MultiplayerPeer in mesh mode. The provided unique_id will be used as the local peer network unique ID once assigned as the multiplayer_peer. In the mesh configuration you will need to set up each new peer manually using ENetConnection before calling ENetMultiplayerPeer.add_mesh_peer. While this technique is more advanced, it allows for better control over the connection process (e.g. when dealing with NAT punch-through) and for better distribution of the network load (which would otherwise be more taxing on the server).

int create_mesh(int unique_id)

Parameters

unique_id int

create_server(int, int, int, int, int)

Create server that listens to connections via port. The port needs to be an available, unused port between 0 and 65535. Note that ports below 1024 are privileged and may require elevated permissions depending on the platform. To change the interface the server listens on, use ENetMultiplayerPeer.set_bind_ip. The default IP is the wildcard "*", which listens on all available interfaces. max_clients is the maximum number of clients that are allowed at once, any number up to 4095 may be used, although the achievable number of simultaneous clients may be far lower and depends on the application. For additional details on the bandwidth parameters, see ENetMultiplayerPeer.create_client. Returns @GlobalScope.OK if a server was created, @GlobalScope.ERR_ALREADY_IN_USE if this ENetMultiplayerPeer instance already has an open connection (in which case you need to call close first) or @GlobalScope.ERR_CANT_CREATE if the server could not be created.

int create_server(int port, int max_clients, int max_channels, int in_bandwidth, int out_bandwidth)

Parameters

port int
max_clients int
max_channels int
in_bandwidth int
out_bandwidth int

get_peer(int)

Qualifiers: const

Returns the ENetPacketPeer associated to the given id.

ENetPacketPeer get_peer(int id)

Parameters

id int

set_bind_ip(String)

The IP used when creating a server. This is set to the wildcard "*" by default, which binds to all available interfaces. The given IP needs to be in IPv4 or IPv6 address format, for example: "192.168.1.1".

void set_bind_ip(String ip)

Parameters

ip String