-
-
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
Change: Don't decrease vehicle reliability when stopped #8776
Conversation
Game design is opinionated :) I think game mechanics should reward good track design: when vehicles operate smoothly in the network. Either way, the usual disclaimer applies: moddable game mechanics are better, they allow for more opinions :) |
I like your idea about tying reliability drops to how hard the vehicle is working — either climbing hills or from many start-stop cycles. When I worked for the railroad, pushing machinery like this was the cause of most breakdowns. However, that would need a new algorithm which opens up many new questions of game design and balance. :) My goal is to find a simple remedy to the most-unpopular aspects of breakdowns, and leave room for others to iterate later (perhaps based on the Improved Breakdowns patch, which is in JGRPP). I disagree that vehicles waiting in a station are a sign of bad design. Industry production mechanics require frequent service, and always having a vehicle loading with a "full load" order is recommended practice. Vehicles stuck in traffic or at signals are indeed symptoms of inefficient design, but I don't feel it's the job of reliability decay to punish this. We have running costs and cargo decay for that, not to mention the mathematical inefficiencies which requires more vehicles to transport a given amount of cargo. I agree that moddable game mechanics are ideal, but unless I'm mistaken it's not currently possible for NewGRF authors to change reliability decay. |
Yeah, every extra stop is already heavily penalized with cargo payments. And breakdowns don't just penalize, they turn small mistakes into a huge disaster that takes ages to clean up because vehicles are not even moving anywhere as they're constantly breaking. |
I like this PR, but not 100%. ;) I think that the stoppage should still have some impact on the reliability drop. Otherwise it would be too simple and not relevant to reality. I also like the idea that a vehicle traveling at a speed other than the maximum it can reach will lose reliability faster. I would see it like this: The fundamental question here is: How could this change be implemented? As a modification to "reduced" breakdowns, or as a new setting? Maybe you should consider this as part of an "improved" breakdowns? When playing on JGR's servers, many players felt that this was one of the best things about JGRPP that is missing from the regular version of the game. |
Hmm, sounds weird to me. If a vehicle is traveling at a speed, different from it's maximum speed, it is slower without exception. To me slower speed means lower abrasion and lower abrasion means lower maintenance cost. So IMHO the decline rate as an equivalent for variable maintenance costs has to be lower than the 80% for travelling at maximum speed in your example. |
I think the extra penalty for unusual speeds is to simulate wear-and-tear caused by acceleration and braking. |
I think this should rather look at "if the vehicle is unable to reach the maximum speed for its configuration and track it's running on", i.e. a train or road vehicle that is underpowered compared to its weight, and is hence running the motor at maximum load. |
So this would have to take the power/weight ration into consideration. But in reality the effect of underpowerness is different from construction to construction. I've no idea how to bring that into a game in a simple way. :-/ |
This is functionality that can be implemented and controlled by NewGRF, and doing so in the base game would interfere with how that works. And as frosch123 says,
Therefore a big no from me. |
Purely from a player point of view, functionality like this is far more likely to work correctly if it's in the codebase, instead of it being kludged in a NewGRF. |
+1 to everything JGR wrote. I would appreciate an explanation of how to implement variable reliability in NewGRF, as I must be missing something — I see a static property for reliability decay and a variable which holds the current reliability, but no callback to change the decay rate based on speed or other author-defined logic. I would also prefer to see this implemented in OpenTTD itself, but if that's not agreeable would be willing to implement it in my own train set and push for inclusion in other popular sets. |
Such an approach, where any speed other than the maximum speed causes increased wear, is a simplification. Of course, the point is that accelerating or braking always causes more wear than driving at a constant, even high speed. In my opinion, there is no point in complicating it too much, because the end result will not be significantly different anyway.
I fully understand this approach, that's why I asked about Improved breakdowns - this modification could be part of this option. But I also really don't like this solution. In conclusion:
|
Closing this to reduce my open PRs. I may revisit this later with some form of improved breakdowns which consider how hard the vehicle is working, but it's clear that simply changing this behavior is too contentious to get merged as-is. 😃 |
Motivation / Problem
I frequently see comments from players that breakdowns are "broken" and seem random to players. #8317 improves breakdowns by making each service in a depot prevent future breakdowns, but vehicles still degrade while waiting in a station for a full load, waiting for a station track to open up, or while stuck in traffic jams.
I typically service vehicles before they load in a station using a depot overflow, but by the time the vehicle achieves a full load and departs, its reliability has already decreased significantly, despite having only moved a few tiles from the depot to the station. I would expect my vehicle's reliability to only degrade when the vehicle is moving.
While real-world vehicles do degrade in reliability when parked for long periods of time, this is on the order of weeks and months and isn't really applicable to OpenTTD.
We discussed disabling breakdowns by default in #8393 but the consensus was that they should be fixed, not just avoided. This is an attempt to iteratively improve them by fixing what I consider to be an unexpected behavior.
Description
With this proposal, vehicles only decrease in reliability if their speed is greater than 0.
Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.