summaryrefslogtreecommitdiffstats
path: root/modules/enet/doc_classes
Commit message (Collapse)AuthorAgeFilesLines
* Add method for getting packet flags from ENetPacketPeerEdward Lu2024-10-021-0/+6
|
* Clarify that `ENetConnection`'s `create_host[_bound]` and `service` must be ↵João Marcos P. Bezerra2024-07-101-4/+8
| | | | called on client and server
* Mention timeout unit in ENetConnection::service docsJoão Marcos P. Bezerra2024-07-041-1/+1
|
* Style: Trim trailing whitespace and ensure newline at EOFRémi Verschelde2024-05-081-1/+1
| | | | Found by apply the file_format checks again via #91597.
* Fixes packet details of ENetConnection EventType EVENT_RECEIVE documentationMike Martin2023-08-021-1/+1
|
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-063-3/+3
| | | | | | 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-053-3/+3
| | | | Keep on waitin'
* Add socket_send method to ENetConnection.TestSubject062023-06-131-0/+11
| | | | * Sends a given packet toward a given destination address and port, using the current ENetHost's socket.
* Validate code tags in documentation for potential paramsYuri Sizov2023-04-263-16/+16
| | | | | | | 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-013-3/+3
| | | | Can't stop, won't stop, they said, huh?
* [NET] Refactor TLS configuration.Fabio Alessandrelli2023-01-281-7/+5
| | | | | | | | | | | | | Use a TLSOptions configuration object which is created via static functions. - "TLSOptions.client": uses the standard CA and common name verification. - "TLSOptions.client_unsafe": uses optional CA verification (i.e. if specified) - "TLSOptions.server": is the standard server configuration (chain + key) This will allow us to expand the TLS configuration options to include e.g. mutual authentication without bloating the classes that uses StreamPeerTLS and PacketPeerDTLS as underlying peers.
* Merge pull request #67982 from Faless/mp/4.x_disconnect_closeFabio Alessandrelli2022-11-011-9/+2
|\ | | | | [MP] Add MultiplayerPeer disconnect_peer, close.
| * [MP] Add MultiplayerPeer disconnect_peer, close.Fabio Alessandrelli2022-10-281-9/+2
| | | | | | | | | | Update ENet, WebRTC, and WebSocket to support peer disconnection and unify the close function.
* | Merge pull request #67909 from Calinou/doc-enetpacketpeerMax Hilbrunner2022-10-301-4/+22
|\ \ | |/ |/| Document the ENetPacketPeer class
| * Document the ENetPacketPeer classHugo Locurcio2022-10-261-4/+22
| |
* | [MP] Let MultiplayerAPI handle packet relaying and peer signaling.Fabio Alessandrelli2022-10-271-3/+0
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* [Net] Expose get_remote_address get_remote_port.Fabio Alessandrelli2022-08-261-0/+12
|
* Replace Array return types with TypedArray 3kobewi2022-08-241-1/+1
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-083-60/+60
|
* Add an XML schema for documentationHugo Locurcio2022-02-153-3/+3
| | | | | | | | 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.
* Fix usage of "Return" in the docskobewi2022-01-021-1/+1
|
* Fix various typosluz paz2022-01-021-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | Found via ` codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,expct,fave,findn,gird,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint,varn` Update editor/import/resource_importer_layered_texture.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Update doc/classes/TileSetScenesCollectionSource.xml Co-authored-by: Raul Santos <raulsntos@gmail.com> Update scene/gui/graph_edit.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Update scene/resources/animation.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Update scene/resources/animation.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Update scene/resources/animation.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Update scene/gui/rich_text_label.cpp Co-authored-by: Raul Santos <raulsntos@gmail.com> Revert previously committed change
* Replace Godot docs URL with `$DOCS_URL` in XML class referenceRémi Verschelde2021-11-151-1/+1
|
* doc: Fix style inconsistencies for `[b]Note:[/b]` paragraphsRémi Verschelde2021-10-052-4/+4
| | | | And fix up formatting not supported by makerst.
* Merge pull request #52481 from Faless/net/4.x_native_peersFabio Alessandrelli2021-09-281-2/+0
|\ | | | | [Net] Extension system for network peers, webrtc.
| * [Net/Docs] Update extensions documentation.Fabio Alessandrelli2021-09-241-2/+0
| |
* | 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
|
* Multiplayer networking renames/simplificationMax Hilbrunner2021-09-081-2/+2
| | | | 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-1/+1
| | | | | | | | | | | 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".
* Document ENetConnection compression must match between client and serverHugo Locurcio2021-08-231-0/+1
|
* Replace HTTP links with HTTPS for sites with HTTPS versionsAaron Franke2021-08-221-1/+1
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-303-194/+97
| | | | | | | | 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] Refactor ENetMultiplayerPeer to use ENet wrappers.Fabio Alessandrelli2021-07-291-121/+38
|
* [Net] Implement lower level ENet wrappers.Fabio Alessandrelli2021-07-292-0/+450
|
* Enable range coder compression by default in NetworkedMultiplayerENetHugo Locurcio2021-07-161-4/+5
| | | | | | | | | | | | | From empirical testing, this seems to provide the best compression compared to other compression algorithms when used in the Multiplayer Bomber demo. Other algorithms may provide better compression ratios for more complex games, but some compression is probably better than no compression. Zstandard was also not very efficient in my testing, so I added a note in the documentation.
* [Net] Rename NetworkedMultiplayerENet to ENetMultiplayerPeer.Fabio Alessandrelli2021-07-121-4/+4
|
* [Net] Rename NetworkedMultiplayerPeer to MultiplayerPeer.Fabio Alessandrelli2021-07-121-3/+3
|
* [Net] Remove most multiplayer hooks from SceneTree.Fabio Alessandrelli2021-07-121-1/+1
| | | | Use `multiplayer` or `get_multiplayer()` instead of `get_tree()`.
* Fix typos with codespellRémi Verschelde2021-05-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using codespell 2.0.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick fave findn GIRD leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
* Implement NetworkedMultiplayerENet.get_local_portFabio Alessandrelli2021-04-281-2/+9
| | | | Allows retrieving the local port to which the peer is bound.
* Add set_peer_timeout to NetworkedMultiplayerENet.Fabian2021-02-271-0/+16
|
* Mention that NetworkedMultiplayerENet uses UDP onlyHugo Locurcio2021-01-141-0/+2
| | | | This is important to clarify for those doing port forwarding.
* Add link titles for all links in the class referenceHugo Locurcio2020-08-311-2/+2
| | | | | This makes them display in a nicer way in the editor help. (The title will display instead of the full URL.)
* Improve the ENet channels documentation in NetworkedMultiplayerENetHugo Locurcio2020-07-131-2/+2
| | | | This closes https://github.com/godotengine/godot-docs/issues/3598.
* Fix various typosluz.paz2020-03-111-1/+1
| | | Found via `codespell`
* Add documentation for new DTLS features.Fabio Alessandrelli2020-02-171-0/+25
|
* 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: Misc updates for AnimationNode* and othersRémi Verschelde2020-01-231-2/+2
| | | | | | | | | | | | | - Add some missing descriptions. - Add links to tutorials for ARVR and AnimationTree. - Style fixes. - Engine changes: * Make `AnimationNodeTransition.input_<number>` properties internal so that they don't appear in the docs. They still appear in the inspector based on the actual number of inputs requested. * Drop unimplemented `CPUParticles.flatness`. It's only used for 3D particles in `ParticlesMaterial`, and thus only relevant for `CPUParticles3D`.