Fix some tram catenary sorting issues #8842
Closed
+2
−2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #8647
Breaks OpenGFX.
Motivation / Problem
Attempt #2, after @glx22 explained a few things to me about catenaries :D Tnx for that!
Basically, there appears to be some weirdness around tram catenaries. So far I collected the following list:
In the code,
front
is the back sprite, andback
is the front sprite.OpenGFX has many front sprites that do not redraw the front pylon, or the east/west. This currently "works", because front/back sprites have the same order. After this fix, you get glitches like this:

Front/back sprites are ordered exactly the same, so a vehicle is either before both or behind both. This currently works out (most of the time) as most vehicles are lower than the start of the pylons in most sets.
The pylons in most sets are visibly higher than the bounding box. This causes glitches, like:


zbase is in a league of its own. No clue what is going on there, but it aint right.
Description
After a bit of discussion on IRC, and as we all know nobody really understand NewGRF (besides @frosch123 ; so he might be laughing reading this, as I got this all wrong), I come to this solution with the following arguments:
Funny enough, elrail has a completely different implementation for catenaries, where pylons and wires are separated. That for sure feels a bit more natural. Now NewGRF authors need to understand tram catenaries a lot more where things are drawn; OpenGFX shows this is not trivial.
Either way, with this PR, OpenGFX really needs fixing, as it visually glitches a lot more.
The result, a bit better looking catenaries:


zBase still looks weird though:

Seems front pylons are wrong or something. Dunno exactly, but there are double pylons everywhere (already the case before this PR too).
Limitations
(TILE_HEIGHT + BB_HEIGHT_UNDER_BRIDGE) / 2
, as otherwise they would look crap under bridges. This is also the minimum height needed to be sorted wrong with the new approach.Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.