-
-
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: Disallow industry production changes from GS #7912
Conversation
If you want a Game Script to be able to disallow in-game industry production changes, it comes naturally that you would also want a Game Script to be able to set the production level of an industry. The combination of those two would allow the GS to gain full control over industry production levels. |
I do wish for GS to control industry production levels, but it turns out to be a difficult problem, since industries' production levels can be controlled in several ways. |
I have the following ideas that would go with the idea of Game Scripts controlling cargo: On the producer level:
On the station level:
|
There's 3 kinds of industries (or maybe 4: BLACK_HOLE | EXTRACTIVE | ORGANIC | PROCESSING ): a) Primary industries (EXTRACTIVE / ORGANIC) which have a definable production level. They produce things out of thin air. A sensible production level is only available for (a) which means for mines and farms mostly. For (b) and (c) it's probably only an option to trigger the production call-backs outside the monthly loop or not. NewGRFs can basically disregard the production_level in the the production callback which is triggered periodically (all 256 ticks) and/or upon delivery of goods. That said: I totally like the idea and approach. It just needs a word of caution for players that it might not work always as expected when using industry newgrfs (e.g. with FIRS /ECS I expect partially funky results) |
I also think that a Game Script should allow an industry to force announce imminent closure (regardless of if the industry can naturally close). This would allow Game Scripts to notify players/AI that an industry will close before demolishing the industry itself (or having the game demolish the industry at the end of the month). |
IMO it's not a big issue that this thing doesn't quite work with all newgrfs as it only affects GS authors, not players directly. Also, I think found another good use for IndustryControlFlags - add flags to allow exclusive access to the industry for a specific company. One flag for supply and one for production, all GS-controlled. Would solve a lot of industry sharing issues in mp. I'll make a PR one this gets merged. |
Should the industry GUI show any indication of whether the industry is under GS control or working normally? I don't think it's necessary. |
@nielsmh, well, it kinda should IMO but OpenTTD generally doesn't show such things. For example, for towns a lot of GS stuff is hidden so if something goes wrong you need CityMania client that actually shows it albeit in a very ugly way. |
3e23120
to
9b596d9
Compare
f15c37a
to
9c08d3f
Compare
Please also update game_changelog.hpp |
I'm testing this PR, and will report issues as I find them. |
PR 7912 GS test.zip |
6977ea0
to
846f2e0
Compare
846f2e0
to
eace2c9
Compare
I changed your patch slightly, so it integrated better with #8115 (as in, less diff). Names of functions, commands, etc. |
This is (so far) completely untested!
Flags to disallow production changes in industries, so GS can "freeze" industries.
Two additional functions for GS to query when an industry last had activity. (Not available to AI since this information is not available to players either.)
This may have strange interactions with NewGRF industries and probably needs some thorough analysis/testing.