-
-
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
Change: split check and update callbacks for settings #9302
Change: split check and update callbacks for settings #9302
Conversation
3c01b2b
to
526decc
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.
I fully understand some comments might be out-of-scope of this PR, but they also might be easy to fix while at it. I leave that up to you :)
526decc
to
69889ec
Compare
… making strings valid and writing strings
… making ints valid and writing ints
69889ec
to
6e483bf
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.
"It seems fine" :D
Motivation / Problem
In the settings there is currently one callback that does both check whether a change is allowed, and it updates when a change is performed. This means that one first needs to set the new value, then call that callback and when that fails the value needs to be reset again.
Similarly there is no useful callback for strings, as the callback will be called with
0
as parameter and that cannot be used.The goal was to be able to validate the server and client name when they are entered from the console, and not be in a situation where the old name is lost once the validation of the name is happening.
Description
Split the validation/check/pre change callback from the update/post change callback.
The pre-change callback will be of type
bool Func(std::string &new_value)
orbool Func(int32 &new_value)
which allows the pre change to update the value if needed. For example removing/clearing a bit that should never be set, or more useful for strings trimming white space or replacing * with an empty string.The post-change callback will be of type
void Func(const std::string &new_value)
orvoid Func(int32 new_value)
.The effect of splitting these changes is that it becomes way clearer on which settings there are actual checks, and for which there is merely a post-change callback.
As added bonus with this precheck it becomes impossible to clear the server and client name via the console or the UI. The only viable path is clearing it in the configuration, but that should only be feasible for the dedicated server and there are guards in place to replace the empty names with something.
Limitations
None that I know of.
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.