Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-13 | Codechange: convert printf DEBUG statements to fmt Debug statements | rubidium42 | |
2021-05-29 | Fix: Do not send vehicles towards incomplete PF nodes | Vít Šefl | |
YAPF could end up in a situation where it sets the best intermediate node to a node whose construction is never finalized (i.e. it is never added to the open list). The content of the node would be overwritten in the next round, potentially sending the vehicle to an unwanted location. | |||
2021-05-27 | Cleanup: remove unused copy-constructor without copy-assignment | rubidium42 | |
2021-05-23 | Fix: Encountering two-way red signals could prune unrelated branches. | Vít Šefl | |
The intermediate node branch is now only pruned if the node is on the path leading to the two-way red signal. | |||
2021-04-30 | Remove: performance measurements in YAPF | Patric Stout | |
YAPF was constantly measuring its performance, but only at certain debug-levels this information was shown. Now after years, I sincerely wonder if anyone still knows about this feature and who still use it. Especially with the new framerate window, this detailed performance is not as meaningful anymore as it once was. | |||
2021-04-30 | Cleanup: remove weird left-over comment in yapf.hpp | Patric Stout | |
2021-04-04 | Cleanup: Delete remaining Blob code | Charles Pigott | |
2021-04-04 | Codechange: Replace CBlobT usage with std::vector | Charles Pigott | |
2021-04-04 | Codechange: Replace CStrA with std::string | Charles Pigott | |
2021-02-25 | Fix #8123: trams on half-tiles couldn't find depots (#8738) | Patric Stout | |
Basically, follow_track.hpp contains a fix for half-tiles, but this wasn't duplicated for when trying to find a depot and in a few other places. This makes sure all places act the same. | |||
2021-02-22 | Change: Make pathfinder account for maximum order speed, if set | Charles Pigott | |
2021-02-21 | Fix: [YAPF] Road pathfinder did not account for length of tunnel/bridge in ↵ | Charles Pigott | |
path cost Copy calculations from the rail pathfinder | |||
2021-01-08 | Codechange: Remove min/max functions in favour of STL variants (#8502) | Charles Pigott | |
2020-06-05 | Add: introduce CMake for project management | Patric Stout | |
CMake works on all our supported platforms, like MSVC, Mingw, GCC, Clang, and many more. It allows for a single way of doing things, so no longer we need shell scripts and vbs scripts to work on all our supported platforms. Additionally, CMake allows to generate project files for like MSVC, KDevelop, etc. This heavily reduces the lines of code we need to support multiple platforms from a project perspective. Addtiionally, this heavily improves our detection of libraries, etc. | |||
2020-02-07 | Fix #7592: Do not cache road vehicle path within 8 tiles of destination with ↵ | Jonathan G Rennison | |
multiple entrances Ported from jgrpp commit 79d5be7e265df3be8b73d484f0c7261b3c23229d | |||
2019-11-10 | Cleanup: Removed SVN headers | S. D. Cloudt | |
2019-09-30 | Fix: GCC9's warnings about deprecated implicit assignment operators | Charles Pigott | |
2019-06-30 | Change: Avoid caching end of ship path, to allow penalties to apply. | peter1138 | |
2019-06-30 | Add: Penalty for occupied docking points. | peter1138 | |
2019-06-30 | Feature: Multi-tile docks and docking points. | peter1138 | |
2019-05-01 | Feature: Add NotRoadTypes (NRT) | peter1138 | |
2019-04-29 | Codechange: Remove Track{dir,}{Bits,}Byte types | Charles Pigott | |
2019-04-10 | Codechange: Use null pointer literal instead of the NULL macro | Henry Wilson | |
2019-03-08 | Add: Road vehicle path cache. (#7261) | PeterN | |
2019-03-08 | Change: Automatically use Trackdir node key as needed if ship curve ↵ | Peter Nelson | |
penalties differ. | |||
2019-03-08 | Change: Add configurable curve penalty for ships. | Peter Nelson | |
2019-03-03 | Change: Don't apply forbid 90 deg turn settings to ships. | Peter Nelson | |
2019-01-26 | Codechange: Use track functions. | J0an Josep | |
2019-01-19 | Change: Add path cache for ships. | Peter Nelson | |
2019-01-06 | Codechange: [YAPF] Stop looking for an automatic servicing road depot when ↵ | Juanjo! | |
the cost of a path exceeds max. penalty. | |||
2018-10-31 | Fix: Protect against a few out of bounds or uninitialised usage errors | Charles Pigott | |
2018-10-31 | Doc: Lots and lots of doxymentation fixes | Charles Pigott | |
2018-06-27 | Codechange: Use HasTrack(dir) to improve code readability. | J0anJosep | |
2018-06-27 | Codechange: Increase readability of track functions and pathfinders. | J0anJosep | |
2018-04-30 | Codechange: Use TileAddBy(Diag)Dir when possible. | J0anJosep | |
2018-04-11 | Remove: NO_DEBUG_MESSAGES was only read and setting it broke compilation (#6703) | Patric Stout | |
Given any speed issue cannot be attributed to checking for _debug_NNN_level, removing this is a safe action This fixes #6652. | |||
2017-08-13 | (svn r27893) -Codechange: Use fallthrough attribute. (LordAro) | frosch | |
2017-06-22 | (svn r27885) -Cleanup (r27844): ESR_MAX_COST_EXCEEDED and ESR_PATH_TOO_LONG ↵ | frosch | |
meant the same thing, but only one was used. Keep PATH_TOO_LONG since it has the better documentation. | |||
2017-04-04 | (svn r27846) -Fix [FS#5926]: Infinite loop in pathfinder when checking safe ↵ | peter1138 | |
waiting position from a waypoint. | |||
2017-04-03 | (svn r27845) -Change: (Yapf) Use FindDepotData struct to simplify depot ↵ | peter1138 | |
finding code and remove need to return fake path distance. (juanjo) | |||
2017-04-03 | (svn r27844) -Change: (Yapf) Treat max cost exceeded separately from path ↵ | peter1138 | |
too long condition, as destination should not be considered in the former case. | |||
2017-04-03 | (svn r27843) -Change: (Yapf) Consider depot as destination before reversing ↵ | peter1138 | |
path and applying penalty. | |||
2016-05-29 | (svn r27586) -Fix [FS#6410]: Automatic servicing of road vehicles compared ↵ | frosch | |
path finder costs with tile distances, thus vehicles went to depots which were factor 100 too far away. (juanjo) | |||
2015-08-08 | (svn r27363) -Codechange: Fix codestyle of one-line methods and header ↵ | alberth | |
codestyle of derived structs. | |||
2015-08-08 | (svn r27362) -Codechange: Codestyle fixes for reference var declarations, ↵ | alberth | |
static cast type, operator methods. | |||
2015-07-12 | (svn r27332) -Change: Enable YAPF cache debugging with desync debug level 2. | frosch | |
2014-04-23 | (svn r26482) -Codechange: add an include that allows us to undefine/redefine ↵ | rubidium | |
"unsafe" functions to prevent them from being used, and thus having to care about certain aspects of their return values | |||
2013-11-26 | (svn r26117) -Cleanup: unneeded NULL check | rubidium | |
2013-11-23 | (svn r26058) -Fix: handle the return value of a number of functions better | rubidium | |
2013-07-14 | (svn r25609) -Fix [FS#5216]: under certain circumstances a track type change ↵ | rubidium | |
would make the end-of-line-is-red setting ineffective |