summaryrefslogtreecommitdiffstats
path: root/core/math/a_star.cpp
Commit message (Expand)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
* add partial path return option for astarashley2024-04-031-12/+53
* Initialize pointers in a_star.cpprune-scape2023-12-281-28/+28
* Enchance the performance of AStar by using a LocalVector(2)Yuri Rubinsky2023-01-271-7/+7
* Convert en_GB spelling to en_US with codespellRémi Verschelde2023-01-231-13/+13
* Enchance the performance of `AStar` by using a `LocalVector`Yuri Rubinsky2023-01-221-7/+7
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
* Replace Array return types with TypedArraykobewi2022-08-221-3/+3
* Make AStar to use 64-bit logicYuri Rubinsky2022-06-161-81/+81
* Merge pull request #58669 from theraot/ASar2DbidirectionalRémi Verschelde2022-06-161-6/+6
|\
| * Added missing p_bidirectional to AStar2D methodsTheraot2022-03-011-6/+6
* | Add a new HashSet templatereduz2022-05-201-12/+12
* | Use range iterators for RBSet in most casesAaron Record2022-05-191-3/+3
* | Replace most uses of Map by HashMapreduz2022-05-161-4/+4
* | Allow AStar2D/AStar3D zero point weightsmix82022-05-061-2/+2
* | Rename `AStar` to `AStar3D`Yuri Roubinsky2022-03-201-72/+72
|/
* Remove a cross include from a_star.cppTechnoPorg2022-02-061-1/+0
* Use List Initializations for Vectors.Anilforextra2022-01-121-2/+1
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
* Rename `AStar.get_points()` to `AStar.get_point_ids()` for clarityHugo Locurcio2021-11-301-5/+5
* Rename `remove()` to `remove_at()` when removing by indexLightning_A2021-11-231-2/+2
* clang-format: Disable alignment of operands, too unreliableRémi Verschelde2021-10-281-1/+1
* AStar Add error messageskleonc2021-09-031-34/+34
* Replace BIND_VMETHOD by new GDVIRTUAL syntaxreduz2021-08-221-12/+16
* Astar::get_available_point_id Start from 0kleonc2021-05-221-8/+2
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
* Rename empty() to is_empty()Marcel Admiraal2020-12-281-3/+3
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-1/+1
* AStar: Make get_closest_point() deterministic for equidistant pointsRémi Verschelde2020-06-091-5/+9
* Split `Geometry` singleton into `Geometry2D` and `Geometry3D`Andrii Doroshenko (Xrayez)2020-05-271-2/+2
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-15/+29
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-39/+0
* Port member initialization from constructor to declaration (C++11)Rémi Verschelde2020-05-141-11/+0
* Style: clang-format: Disable AllowShortIfStatementsOnASingleLineRémi Verschelde2020-05-101-8/+16
* Replace NULL with nullptrlupoDharkael2020-04-021-4/+4
* Implements estimate/compute_cost for AStar2DYuri Roubinsky2020-03-141-11/+184
* Variant: Added 64-bit packed arrays, renamed Variant::REAL to FLOAT.Juan Linietsky2020-02-251-2/+2
* PoolVector is gone, replaced by VectorJuan Linietsky2020-02-181-24/+24
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
* Emit an error rather than crash in A*Shiqing2019-11-081-6/+6
* Merge pull request #30556 from kawa-yoiko/astar-directedRémi Verschelde2019-11-071-23/+53
|\
| * Reduce memory usage for edges in A* and add testsShiqing2019-09-281-30/+47
| * Improve support for directed graphs in AStarShiqing2019-09-111-20/+33
* | Add option to consider disable pointsHanif Bin Ariffin2019-09-271-6/+6
|/
* allow to reserve space in OAHashMap explicitly and also in AStar.Robin Hübner2019-08-271-0/+32
* astar performance improvements, use oahashmapRobin Hübner2019-08-211-97/+142
* AStar get_closest_point/get_closest_position_in_segment enabled considerationCraigory V Coppola2019-06-291-0/+6
* Merge pull request #27237 from Chaosus/astar_2dRémi Verschelde2019-06-191-2/+133
|\
| * Added 2D functions to AStarChaosus2019-05-301-2/+133