-
-
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: Allow GameScripts to add additional text to Industry view window #8576
Conversation
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.
No real concerns
1b700e8
to
6c42ea2
Compare
Note for |
SetControlFlags = 0, ///< Set IndustryControlFlags | ||
SetExclusiveSupplier = 1, ///< Set exclusive supplier | ||
SetExclusiveConsumer = 2, ///< Set exclusive consumer | ||
SetText = 3, ///< Set additional text |
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.
Coding style for enum members:
LordAro: obviously it doesn't need the prefix, but yeah, should probably still be all caps
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.
Other 2 enum classes (ElementFloat and MidiSysexMessage) use this syntax. And IMO it's much nicer, as they are not in global namespace THERE IS NO NEED TO SHOUT :p
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.
Well, letting @LordAro have the last word here, but otherwise 👍
Motivation / Problem
With #8115 and #7912 been merged it becomes quite important for GameScripts to have the ability to communicate some extra info about specific industries to the player. This PR adds an additional text field to the industry that is shown at the bottom of the industry view window, much like it's already done for towns.
GS for testing:
industry-text-test.zip
Checklist for review