-
-
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
Industry directory cargo filtering #7843
Conversation
The following is a practical situation that many players will come across with this patch: If an industry temporarily stops accepting or producing a cargo, and the industry window is set to only show industries that accept or produce that cargo, the industry will _____? For me, I like choice (c) best as it shows that the industry isn't producing/accepting that cargo, but has a capability of producing/accepting that cargo again. (d) could be a good option, but may break sorting. |
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.
Nothing major, I like it
As James suggested, there might be a missing InvalidateWindowData call in the various places where Industry production/creation/deletion happens. Maybe not, but worth a look
In the current form (b) happens, because industries' accepted cargo property does not change when a cargo is becoming temporary not accepted. There is a separate method to find this out from a callback result. Currently the window is refreshed only every hundredth tick, so if (c) or (d) would be implemented it could cause some delays. |
1197087
to
79c1d62
Compare
79c1d62
to
ed01ac4
Compare
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.
Fine by me
ed01ac4
to
5b024c9
Compare
I added one more commit. I tried to find out where should redraw the window if the cargo acceptance changes for an industry, but I did not figure out. So the window is still only refreshed at every 100th tick. |
@stormcone If possible, could you please change the the industry directory refresh rate to every in-game day (every 74th tick)? That would align more with OpenTTD's calendar. |
I would not like to change it. It is inherited through various windows. There is a timer which refreshes the windows at every 100th tick. So I think it's better if it stays as it is. To change this behavior for every window should be done in a different PR . |
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.
Can I be really picky and ask that the "patch from foobar patchpack" be removed from the commit message? I think that belongs here in the PR, not the commit message
DrawString(r.left + WD_FRAMERECT_LEFT, r.right - WD_FRAMERECT_RIGHT, y, this->GetIndustryString(this->industries[i])); | ||
tc = TC_FROMSTRING; | ||
if (acf_cid != CF_ANY && acf_cid != CF_NONE) { | ||
Industry *ind = const_cast<Industry *>(this->industries[i]); |
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.
instead of this cast, could IndustryTemporarilyRefusesCargo
not have its signature changed? Would seem to me to be more "correct"
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 think to change the signature of IndustryTemporarilyRefusesCargo
then the GetIndustryCallback
should be changed, and maybe other functions too. So I would not like to change it in this PR.
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'd be happy with it in this PR as a separate commit, but am not fussed
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 tried to change it, but did not succesed. I always get error when trying to modify the IndustriesScopeResolver
.
…rectory window's cargo lists
…ut if it temporarily does not accept the cargo selected by the acceptance cargo filter.
5b024c9
to
c38e91c
Compare
Hmm, guess I forgot. My bad. Yeah, you will have to wait until next nightly/next release for this, assuming it gets merged soon |
This first commit comes from @KeldorKatarn's patch pack:
KeldorKatarn/OpenTTD_PatchPack@b213294
I've made some minor changes to fit the current code base.
The second one is from me.
Here is a screenshot about how it looks like in-game:
