-
-
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
WIP Feature: Setting to loop the same year forever #8749
Conversation
For example, AI/GS that print the current date to the game log would also loop. In-game day calculations used by some AI/GS to tell how long an action took (such as building a new route or a player finishing a goal) can produce values much lower than normal (or even negative) if the |
As an additional cheat option, it would be quite interesting. :) I don't think it's worth it to refine this PR so much. In my opinion, it would be enough to use the current date-changing mechanism. The only inconvenience with using Ctrl + Alt + C is that the company will not be included in the best results list. Here, however, the company will never reach the indicated year and if it does, it will be a cheat. ;) |
src/company_base.h
Outdated
@@ -76,7 +76,8 @@ struct CompanyProperties { | |||
|
|||
Owner share_owners[4]; ///< Owners of the 4 shares of the company. #INVALID_OWNER if nobody has bought them yet. | |||
|
|||
Year inaugurated_year; ///< Year of starting the company. | |||
Year inaugurated_year; ///< Year of starting the company, n . | |||
GameYear inaugurated_game_year; ///< Game year when the company was started |
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.
what's the difference between inaugurated_year and inaugurated_game_year?
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.
Year is the actual calendar year; GameYear is the number of years since the current game began (counting up from 0).
This is essentially a daylength patch, and I personally don't like the approach of looping years , so I'd be against this approach on its basic principle. In particular because it will make it difficult to implement a different approach to daylength/changing the rate of technological progression later on, since there would suddenly be two alternative ways of achieving the same thing. That would be both confusing for players, and a burden on code maintenance. |
It achieves some of the same goals as daylength, yes, although I don't think the daylength I've seen implemented in JGRPP can keep the same year forever. I suppose with a high enough day length, this is still effectively possible. My goal was to follow the Transport Fever 2 method of decoupling technological progress from the game world without changing how fast things happen in the game world (including economy things like cargo production, running cost charges, etc). However, I recognize that changing the actual day length (and not just how fast the years change) is a primary reason some players use the feature in JGRPP. I'll defer to that approach. |
Motivation / Problem
The goal of this PR is to add an option to freeze technological progress in a chosen year, by failing to advance the year after December 31st. While this can be faked using the cheat menu or “Vehicles never expire,” both are tedious and the latter doesn’t affect the introduction of new houses, towns building newer roadtypes, and other NewGRFs which progress through time.
The ability to remain in a certain year (really a period of time, but commonly a year) is often requested by players who want to explore a certain period in history without the frustration or immersion-breaking of the aforementioned hacks. Transport Fever 2 includes a setting to repeat a certain year forever, to support this style of play. I see several new opportunities in offering this game mode:
Description
#7938 proposed a “groundhog year” but did not consider the many potential side effects of looping a gameplay year. This PR is my attempt to address these and either make the necessary changes or confirm that no change is required. Thanks to those who participated in #8384 (especially @andythenorth) to suggest potential issues.
This also adds a "game year" which functions like the repeating years in Transport Fever 2, displaying a counter of how many years have passed since the game started. This means graphs, the company finance window, etc., still provide useful information.
There is plenty yet to be done, but I figure it's good to start the conversation before I get too far down rabbitholes like changing how time is measured. 🙂 This change to
_game_year
is the area where I'm least confident in my work. Please see the "Help needed" section in Limitations.For the sake of reviews, I’ve tried to organize my changes into logical commits. We can squash later before merging.
Modified to work with looped years:
year_is_looping
to falseModified to use _game_year:
_game_year
is a counter which measures how many years have passed in the current game.Tested, no change needed:
Limitations
Help needed:
inaugurated_game_year
need to be sent to network clients, along with the oldinaugurated_year
?_game_year
in network games?Testing needed:
resetengines
orreload_newgrfs
. This needs more testing to confirm.To Do:
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.