summaryrefslogtreecommitdiffstats
path: root/modules/multiplayer/doc_classes/SceneMultiplayer.xml
Commit message (Collapse)AuthorAgeFilesLines
* Add unit tests for `SceneMultiplayer`Pablo Andres Fuente2024-09-291-1/+1
| | | | | | This PR aims to help "fix" #43440 Also fixing a small typo on `SceneMultiplayer` docs.
* Document SceneMultiplayer `auth_timeout` being in secondsHugo Locurcio2024-09-151-1/+1
|
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Ensure `RID`, `Callable`, and `Signal` are stored as stringsNinni Pipping2023-06-221-1/+1
| | | | | Prevents parser errors in `.tscn` and `.tres` files where the assignment would otherwise be empty.
* [MP] Implement "watched" properties.Fabio Alessandrelli2023-05-241-0/+6
| | | | | Checked at "delta_interval" (default = every frame), synchronized (reliably) if changes are detected.
* Validate code tags in documentation for potential paramsYuri Sizov2023-04-261-2/+2
| | | | | | | Adds a check to make_rst to look for matches between the text inside of the [code][/code] tag and known param identifiers. Fixes most of what was revealed.
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* [MP] Fix server_relay being unsettable.Fabio Alessandrelli2022-12-291-0/+1
| | | | Clarify nuance in the docs.
* [MP] Add optional authentication to SceneMultiplayer.Fabio Alessandrelli2022-11-021-0/+47
| | | | | | | | | | | | | | | | | | | Add few methods to allow peers to exchange authentication information. - `set_auth_callback(callback)`: Enable the authentication features. The callback is a `Callable` that accepts an `int` (the peer ID), and a `PackedByteArray` of data. - The `peer_authenticating(id)` signal will be emitted instead of `peer_connected` when a new peer connects. - Use `send_auth(id: int, data: PackedByteArray)` to exchange data. - Call `complete_auth(id: int)` when the authentication process is complete and you expect to start receiving game data. - The `peer_connected` signal will be emitted as soon as both parties complete the authentication. - Use `disconnect_peer(id)` to disconnect a connected peer. - If the `peer_connected` signal didn't fire for that peer (i.e. it was still in the authentication phase), the `peer_auth_failed` signal will be emitted instead of `peer_disconnected`.
* [MP] Let MultiplayerAPI handle packet relaying and peer signaling.Fabio Alessandrelli2022-10-271-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | MultiplayerPeer changes: - Adds is_server_relay_supported virtual method Informs the upper MultiplayerAPI layer if it can signal peers connected to the server to other clients, and perform packet relaying among them. - Adds get_packet_channel and get_packet_mode virtual methods Allows the MultiplayerAPI to retrieve the channel and transfer modes to use when relaying the last received packet. SceneMultiplayerPeer changes: - Implement peer signaling and packet relaying when the MultiplayerPeer advertise they are supported. ENet, WebRTC, WebSocket changes: - Removed custom code for relaying from WebSocket and ENet, and let it be handled by the upper layer. - Update WebRTC to split create_client, create_server, and create_mesh, with the latter behaving like the old initialize with "server_compatibility = false", and the first two supporting the upper layer relaying protocol.
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-6/+6
|
* [Net] Modularize multiplayer, expose MultiplayerAPI to extensions.Fabio Alessandrelli2022-07-261-0/+55
- RPC configurations are now dictionaries. - Script.get_rpc_methods renamed to Script.get_rpc_config. - Node.rpc[_id] and Callable.rpc now return an Error. - Refactor MultiplayerAPI to allow extension. - New MultiplayerAPI.rpc method with Array argument (for scripts). - Move the default MultiplayerAPI implementation to a module.