NetworkedMultiplayerENet

    Category: Core

    PacketPeer implementation using the ENet library.

    Properties

    void ( int wait_usec=100 )
    create_client ( address, int port, in_bandwidth=0, int out_bandwidth=0, client_port=0 )
    Error ( int port, max_clients=32, int in_bandwidth=0, out_bandwidth=0 )
    voiddisconnect_peer ( id, bool now=false )
    get_last_packet_channel ( ) const
    get_packet_channel ( ) const
    get_peer_address ( id ) const
    int ( int id ) const
    void ( String ip )

    Enumerations

    enum CompressionMode:

    • COMPRESS_RANGE_CODER = 1 — ENet’s buildin range encoding.
    • COMPRESS_FASTLZ = 2 — FastLZ compression.
    • COMPRESS_ZLIB = 3 — zlib compression.
    • COMPRESS_ZSTD = 4 — ZStandard compression.

    A PacketPeer implementation that should be passed to after being initialized as either a client or server. Events can then be handled by connecting to SceneTree signals.

    Tutorials

    • always_ordered

    Enforce ordered packets when using NetworkedMultiplayerPeer.TRANSFER_MODE_UNRELIABLE (thus behaving similarly to ). This is the only way to use ordering with the RPC system.


    • int channel_count
    Setterset_channel_count(value)
    Getterget_channel_count()

    The compression method used for network packets. Default is no compression. These have different tradeoffs of compression speed versus bandwidth, you may need to test which one works best for your use case if you use compression at all.


    • transfer_channel
    Setterset_transfer_channel(value)
    Getterget_transfer_channel()

    Set the default channel to be used to transfer data. By default this value is -1 which means that ENet will only use 2 channels, one for reliable and one for unreliable packets. Channel 0 is reserved, and cannot be used. Setting this member to any value between 0 and channel_count (excluded) will force ENet to use that channel for sending data.

    Method Descriptions

    • void close_connection ( wait_usec=100 )

    Closes the connection. Ignored if no connection is currently established. If this is a server it tries to notify all clients before forcibly disconnecting them. If this is a client it simply closes the connection to the server.


    • Error create_client ( address, int port, in_bandwidth=0, int out_bandwidth=0, client_port=0 )

    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. ) 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 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, if this NetworkedMultiplayerEnet instance already has an open connection (in which case you need to call close_connection first) or if the client could not be created. If client_port is specified, the client will also listen to the given port, this is useful in some NAT traversal technique.


    • Error create_server ( port, int max_clients=32, in_bandwidth=0, int out_bandwidth=0 )

    Create server that listens to connections via . 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 . 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 4096 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 create_client. Returns if a server was created, @GlobalScope.ERR_ALREADY_IN_USE if this NetworkedMultiplayerEnet instance already has an open connection (in which case you need to call first) or @GlobalScope.ERR_CANT_CREATE if the server could not be created.


    • void disconnect_peer ( id, bool now=false )

    • get_last_packet_channel ( ) const

    Returns the channel of the last packet fetched via PacketPeer.get_packet


    • get_packet_channel ( ) const

    Returns the channel of the next packet that will be retrieved via PacketPeer.get_packet


    • get_peer_address ( int id ) const

    Returns the IP address of the given peer.


    Returns the remote port of the given peer.


    • void set_bind_ip ( ip )

    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.