summaryrefslogtreecommitdiffstats
path: root/doc/classes/MultiplayerAPI.xml
Commit message (Collapse)AuthorAgeFilesLines
* Fix more miscellaneous oddities around the class referenceMicky2024-11-121-1/+1
|
* Merge pull request #87610 from Mickeon/documentation-MultiplayerAPI-peer-idRémi Verschelde2024-03-101-1/+1
|\ | | | | | | Mention Multiplayer.`get_remote_sender_id`'s 0 after await
| * Mention Multiplayer.`get_remote_sender_id`'s 0 after awaitMicky2024-01-261-1/+1
| |
* | Add keywords to improve search in the class referenceHugo Locurcio2024-02-221-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'
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Fix docs on RPC_MODE_ANY_PEER analogous.Andrés Botero2023-02-071-1/+1
|
* GDScript: Allow constant expressions in annotationsDanil Alexeev2023-01-251-2/+2
|
* [doc] Use "param" instead of "code" to refer to parameters (5)Andy Maloney2022-08-151-3/+3
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-11/+11
|
* [Net] Modularize multiplayer, expose MultiplayerAPI to extensions.Fabio Alessandrelli2022-07-261-38/+62
| | | | | | | | | - 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.
* [Net] Allow branch-specific MultiplayerAPIs.Fabio Alessandrelli2022-04-261-2/+2
| | | | | | | | | Removes custom_multiplayer from Node. MultiplayerAPI overrides are now set at SceneTree level, and apply to whole branches. Impact on performance when using only the default multiplayer or overriding it is minimal, the use of branches can likely be further optimized by caching nodes and relevant MultiplayerAPI IDs.
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* [Net] Move RPC, Node cache out of MultiplayerAPI.Fabio Alessandrelli2022-02-051-2/+2
| | | | | | | | | Now uses two interfaces so it can be overridden in the future, and core no longer depends on Node. The interfaces are implements in scene/multiplayer. Replaces root_node with root_path. Remove all Node references from MultiplayerAPI.
* [Net] New replication interface, spawner and synchronizer nodes.Fabio Alessandrelli2022-02-041-2/+0
| | | | | | | | | | | | | | | | | | Initial implementation of the MultiplayerReplicationInterface and its default implementation (SceneReplicationInterface). New MultiplayerSpawner node helps dealing with instantiation of scenes on remote peers (e.g. clients). It supports both custom spawns via a `_spawn_custom` virtual function, and optional auto-spawn of known scenes via a TypedArray<PackedScenes> property. New MultiplayerSynchornizer helps synchronizing states between the local and remote peers, supports both sync and spawn properties and is configured via a `SceneReplicationConfig` resource. It can also sync via path (i.e. without being spawned by a MultiplayerSpawner if both peers has it in tree, but will not send the spawn state in that case, only the sync one.
* Document Android permission requirements for network access where neededHugo Locurcio2021-09-251-0/+1
|
* Don't generate empty doc sections and reduce code duplicationAaron Franke2021-09-201-2/+0
|
* Docs: Remove references to (removed) RSETsMax Hilbrunner2021-09-081-3/+3
|
* Multiplayer networking renames/simplificationMax Hilbrunner2021-09-081-25/+25
| | | | Removes _networking_ prefix from some methods and members, now that multiplayer has been largely moved out of Node and SceneTree and is seperated into its own set of classes.
* [Net] Move multiplayer to core subdir, split RPCManager.Fabio Alessandrelli2021-09-071-11/+2
| | | | | | | | | | | Move multiplayer classes to "core/multiplayer" subdir. Move the RPCConfig and enums (TransferMode, RPCMode) to a separate file (multiplayer.h), and bind them to the global namespace. Move the RPC handling code to its own class (RPCManager). Renames "get_rpc_sender_id" to "get_remote_sender_id".
* [Net] Rename RPC "puppet" to "auth" (authority). Drop "master".Fabio Alessandrelli2021-08-301-8/+5
| | | | | | | | | | | | | | | | | | | | | | This commit completely removes the RPC_MODE_MASTER ("master" keyword), and renames the RPC_MODE_PUPPET to RPC_MODE_AUTHORITY ("auth" keyword). This commit also renames the "Node.[get|set]_network_master" methods to "Node.[get|set]_network_authority". This commit also renames the RPC_MODE_REMOTE constant to RPC_MODE_ANY. RPC_MODE_MASTER in Godot 3.x meant that a given RPC would be callable by any puppet peer on the master, while RPC_MODE_PUPPET meant that it would be callable by the master on any puppet. Beside proving to be very confusing to the user (referring to where it could be called instead of who can call it) the RPC_MODE_MASTER is quite useless. It is almost the same as RPC_MODE_REMOTE (anyone can call) with the exception that the network master cannot. While this could be useful to check in some case, in such a function you would anyway need to check in code who is the caller via get_rpc_sender_id(), so adding the check there for those rare cases does not warrants a dedicated mode.
* [Net] MultiplayerReplicator with initial state.Fabio Alessandrelli2021-08-181-89/+2
| | | | | | | | | | | | | | | | | | | | | Move the former "spawnables" functions to a dedicated MultiplayerReplicator class. Support custom overrides in replicator. Spawn/despawn messages can now contain a state. The state can be automatically encoded/decoded by passing the desired object properties to `spawnable_config`. You can use script properties to optimize the state representation. 2 Callables can be also specified to completely override the default implementation for sending and receiving the spawn/despawn event. (9 bytes overhead, and there's room for improvement here). When using a custom implementation `spawn` and `despawn` can be called with any Object, `send_spawn`/`send_despawn` can receive any Variant as a state, and the path is not required. Two new functions, `spawn` and `despawn`, convey the implementation independent method for requesting a spawn/despawn of an Object, while `send_spawn` and `send_despawn` represent the more low-level send event for a Variant to be used by the custom implementations.
* [Net] Basic extensible MultiplayerAPI spawn/despawn.Fabio Alessandrelli2021-08-091-0/+89
| | | | | | | | | | | | | | | | | | | | | | `PackedScene`s can be configured to be spawnable via a new `MultiplayerAPI.spawnable_config` method. They can be configured either to be spawned automatically when coming from the server or to always require verification. Another method, `MultiplayerAPI.send_spawn` lets you request a spawn on the remote peers. When a peer receive a spawn request: - If it comes from the server and the scene is configured as `SPAWN_MODE_SERVER`: - Spawn the scene (instantiate it, add it to tree). - Emit signal `network_spawn`. - Else: - Emit signal `network_spawn_request`. In a similar way, `despawn`s are handled automatically in `SPAWN_MODE_SERVER`. In `SPAWN_MODE_SERVER`, when a new client connects it will also receive, from the server all the spawned (and not yet despawned) instances.
* [Net] Implement RPC channels in MultiplayerAPI.Fabio Alessandrelli2021-07-301-0/+1
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-30/+15
| | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
* [Net] Single `rpc` annotation. "sync" no longer part of mode.Fabio Alessandrelli2021-07-201-9/+0
| | | | | | | | | | | | | | | | - Move the "sync" property for RPCs to RPCConfig. - Unify GDScript annotations into a single one: - `@rpc(master)` # default - `@rpc(puppet)` - `@rpc(any)` # former `@remote` - Implement three additional `@rpc` options: - The second parameter is the "sync" option (which also calls the function locally when RPCing). One of "sync", "nosync". - The third parameter is the transfer mode (reliable, unreliable, ordered). - The third parameter is the channel (unused for now).
* [Net] Rename NetworkedMultiplayerPeer to MultiplayerPeer.Fabio Alessandrelli2021-07-121-4/+4
|
* Rename Reference to RefCountedPedro J. Estébanez2021-06-111-1/+1
|
* [Net] Refactor RPCs, remove RSETsFabio Alessandrelli2021-06-011-4/+4
| | | | | | | | | | In this PR: - Removed rset - rpc_config can now optionally configure transfer mode (reliable/unreliable/ordered) and channel (channels are not actually implemented yet.) - Refactor how the RPC id is computed to minimize the logic in Node and scripts that now only needs a single `get_rpc_methods` function.
* Document that the high-level multiplayer API is only for Godot serversHugo Locurcio2021-01-251-1/+2
|
* add root_node as property of MultiplayerAPIJummit2020-07-051-10/+4
|
* doc: Sync classref for Packed{Int,Float}{32,64}Array additionsRémi Verschelde2020-02-251-1/+1
|
* doc: Sync classref with current sourceRémi Verschelde2020-02-181-3/+3
| | | | Handle removal of Pool*Array types and other recent changes.
* Merge pull request #36144 from akien-mga/remove-deprecated-allow-decodingRémi Verschelde2020-02-131-1/+1
|\ | | | | Remove deprecated PacketPeer allow_object_decoding
| * Remove deprecated PacketPeer allow_object_decodingRémi Verschelde2020-02-131-1/+1
| | | | | | | | | | | | | | | | It was added for 3.2 in #27485 to preserve backwards compatibility, but we can now remove it. It is still needed in MultiplayerAPI as it's the only way to control it for the internal put_var calls.
* | Remove deprecated sync and slave networking keywordsRémi Verschelde2020-02-131-6/+0
|/ | | | | | Those keywords were deprecated for 3.1 in #22087. Also fix token name for `TK_REMOTE`, should be "remote" like the keyword.
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0.
* doc: Markup fixes for enums and constantsRémi Verschelde2019-12-061-1/+1
|
* doc: Remove null default values that can't be determinedRémi Verschelde2019-06-301-1/+1
| | | | Applying #30187.
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-3/+3
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-16/+16
| | | | | | | | | | | | | - Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies
* doc: Replace all [code]CONSTANT[/code] by new [constant CONSTANT] hyperlinksRémi Verschelde2019-06-271-5/+5
|
* doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|
* Merge pull request #27485 from Faless/io/encode_decode_safety_prRémi Verschelde2019-04-011-0/+4
|\ | | | | Safer encode/decode variant.
| * Add object encoding param to serialization methodsFabio Alessandrelli2019-04-011-0/+4
| | | | | | | | | | | | | | | | | | Network peers get_var/put_var File get_var/store_var GDScript/Mono/VisualScript bytes2var/var2bytes Add MultiplayerAPI.allow_object_decoding member which deprecates PacketPeer.allow_object_decoding. Break ABI compatibaility (API compatibility for GDNative).
* | doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|/
* doc: Add missing commas after "If true/false"Rémi Verschelde2018-12-201-1/+1
|
* Clearly deprecate sync too in favor of remotesync.Fabio Alessandrelli2018-09-151-11/+11
| | | | | NOTE: This changes the RPC_MODE_* enum values. Games should be re-exported. GDNative rebuilt.