-
-
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: Multi-tile depots #9577
base: master
Are you sure you want to change the base?
Conversation
So just to make sure I understand this: This is not about allowing "long" depots, or requiring that players build larger depots to contain bigger train or more trains, but simply letting multiple adjacent depots act as one single depot with multiple entryways? |
Yes
No, it can be exploited by rearranging train chains. Currently depot size is limited by station_spread setting. So users could "teleport" wagons up to 64 tiles. I will look into it and think about adding a cost for moving vehicles from one tile to the other or moving the whole chain to an appropriate tile for making exploits more difficult. |
Are non-contiguous depots prevented? |
I like this a lot. Is it a (large) baby step toward #8480, or an alternative proposal? |
It should work the same way as building stations do. I (ab)use the same settings used for stations for "station spread" and "allow building distant stations not directly adjacent". Whether it is necessary to create two new settings or rename the existing ones is something I haven't decided yet.
It is the first part of #8480, but without including extended depots. This is no alternative proposal, but a first step. I will try and fix the possible exploit and change the current draft state. Anyway, adding another setting for depot spread and setting it to "2" would fix it. |
I did a quick test, joining 2 depots of the same type but on different network is not a good idea :). Newly built train is stuck on the northern depot which is on the wrong network. But that's a user error I think. |
4b7423e
to
2f60263
Compare
2f60263
to
f6e6b6b
Compare
I have added a setting for controlling depot spread instead of reusing the station spread setting. About the teleportation exploit, it is very difficult to know in which tile a vehicle ends up after a rearrangement or replacement. Yet it is a possible exploit, it is difficult to apply and to get an advantage of. Anyway, setting a low value for max. depot spread should help with this and I do not want to add extra cost for moving vehicles. Also, this last year I have had in mind modular airports while working in the "multi-tile depots" and the "extended depot" concept. This month I have finished reviewing how aircraft and hangars are integrated in this PR, so it doesn't make modular airports more difficult to be introduced (at least with my idea of how modular airports should work). I have finished working on this PR. If it is acceptable to start reviewing it (even with the teleportation exploit not being fixed), I could remove the "Draft" state. Just let me know. |
f6e6b6b
to
6773f8b
Compare
IMO, limiting depot spread is a perfectly valid way of preventing a possible teleportation aspect, since it's similar to how we control station teleportation. |
8d18bb2
to
7666495
Compare
7666495
to
0f2e370
Compare
0f2e370
to
63c5a1d
Compare
f5f8877
to
4e117c3
Compare
bad2a47
to
bab4284
Compare
bab4284
to
4184572
Compare
4184572
to
6be3ce9
Compare
6be3ce9
to
eb80adf
Compare
eb80adf
to
0206911
Compare
It will be broken into more PRs than you are suggesting, about 8 or more smaller PRs (the first being about hangars). And I keep this PR for getting a global idea of where I want to go. We talked about it somewhere last year and I think it is the way to go. But I am not going to create all the PRs right now as it would be very difficult to keep track of them. Once the PR about hangars is reviewed and it is ok (thoroughly reviewed, not necessarily accepted), I will revise some other commits and create another small branch to review. I think it is better to review and put the efforts on the first commits and then move on. Anyway, I will correct the things you pointed at here. But as I said, I think it is better to go step by step, amending the mistakes on the shorter PRs, and then move on to the next commits. |
Thanks. It will be fixed next time I update the PR. |
40bffcc
to
2338384
Compare
2338384
to
2c0f04d
Compare
src/depot.cpp
Outdated
delete this; | ||
} | ||
|
||
InvalidateWindowData(WC_SELECT_DEPOT, this->veh_type); |
Check failure
Code scanning / CodeQL
Potential use after free Critical
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.
Yep! I will amend it.
# Conflicts: # src/saveload/saveload.h
…hey have the same transport type.
2c0f04d
to
d82d36d
Compare
Motivation / Problem
Replacing thousands of old steam trains with monorail replacements is tiresome.
Also, if trains have a "Go to depot X", several trains may be waiting for entering a depot if one train is already entering or leaving the depot.
Description
This PR allows joining several depot tiles for the same vehicle type into one single depot. For joining them, I have tried to use the same criteria as for joining station tiles.
Replacements with different railtypes are enabled with the option "allow replacing rail vehicles with incompatible railtype". The same applies for road vehicles. Then, users can build a monorail depot tile joined to a normal rail type depot and replacements are much easier.

If trains get stuck when trying to enter a depot, add more tiles to the depot for easing it.

#8480 adds extended depots (which are not included here) and also contains the commits of this PR.
Limitations
If a hangar or depot has several tiles, user cannot control in which tile a new vehicle is bought. (On the other hand, the hangar window shows all vehicles in all hangars of the airport: I see this as something good, as in this way it is more difficult to miss stopped aircraft in an airport.)
I don't know whether this feature can be accepted. It adds more settings and getting used to this feature takes time.
The PR touches thousands of lines of code. There are some things I am not happy with yet and I don't have much time to revise it. Code reviews of this PR can help me to improve it, as it will hint me which parts I need to work on.
Possible To-do (discarded by now)
Note: leaving the depot at a speed of 0 is a penalty to consider, but maybe not enough for steep landscapes.
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.