summaryrefslogtreecommitdiffstats
path: root/modules/navigation/nav_map.h
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-271-18/+10
|\
| * Change navigation map performance monitor to use a structsmix82024-11-241-18/+10
| | | | | | | | Changes navigation map performance monitor to use a struct as it is easier to pass to sub functions.
* | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-0/+8
|\|
| * Reduce allocations for NavMap synchronisationsmix82024-11-051-0/+8
| | | | | | | | Improves navigation map sync performance be avoiding unnecessary memory allocations.
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Move NavigationServer mesh queries to dedicated filesmix82024-09-031-1/+0
| | | | Moves all the navigation mesh query related functions from NavMap and NavRegion to a dedicated file and makes them static.
* Extract navigation-related defaults to separate headerPawel Lampe2024-08-271-6/+7
|
* Merge pull request #93498 from smix8/connection_relocationRémi Verschelde2024-08-191-0/+6
|\ | | | | | | Move NavRegion connections to NavMap
| * Move NavRegion connections to NavMapsmix82024-06-231-0/+6
| | | | | | | | Moves bookkeeping for connections from region to map where connections are actually made.
* | Add navigation obstacles to performance monitor statssmix82024-06-251-0/+2
|/ | | | Adds navigation obstacle count to navigation performance monitor.
* Add function to get navigation map iteration id from NavigationServersmix82024-02-221-5/+3
| | | | Adds function to get navigation map iteration id from NavigationServer.
* Merge pull request #87959 from Scony/fix-navi-sync-errorsRémi Verschelde2024-02-121-0/+13
|\ | | | | | | Add means for fixing navmap synchronization errors
| * Add means for fixing navmap synchronization errorsPawel Lampe2024-02-111-0/+13
| |
* | Make navigation map spatial queries thread-safesmix82024-02-061-0/+2
|/ | | | Makes navigation map spatial queries thread-safe by adding a readers–writer lock.
* Add NavigationServer random point queriessmix82023-12-081-0/+2
| | | | Adds query functions to get random points on navigation mesh to the NavigationServer.
* Style: Harmonize header includes in modulesRémi Verschelde2023-06-151-4/+2
| | | | | | | | | | | | | | | | | | | | 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
* Fix `cell_height` for navigation meshessmix82023-06-131-2/+6
| | | | Fixes `cell_height` for navigation meshes.
* Make navigation mesh edge connections optionalsmix82023-05-111-0/+6
| | | | Makes navigation mesh edge connections optional.
* Rework Navigation Avoidancesmix82023-05-101-7/+39
| | | | Rework Navigation Avoidance.
* Fix NavigationServer internals still using float instead of real_tsmix82023-03-071-6/+6
| | | | Fixes that some NavigationServer internals still used float instead of real_t in some parts.
* Rename NavigationServer internal RvoAgent to NavAgentsmix82023-02-011-10/+10
| | | | Renames the NavigationServer internal RvoAgent to NavAgent.
* Add NavigationServer Performance Monitorsmix82023-01-081-0/+20
| | | | Adds Performance Monitor for NavigationServer3D.
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | 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".
* Add support for emitting a signal when entering a NavLinkJosh Jones2022-12-171-2/+2
|
* Added node for Navigation linksJosh Jones2022-08-261-1/+20
|
* Replace Navigation std::vector use with LocalVectorsmix82022-07-281-7/+7
| | | | Replace Navigation std::vector use with LocalVector.
* Remove ThreadWorkPool, replace by WorkerThreadPoolJuan Linietsky2022-07-251-4/+1
| | | | | The former needs to be allocated once per usage. The later is shared for all threads, which is more efficient. It can also be better debugged.
* Streamline Navigation layer function names.smix82022-06-151-1/+1
| | | | Streamline Navigation layer function names.
* Match NavMap and ProjectSettings with NavigationMesh defaultssmix82022-06-031-2/+2
| | | | Match NavMap and ProjectSettings with NavigationMesh defaults since the NavMap edge merging requires a matching cell_size with the NavigationMesh to create connections without issues.
* rvo2: Sync with upstream commit bfc0486Rémi Verschelde2022-05-181-3/+3
| | | | https://github.com/snape/RVO2-3D/commit/bfc048670a4e85066e86a1f923d8ea92e3add3b2
* Replace most uses of Map by HashMapreduz2022-05-161-1/+1
| | | | | | | | | | | | * 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!
* Use ThreadWorkPool instead of thread_process_array in NavMapAdam Scott2022-04-191-1/+6
|
* NavMap Fix polygons being treated like triangle strips instead of triangle fanskleonc2022-02-131-0/+1
|
* Style: Remove inconsistently used `@author` docstringsRémi Verschelde2022-01-041-4/+1
| | | | | | | | | | Each file in Godot has had multiple contributors who co-authored it over the years, and the information of who was the original person to create that file is not very relevant, especially when used so inconsistently. `git blame` is a much better way to know who initially authored or later modified a given chunk of code, and most IDEs now have good integration to show this information.
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Rename `GdNavigationServer` to `GodotNavigationServer`Rémi Verschelde2021-06-301-0/+141
And rename `gdnavigation` module to simply `navigation`.