Re: New ways and bridges: including weight limits for Experimental (no new graphics)
Reply #16 –
In fact, such holes make a difference in the painting algorithm of simutrans: if no holes are present then all of the surface (the green) and the ways are drawn from back to front. Then all objects are drawn again from back to front.
If there is a hole, this algorithm would fail: any object in the hole would be visible through the ground in front of them, since it would be drawn later. To fix this, any grounds (and ways on it) that would suffer this failure, are drawn as if they would be objects: that is, the green ground in front of the hole is drawn after anything in the hole is drawn.
In your picture, the drawing routine goes as follows:
1) draw any ground (with ways and walls) that does not cover any holes behind it. in the picture all grounds are drawn with the exception of the grounds left/right below the holes (e/s neighbors)
2) draw all objects and ground left out in step 1
The glitch comes now because:
a) in step 1 tiles below the green glitches are drawn but the images of the ways exceed the tile borders
b) in step 2 tiles above the glitches are drawn, thus every pixel drawn in step 1 that is out of its tile is overdrawn here.
The solution would be that all way graphics do not exceed the underling tile. (Or the painting algorithm of simutrans has to be completely rewritten, which I attempted twice and failed 1.5 times)