-
-
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: Orientation of rail and road depots can be changed #9642
Conversation
I like this in principle, definitely would have saved me some annoyance. For consistency the same could be applied to ship depots, if one tile of the new depot is over the old one. Have you considered keeping the same depot when overbuilding? As I understand it, this change will cause any order lists including the original depot to gain '(Invalid Order)', and not allow overbuilding if any vehicle is in the depot. Code looks good to me for what it does. Pity about the duplication, but that's not this patch's fault. Regression test failure looks like it just needs the expectations updating. |
I tried to err on the side of caution by simply automating what the user would do: destroy the depot and create it again. That way I'm pretty certain that I don't mess anything up regarding signals/reservation/vehicles-in-depot etc. You definitely have a point, but I see the situation you describe is a bit of an edge case. I think most people will just use this feature to rectify an initial placement mistake. Then again, everybody has it's own style and habits when it comes to openttd... I'll try to fix the regression test later this weekend :) |
a8a71c1
to
7141e53
Compare
I see nothing wrong with the sliding ship depot. |
7141e53
to
708de0c
Compare
@FLHerne I figured out how to turn the depot without destroying it, at least for road and train depots. No more void orders. I tried it for ship depots as well, but if the depot position changes while a ship is heading for the depot, it messes with the ship controller and the asserts start flying. Obviously it was not created with moving depots in mind :P. I couldn't find a good solution, so I stuck to the simple but crude "destroy and rebuild" method for ship depots. |
If it changes the depot ID, I see a problem with it - it doesn't concern me, but I know it will be a problem for others.
Depots may be far enough away from the ship's path that they will never be serviced. If the above problem cannot be avoided, it is better not to add this feature to the shipyards - PR will still be very good. :) But if it succeeds, it will be great :D |
708de0c
to
5332947
Compare
I decided to revert my changes for the ship depot, I couldn't get it work reliably. Since ship depots only have 2 orientations to begin with, the chances of the user messing are also smaller. |
I don't think I've ever placed a ship depot in the wrong orientation, because it's so obvious when aligned incorrectly. |
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.
Would be nice if the regression test could be extended to actually test that you can overbuild depots - perhaps shouldn't be too much effort to figure out the existing code?
5332947
to
33be248
Compare
I tried to add some test cases for rotating depots but it breaks the regression tests. I simply can't find the reason why it's failing. Any help with this would be greatly appreciated :) |
I think it's fine, it's just that the extra BuildRoadDepot call has increased the ticks slightly, so certain values like vehicle running cost(?) and positions(?) are subtly different. Just update the reference file as necessary :) |
Are you sure? I can understand that a list order becomes slightly different, but this change in particular looks a little scary to me:
This originates from these lines in regression/main.nut:
I interpreted this as "some money is lost somewhere", it might be rounding error, it might be something more serious. |
2a5cbfe
to
3347ea9
Compare
Scope creep FTW! I've added a feature to automatically determine the orientation of a depot when it's built. More details in the description above. I reverted my changes for the regression tests so we can at least have green builds and playtesting for now. |
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.
I'm strongly +1 to overbuilding depots to rotate them, and less strongly +1 about the auto rotation. It is convenient, but the only similar thing done automatically is the automatic track and road connections from depots to existing networks, which I'm already not a fan of. To be clear, I'm not against auto orientation and would use it, it just feels somehow a bit surprising to me. 😄
Code looks good and my tests all work. Should the player have to pay for rotating an existing depot? We seem to have set some sort of precedent in #9852 to not pay for these sorts of things. I don't have a strong opinion either way, but I do like being consistent. 🙂 |
I had a look at #9852 and I actually think it's pretty consistent the way it is now. For railway stations you only pay when the orientation is changed. The same is happens for rail/road depots: you get an STR_ERROR_ALREADY_BUILT error the depot is already in the current orientation, and you don't pay anything. |
Heh, I misread the other PR. Thanks. |
Motivation / Problem
It's all too easy to place a rail depot in the wrong orientation. Railway station tiles can be "rotated" by simply building them again, I figured such a feature would be great for depots as well.
... I took this concept even further and created an option to automatically determine the depot orientation. More information below.
Description
If you create a depot, and you accidentally got the orientation wrong, then just select the correct orientation and click again. The existing depot is rotated, it is not destroyed/recreated, which means orders containing the depot stay intact.
Update 1 Tried it for ship depots as well, but this was problematic. I ended up removing it again.
Update 2
I got the idea to have the option to automatically orient a rail or road depot when you place it, based on whether it could be connected to any nearby rail. But I dediced to remove this again to keep the PR clean, and because it wasn't really finished.
Limitations
This only works on depots of the same (rail) type. This is by design.
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.