Simutrans seem to support height title reservation - it's impossible to build crossing bridges.
However, behavior of this feature is inconsistent / bugged.
a) City / factory / curiosity builder completely ignores height factor. It's possible to build bridge over every city and factory, no matter how high it is. Also, city buildings will pop under bridges overlapping them.
b) While power line builder takes height title into account - it's impossible to build lines under bridges, it doesn't reserve it after construction. It's still possible to build bridges over already created lines.
but you could bridge ending at elevated ways.
Simutrans does not know the height of buildings. The logic for this is completely missing - also with respect to the data (pak) files.
Yes this is inconsistent.
perhaps something like
TitlesUp[x][y] = n, TitlesDown[x][y] = k
could be added to pak and game logic. It also doesn't make sense to build tunnels under oilfield or oil pump.
This is under consideration; but so far underground tiles without ways, i.e. fundations only) are not included. With those, oilfield and coal mine reservations underground would be easy. (Only factorybuilder needs to check for track too :( )
I suppose every field could just hold array of for example 255 booleans representing if height title of selected height (as far as I know, there is a limit how deep tunels might go, or how high mountain might possibly be) is occupied. Then, each building could just intersect it with it's own height map and check if it's empty. This shouldn't be hard to code.