summaryrefslogtreecommitdiffstats
path: root/modules/multiplayer
Commit message (Collapse)AuthorAgeFilesLines
...
* | | [Scene] Add `SceneStringNames::confirmed`A Thousand Ships2024-06-191-1/+1
| | |
* | | [Scene] Add `SceneStringNames::font(_size/_color)`A Thousand Ships2024-06-181-2/+2
| | |
* | | [Scene] Add `SceneStringNames::panel`A Thousand Ships2024-05-301-1/+1
| | |
* | | Fix Multiplayer Spawner freeing node after client disconnected IssueDaniel Snd2024-05-251-1/+1
| | |
* | | [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-143-5/+5
| | |
* | | Use Core/Scene stringnames consistentlykobewi2024-05-134-6/+3
| | |
* | | Add shorthand for using singleton string nameskobewi2024-05-113-8/+8
| | |
* | | [Core] Add case-insensitive `String::containsn`A Thousand Ships2024-05-081-1/+1
| | |
* | | Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-042-7/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | Add PackedVector4Array Variant typeK. S. Ernest (iFire) Lee2024-05-031-1/+2
| | | | | | | | | | | | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
* | | Organize existing code for editor pluginsAaron Franke2024-04-272-2/+2
|/ /
* | Merge pull request #90027 from Faless/mp/cache_no_spamRémi Verschelde2024-04-232-19/+22
|\ \ | |/ |/| | | [MP] Gracefully handle cache confirmation of deleted nodes
| * [MP] Gracefully handle cache confirmation of deleted nodesFabio Alessandrelli2024-03-292-19/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | It's possible that after sending a cached node reference (e.g. RPC or static MultiplayerSynchronizer) the reference node is removed from tree before the remote peer(s) can confirm the referenced path. To better detect that case, and avoid spamming errors when it happens, this commit modifies the multiplayer API caching protocol, to send the received ID instead of the Node path when sending the confirmation packet. **This is a breaking change** because it makes the runtime multiplayer protocol incompatible with previous versions of Godot.
* | Merge pull request #89839 from timothyqiu/meanwhileRémi Verschelde2024-04-082-0/+2
|\ \ | | | | | | | | | Fix node config warning not updating for `Multiplayer{Spawner,Synchronizer}`
| * | Fix node config warning not updating for Multiplayer{Spawner,Synchronizer}Haoyu Qiu2024-03-242-0/+2
| | |
* | | Merge pull request #89811 from timothyqiu/missing-i18nRémi Verschelde2024-04-041-1/+1
|\ \ \ | | | | | | | | | | | | Fix missing i18n for some editor strings
| * | | Fix missing i18n for some editor stringsHaoyu Qiu2024-04-031-1/+1
| | |/ | |/|
* / | Improve SceneTreeEditor usabilityRedMser2024-03-311-1/+1
|/ / | | | | | | | | | | - Mark contextually relevant node - Remember/Clear selection as appropriate - Scroll to marked/selected node
* / Improve replication editor's pin buttonHaoyu Qiu2024-03-252-1/+2
|/ | | | | | - When unpressed, only hide the editor if MultiplayerSynchronizer is not selected. - Add tooltip text.
* Enforce template syntax `typename` over `class`Thaddeus Crews2024-03-071-1/+1
|
* Add editor shortcuts to toggle bottom panel visibilityHugo Locurcio2024-03-051-1/+2
| | | | | | | | Default shortcuts use the first or second letter of each word. This also adds a new shortcut to toggle the last opened bottom panel. On editor startup, this defaults to the first panel in the list (which is the Output panel).
* [MP] Fix replication config reload errorFabio Alessandrelli2024-03-032-0/+10
| | | | | Override the `reset_state` method to properly handle reloading the resource from disk.
* Fix removing connected peer during disconnectionMax Hilbrunner2024-02-251-1/+1
|
* Remove word duplicates in comments and strings, and fix casing and punctuationRobert Yevdokimov2024-02-232-2/+2
|
* Merge pull request #87760 from kitbdev/extract-bottom-dockRémi Verschelde2024-02-231-5/+6
|\ | | | | | | Extract BottomPanel from EditorNode
| * Extract BottomPanel from EditorNodekit2024-02-201-5/+6
| |
* | Merge pull request #88641 from Calinou/doc-add-keywordsRémi Verschelde2024-02-222-2/+2
|\ \ | | | | | | Add keywords to improve search in the class reference
| * | Add keywords to improve search in the class referenceHugo Locurcio2024-02-222-2/+2
| |/
* | Merge pull request #86260 from Faless/mp/fix_2way_authRémi Verschelde2024-02-211-26/+20
|\ \ | |/ |/| | | [MP] Fix auth not waiting for confirmation in some cases
| * [MP] Fix auth not waiting for confirmation in some casesFabio Alessandrelli2024-01-141-26/+20
| | | | | | | | | | | | | | | | The auth implementation was treating any received packet as a remote confirmation after the peer was confirmed locally. It now correctly awaits for the remote confirmation packet before admitting new peers.
* | Merge pull request #69032 from ↵Rémi Verschelde2024-02-201-1/+7
|\ \ | | | | | | | | | | | | | | | KoBeWi/check_every_changed_setting_in_every_group_everywhere() Use `check_changed_settings_in_group()` everywhere
| * | Use check_changed_settings_in_group() everywherekobewi2024-02-191-1/+7
| | |
* | | Merge pull request #88443 from Mickeon/documentation-hunting-for-deprecatedRémi Verschelde2024-02-201-4/+4
|\ \ \ | |/ / |/| | | | | Update many Deprecated/Experimental descriptions for consistency
| * | Update many Deprecated/Experimental descriptions for consistencyMicky2024-02-171-4/+4
| | |
* | | Revert "Update Node::get_configuration_warnings signature"Rémi Verschelde2024-02-174-6/+6
|/ / | | | | | | This reverts commit d3852deaa450d77edb30df2bb1c77bd7bc45befc.
* | Merge pull request #88326 from brennennen/cmd_mask_comment_typoRémi Verschelde2024-02-151-1/+1
|\ \ | | | | | | | | | Fixed binary representation typo in comment
| * | Fixed binary representation typo in commentbrennen2024-02-141-1/+1
| | |
* | | Documentation: Add support for deprecated/experimental messagesDanil Alexeev2024-02-151-8/+4
|/ /
* | Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-093-6/+6
| |
* | Update Node::get_configuration_warnings signatureRedMser2024-02-084-6/+6
| |
* | Merge pull request #87186 from Faless/mp/fix_remote_sync_cleanupRémi Verschelde2024-02-032-1/+2
|\ \ | | | | | | | | | [MP] Fix remote net ID cleanup
| * | [MP] Fix remote net ID cleanupFabio Alessandrelli2024-01-142-1/+2
| |/ | | | | | | | | | | | | | | | | Synchronizers for spawned nodes were not correctly keeping track of the net ID assigned by the remote, preventing the replication from performing the proper cleanup. This resulted in errors being thrown when sync messages were received after despawn (which is possible due to their unreliable nature).
* | Merge pull request #87185 from Faless/mp/fix_resetRémi Verschelde2024-02-031-4/+5
|\ \ | | | | | | | | | [MP] Fix spawned nodes not working after reset
| * | [MP] Fix spawned nodes not working after resetFabio Alessandrelli2024-01-141-4/+5
| |/ | | | | | | | | | | Ensures that spawnable nodes (i.e. spawned nodes over which the local instance has authority) always have a network ID, since they may lose it after the multiplayer is reset (e.g. when changing the multiplayer peer).
* | [MP] Handle cleanup of "scene cache" nodesFabio Alessandrelli2024-01-182-82/+109
| | | | | | | | | | Make sure we delete the relevant ObjectID from the cache when the nodes are removed from tree.
* | Reorganize code related to editor themingYuri Sizov2024-01-162-2/+2
|/ | | | | | | | | | | | | This change introduces a new EditorThemeManager class to abstract theme generatio and its subroutines. Logic related to EditorTheme, EditorColorMap, and editor icons has been extracted into their respective files with includes cleaned up. All related files have been moved to a separate folder to better scope them in the project. This includes relevant generated files as well.
* Add const lvalue ref to container parametersMuller-Castro2024-01-052-4/+4
|
* [MP] Fix complete_auth notifying the wrong peerFabio Alessandrelli2023-12-171-0/+5
| | | | | | | The SceneMultiplayer complete_auth method was not configuring the multiplayer peer correctly, causing it to potentially send the notification to the wrong peer, on the wrong channel, and/or with an incorrect transfer mode.
* Merge pull request #83279 from Faless/mp/fix_delta_indexedRémi Verschelde2023-10-131-1/+1
|\ | | | | | | [MP] Fix "on change" indexed properties
| * [MP] Fix "on change" indexed propertiesFabio Alessandrelli2023-10-131-1/+1
| | | | | | | | Watchers were still using Object::get instead of Object::get_indexed.