-
-
Notifications
You must be signed in to change notification settings - Fork 968
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: NewGRF Bridges without overriding #9161
base: master
Are you sure you want to change the base?
Conversation
519b05a
to
96fb3c8
Compare
At a first glance, code looks very neat and clean. One single exception: our coding style is I'll let somebody else decide whether this makes sense from a NewGRF perspective ❤️ |
Does this preserve backwards compatibility with existing NewGRF bridge sets and savegames created using them? |
Yes, older bridge sets are not affected by this patch, and they work just like they used to. |
fixed 👍 |
src/newgrf_bridge.h
Outdated
StringID material; ///< the string that contains the bridge description | ||
StringID transport_name[2]; ///< description of the bridge, when built for road or rail | ||
PalSpriteID** sprite_table; ///< table of sprites for drawing the bridge | ||
byte flags; ///< bit 0 set: disable drawing of far pillars. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should there be an enum for the flags?
Also, maybe should just have put it here, but I opened a discussion #9162, basically this PR as-is is mostly the minimum to support current features, but I think there are several more features that can be added without too much effort. |
839e872
to
20bee78
Compare
Please try running regression test locally before force pushing, it seems to trigger an infinite loop. Edit: And now master should "detect" it sooner, please rebase :) |
5a13aa2
to
df81019
Compare
It is fixed now, it was due to overflow in 'script_bridgelist.cpp'. |
ac2eb81
to
02676ca
Compare
e8cc5b3
to
64d58e2
Compare
Storing the coordinates of the bridge in the pool object could also lead to another optimisation opportunity, and in the future (with #9043) open up for bridges over bridges on the same row. Use a multimap to keep an index of all bridges on a row/column of the map, to avoid having to search the landscape array. The multimap could also be a basic map of interval trees, each interval being a bridge. An interval tree would also allow overlapping intervals, and that way make it efficient to search for overlapping bridges on a tile. Using a data structure like that may also make it unnecessary to store bits in the map array about bridges crossing a tile, freeing up some space. The structure can be generated on load and should not need to be stored. |
At the moment there are only two bits allocated per tile for whether there is a bridge above the tile. |
While everyone is talking about the code, I'll comment on the specs for a bit. Please correct me, if I misread the diff :)
I like the approach of starting with a minimal implementation, and later adding more parts.
So, instead I would like to propose a slightly different implementation:
Pillar rambling:
|
771b8a6
to
1e59558
Compare
I implemented it by using multimap. |
7c25f38
to
208271c
Compare
@frosch123 I implemented your specs. |
Added Variable 60, querying bridge type of nearby tiles. |
a88243a
to
9813335
Compare
020c0b9
to
b6964d0
Compare
newbridge.zip |
1ebeeb0
to
53c11c7
Compare
c5b5d6d
to
42eefa1
Compare
Rebased to current master, and increased number of bridges per newgrf to 64000 |
psid = base_offset + GetBridgeSpriteTable(b->type, piece); | ||
} | ||
else { | ||
const PalSpriteID *psid; |
Check notice
Code scanning / CodeQL
Declaration hides variable
static const BridgeID NEW_BRIDGE_OFFSET = 13; ///< Offset for new bridges. | ||
static const BridgeID NUM_BRIDGES = 64000; ///< Number of supported bridges | ||
static const BridgeID NUM_BRIDGES_PER_GRF = NUM_BRIDGES; ///< Number of supported bridges per NewGRF | ||
static const BridgeID INVALID_BRIDGE_TYPE = 0xFFFF; ///< An invalid bridge |
Check notice
Code scanning / CodeQL
Unused static variable
|
||
static const BridgeID NEW_BRIDGE_OFFSET = 13; ///< Offset for new bridges. | ||
static const BridgeID NUM_BRIDGES = 64000; ///< Number of supported bridges | ||
static const BridgeID NUM_BRIDGES_PER_GRF = NUM_BRIDGES; ///< Number of supported bridges per NewGRF |
Check notice
Code scanning / CodeQL
Unused static variable
typedef uint BridgeType; ///< Bridge spec number. | ||
|
||
|
||
static const BridgeID NEW_BRIDGE_OFFSET = 13; ///< Offset for new bridges. |
Check notice
Code scanning / CodeQL
Unused static variable
Looks really interesting. I thought that some (unsolicited) feedback from a GRF author would be useful... Core functionalityIt wasn't clear if this uses an ID pool or fixed IDs? ID pool would obviously be nicer. Bridge pillarsI think default behaviour is fine, ie. auto-generation of sprites for different ground slopes. New variablesHeight above ground tile.Allows nice graphical variation, eg. thicker bridge deck if far enough above the ground. Ground tile slope bitmaskParticularly for custom bridge pillars based on ground slope where they reach the ground. Tile type and tile water type.Would be very cool to customise bridge appearance bases on what is under it. Could add height warning if a road is under it, could make an embankment with cutout arches for road/rail, etc. Nearby tile type and water typeTile and water type of nearby tile could allow multi-tile spans based on what is actually under the bridge. ie. by querying the tile up and down the bridge by one position. Bridge orientation (ne-sw vs nw-se)Necessary for utility of nearby tile queries, ie. a GRF needs to know whether to look to the north west vs north east when looking for a neighbouring bridge to the north. Length and Position along bridge of a nearby tileBridge ID of a nearby tile is useful for eg. joined bridge decks. But to have aligned pillars in neighbouring bridges , eg. for a suspension bridge, you also need length and position information. Nearby tile is same position along a bridge of the same lengthVery useful shortcut for handling parallel aligned bridges of identical length. |
Another core functionality comment for support of road/rail/monorail/maglev, which wasn't clear how it was handled by the current implementation. There are two obvious ways to handle this. 1) Require bridge I'd prefer the latter. It brings base road/rail/monorail/maglev handling in line with tram and new road/rail type handling. A flag to prevent drawing of the default bridge deck overlay might be nice, to give GRF authors full control. edit As pointed out by Brickblock1, the latter is necessary for support of multiple base graphics sets. |
Came across this pull request while trying to fix an older bridge set, and I'd like to offer a helping hand (if needed) to finish the implementation, because this is going to do a huge difference with all the road and rail types in CZTR. (This is a question primarily to @kiwitreekor.) To add my 5 cents on the design, I'm very much in favor of bridge deck overlays, and basically I completely agree with @zephyris on the other suggestions as well. |
For what it's worth I intend to look through this again at some point. It'll probably involve splitting it up in to smaller more manageable pieces though. |
Motivation / Problem
Currently NewGRF Feature 0x06 (Bridge) is very limited. A bridge can only be added by replacing the existing bridge, and it is impossible to build more than 13 types of bridges. Also, it is impossible to change the graphic depending on the surrounding environment or random bits.
Description
This patch introduces action 1-2-3 chain for bridges, and provides possibility to add bridges instead of replacing original bridges.
Map array changes
lower 4 bits of m3 is used for random bits.random bits are now stored in bridge pool.NewGRF specification changes
Limitations
Callbacks are not yet implemented.
Total bridges are limited to 16711680.
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.