-
-
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: Configurable subsidy duration #9081
Merged
Merged
+70
−28
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cca3f45
to
898752b
Compare
In theory, combining this with GS should allow a Game Script to create any number of subsidies, each with arbitrary multipliers and durations. For example, a GS could do the following to create a 4x subsidy for 5 years and a 1.5x subsidy for 20 years while keeping subsidies disabled otherwise:
The maximum subsidy duration should remain at 255 unless it needs to be lowered for technical reasons. |
d019090
to
66a23ab
Compare
LordAro
reviewed
May 1, 2021
32e0634
to
9cc86d0
Compare
9cc86d0
to
2eaa28d
Compare
TrueBrain
reviewed
Jun 10, 2021
TrueBrain
reviewed
Jun 10, 2021
2eaa28d
to
8ce33f1
Compare
8ce33f1
to
c28d46b
Compare
TrueBrain
approved these changes
Jun 10, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Motivation / Problem
Subsidies are hard-coded to last only one year, with a maximum distance of 70 tiles (Manhattan distance). While this incentivizes local, short-distance routes which ordinarily don't pay much, even with the subsidy multiplier the short duration of the subsidy often isn't worth the player's time and effort.
Description
This PR adds a
Settings > Subsidy duration
to allow players to select the subsidy length, in years.Slightly longer subsidies would be more powerful and beneficial to players. Additionally, allowing much longer subsidies would allow new gameplay modes, such as making unsubsidized NewGRF cargos unprofitable and forcing players to compete for long-term subsidies created by the game or a GS.
The setting defaults to 1, the current hard-coded duration. The minimum value is 0, which disables subsidies, and the maximum is 5000; a nice round number which doesn't overflow the uint16 storing the subsidy duration in months. The longest games I've seen in screenshots are between 500 and 1000 years, so this should be plenty of space for an effectively indefinite subsidy. (Note: the maximum was originally 256 when I created the PR, but I realized this wasn't long enough.)
I know that adding settings needs strong justification, so I considered several alternatives, none of which felt right:
So I added a setting.
Note that while subsidies are randomly calculated each month without regard to how many subsidies currently exist, new subsidy offers will not accumulate forever since towns and industries with more than 42% of cargo transported are ineligible for new subsidies.
I also plan to look at increasing the maximum distance of the subsidy based on town and industry density to fix subsidies not being possible on low-density maps, but that is a separate project entirely.
Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.