Fix: change the bounding boxes of tram catenaries to fit with current sets #8838
+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. Well ... it "mitigates" it.
Motivation / Problem
WARNING: I know nothing about all this; I just applied my knowledge of isometric game engine sorters to OpenTTD .. so be careful :D
Catenaries for tram doesn't appear to have any specs for the bounding box used. This makes it a bit difficult to get them right. I compared the current two I could found: a 8bpp and a 32bpp variant, and checked if they match. I tried to make it look better for those two. This of course is a bullshit approach for the problem, so I am perfectly fine for being called names while this PR is closed :)
Description
Wrong height
Observations: catenaries are set to be

TILE_HEIGHT + BB_HEIGHT_UNDER_BRIDGE
, but clearly they are larger:This causes catenaries to not been drawn when they should like in the image above.
Similar, this is true for the OpenGFX variant:

Solution:
TILE_HEIGHT * 2 + BB_HEIGHT_UNDER_BRIDGE
. This matches a lot better, but not perfectly between the two sets. There is no correct answer; this one is just better (but still wrong).Wrong dimension
Because the "front" sprite is considered 16x16, it captures the whole tile. This means sorting goes a bit weird, as these "front" sprites are supposed to be behind the vehicles (the name "front" is really misleading to me, but what-ever). There is here too not a correct answer, just one that might be slightly better: make them 1 by 1 (instead of 16 by 16). This is true for MOST sprites. Some sprites, however, draw both the front and back catenary in the same sprite. This is an impossible situation to solve in terms of sorting.
They are off by 1 for the OpenGFX set.
They are pretty correct with CZRT.
This is zBase; those are even higher, but otherwise also "good enough".
Again, I want to stress, none of this is exact science, and all of this is wrong either way. This PR only appears to make it slightly less wrong in the current most common cases.
The result:
Correctly sorted
Now breaks; both poles are in the same sprite, so there is no correct way here.
Correctly sorted
Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.