summaryrefslogtreecommitdiffstats
path: root/modules/enet
Commit message (Collapse)AuthorAgeFilesLines
* Core: Integrate `Ref::instantiate` where possibleThaddeus Crews2024-11-101-1/+1
|
* Add method for getting packet flags from ENetPacketPeerEdward Lu2024-10-023-0/+13
|
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|
* 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.
* Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-2/+2
| | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-092-5/+5
|
* Merge pull request #80182 from ↵Rémi Verschelde2023-10-131-1/+1
|\ | | | | | | | | | | mikemar10/mikemar10/update_documentation_enetconnection_eventreceive Fix packet details of ENetConnection EventType EVENT_RECEIVE documentation
| * Fixes packet details of ENetConnection EventType EVENT_RECEIVE documentationMike Martin2023-08-021-1/+1
| |
* | Fix incorrect null checkA Thousand Ships2023-10-091-2/+2
| |
* | Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-10-081-2/+2
| |
* | [Modules] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-262-40/+40
| |
* | Merge pull request #80293 from Faless/mp/fix_enet_flags_with_channelsRémi Verschelde2023-08-071-15/+14
|\ \ | | | | | | | | | [ENet] Properly set transfer flags when using custom channels
| * | [ENet] Properly set transfer flags when using custom channelsFabio Alessandrelli2023-08-051-15/+14
| |/
* / Fix various typos with codespellRémi Verschelde2023-08-071-1/+1
|/ | | | | | | | | Also includes typo fixes from #79993, #80068, #80276, and #80303. Co-authored-by: betalars <contact@betalars.de> Co-authored-by: spaceyjase <429978+spaceyjase@users.noreply.github.com> Co-authored-by: Swarkin <102416174+Swarkin@users.noreply.github.com> Co-authored-by: Raul Santos <raulsntos@gmail.com>
* Fix documentation for consistencySeptian2023-07-121-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'
* Style: Harmonize header includes in modulesRémi Verschelde2023-06-154-4/+8
| | | | | | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module ("local" includes) should be listed first in their own block using relative paths, before Godot's "core" includes which use "absolute" (project folder relative) paths, and finally thirdparty includes. Includes in `#ifdef`s come after their relevant section, i.e. the overall structure is: - Local includes * Conditional local includes - Core includes * Conditional core includes - Thirdparty includes * Conditional thirdparty includes
* Add socket_send method to ENetConnection.TestSubject062023-06-133-0/+46
| | | | * 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?
* Fix various typos with codespellRémi Verschelde2023-01-301-1/+1
| | | | | | And include #72377. Co-authored-by: Wiktor Kocielski <withaust@gmail.com>
* [NET] Refactor TLS configuration.Fabio Alessandrelli2023-01-283-15/+15
| | | | | | | | | | | | | 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.
* One Copyright Update to rule them allRémi Verschelde2023-01-058-232/+232
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* [MP] Remove connection state signals from MultiplayerPeer.Fabio Alessandrelli2022-11-021-8/+1
| | | | Now handled directly by the MultiplayerAPI implementation.
* Merge pull request #67982 from Faless/mp/4.x_disconnect_closeFabio Alessandrelli2022-11-013-157/+112
|\ | | | | [MP] Add MultiplayerPeer disconnect_peer, close.
| * [MP] Add MultiplayerPeer disconnect_peer, close.Fabio Alessandrelli2022-10-283-157/+112
| | | | | | | | | | 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-273-192/+56
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-3/+3
| | | | change warnings=all to use /W4.
* [Net] Expose get_remote_address get_remote_port.Fabio Alessandrelli2022-08-262-0/+14
|
* Replace Array return types with TypedArray 3kobewi2022-08-243-4/+8
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-083-60/+60
|
* [Net] Modularize multiplayer, expose MultiplayerAPI to extensions.Fabio Alessandrelli2022-07-262-4/+4
| | | | | | | | | - 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.
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-3/+3
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Replace most uses of Map by HashMapreduz2022-05-161-2/+2
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Refactor module initializationreduz2022-05-042-4/+14
| | | | | | | * Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).
* Discern between virtual and abstract class bindingsreduz2022-03-101-1/+1
| | | | | | | | | | | | | | * Previous "virtual" classes (which can't be instantiated) are not corretly named "abstract". * Added a new "virtual" category for classes, they can't be instantiated from the editor, but can be inherited from script and extensions. * Converted a large amount of classes from "abstract" to "virtual" where it makes sense. Most classes that make sense have been converted. Missing: * Physics servers * VideoStream * Script* classes. which will go in a separate PR due to the complexity involved.
* 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.
* Update copyright statements to 2022Rémi Verschelde2022-01-038-16/+16
| | | | Happy new year to the wonderful Godot community!
* Fix usage of "Return" in the docskobewi2022-01-021-1/+1
|
* Fix various typosluz paz2022-01-023-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* [Net] ENet poll now only service the connection once.Jordan Schidlowsky2021-12-154-164/+183
| | | | | | | | | It used to call `enet_host_service` until all events were consumed, but that also meant constantly polling the connection leading to potentially unbounded processing time. It now only service the connection once, and instead consumes all the retrieved events via `enet_host_check_events`.
* [Net] ENetMultiplayerPeer now sends fragmented packets unreliably too.Jordan Schidlowsky2021-12-151-2/+8
| | | | | | | | | It used to always send them reliably when transfer mode was unreliable or ordered if the packet size was more then the enet host MTU (1400 bytes by default). This commit also adds a warning when debug is enabled to explain the effects of sending fragmented packets unreliably.
* 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.
* [Net] Rename RPC constants and annotation arguments.Fabio Alessandrelli2021-10-011-1/+1
| | | | | | | | | any -> any_peer sync -> call_local ordered -> unreliable_ordered Multiplayer.RPC_MODE_ANY -> RPC_MODE_ANY_PEER Multiplayer.TRANSFER_MODE_ORDERED -> TRANSFER_MODE_UNRELIABLE_ORDERED